/* =========================================
   HERO PAGES INTERNES
   ========================================= */

.mesa-page-hero {
    position: relative;
    overflow: hidden;

    padding: 76px 0 68px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(37,99,235,.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #041322,
            #0a2945
        );
}

.mesa-page-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .10;

    background-image:
        linear-gradient(
            rgba(255,255,255,.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.07) 1px,
            transparent 1px
        );

    background-size: 48px 48px;
}

.mesa-page-hero .mesa-container {
    position: relative;
    z-index: 2;
}

.mesa-page-hero .mesa-eyebrow {
    color: #79a6ff;
}

.mesa-page-hero h1 {
    max-width: 820px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(38px, 6vw, 58px);
    font-weight: 760;
    line-height: 1.02;
    letter-spacing: -.045em;
}


/* =========================================
   CONTENU
   ========================================= */

.mesa-page-content {
    padding: 76px 0 90px;

    background: #ffffff;
}

.mesa-page-content > .mesa-container {
    max-width: 980px;
}

.mesa-page-content h2 {
    margin:
        48px
        0
        14px;

    color: var(--mesa-navy-2);

    font-size: 27px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.mesa-page-content h2:first-child {
    margin-top: 0;
}

.mesa-page-content h3 {
    margin:
        30px
        0
        10px;

    color: var(--mesa-navy-2);

    font-size: 20px;
}

.mesa-page-content p {
    max-width: 850px;

    margin:
        0
        0
        16px;

    color: var(--mesa-muted);

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

.mesa-page-content ul {
    margin:
        14px
        0
        22px;

    padding-left: 22px;

    color: var(--mesa-muted);
}

.mesa-page-content li {
    margin-bottom: 8px;

    line-height: 1.6;
}

.mesa-page-content a {
    color: var(--mesa-blue);
    font-weight: 650;
}


/* =========================================
   BLOCS VISUELS DANS LE CONTENU
   ========================================= */

.mesa-page-content blockquote {
    margin:
        34px
        0;

    padding:
        22px
        24px;

    background: var(--mesa-soft);

    border-left:
        4px solid var(--mesa-blue);

    border-radius:
        0 12px 12px 0;

    color: var(--mesa-text);
}

.mesa-page-content hr {
    margin: 46px 0;

    border: 0;
    border-top: 1px solid var(--mesa-line);
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 640px) {

    .mesa-page-hero {
        padding: 55px 0 50px;
    }

    .mesa-page-hero h1 {
        font-size: 37px;
    }

    .mesa-page-content {
        padding: 52px 0 65px;
    }

    .mesa-page-content h2 {
        margin-top: 36px;
        font-size: 24px;
    }

    .mesa-page-content p {
        font-size: 14px;
    }
}


/* =========================================
   PAGE CONTACT
   ========================================= */

.mesa-contact-section {
    padding: 78px 0 90px;
    background: #ffffff;
}

.mesa-contact-grid {
    display: grid;
    grid-template-columns:
        minmax(0, .85fr)
        minmax(420px, 1.15fr);
    gap: 70px;
    align-items: start;
}

.mesa-contact-intro h2 {
    max-width: 520px;
    margin: 0 0 18px;

    color: var(--mesa-navy-2);

    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.mesa-contact-intro > p {
    max-width: 520px;
    margin: 0;

    color: var(--mesa-muted);

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

.mesa-contact-details {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.mesa-contact-details div {
    padding: 17px 18px;

    background: var(--mesa-soft);

    border: 1px solid var(--mesa-line);
    border-radius: 12px;
}

.mesa-contact-details strong {
    display: block;
    margin-bottom: 4px;

    color: var(--mesa-navy-2);
    font-size: 13px;
}

.mesa-contact-details a,
.mesa-contact-details span {
    color: var(--mesa-muted);
    font-size: 14px;
}


/* =========================================
   FORMULAIRE
   ========================================= */

.mesa-contact-form-box {
    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--mesa-line);
    border-radius: 18px;

    box-shadow:
        0 18px 50px rgba(15,42,67,.08);
}

.mesa-contact-form-box form {
    display: grid;
    gap: 18px;
}

.mesa-form-row {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.mesa-contact-form-box label {
    display: grid;
    gap: 7px;

    color: var(--mesa-navy-2);

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

.mesa-contact-form-box input,
.mesa-contact-form-box textarea {
    width: 100%;
    padding: 12px 13px;

    color: var(--mesa-text);
    background: #fbfcfe;

    border: 1px solid #ccd9e5;
    border-radius: 9px;

    font: inherit;
    font-size: 14px;

    outline: none;

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

.mesa-contact-form-box textarea {
    min-height: 150px;
    resize: vertical;
}

.mesa-contact-form-box input:focus,
.mesa-contact-form-box textarea:focus {
    border-color: var(--mesa-blue);

    box-shadow:
        0 0 0 3px rgba(37,99,235,.10);
}

.mesa-form-consent {
    grid-template-columns: 18px 1fr !important;
    align-items: start;

    color: var(--mesa-muted) !important;

    font-size: 12px !important;
    font-weight: 500 !important;
}

.mesa-form-consent input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

.mesa-contact-form-box .mesa-btn {
    justify-self: start;
    border: 0;
    cursor: pointer;
}


/* =========================================
   MESSAGES FORMULAIRE
   ========================================= */

.mesa-form-message {
    margin-bottom: 20px;
    padding: 13px 15px;

    border-radius: 9px;

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

.mesa-form-message.success {
    color: #146534;
    background: #eefaf2;
    border: 1px solid #bde3c9;
}

.mesa-form-message.error {
    color: #8b2430;
    background: #fff2f3;
    border: 1px solid #efc4c8;
}

.mesa-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* =========================================
   RESPONSIVE CONTACT
   ========================================= */

@media (max-width: 900px) {

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

@media (max-width: 640px) {

    .mesa-contact-section {
        padding: 52px 0 65px;
    }

    .mesa-contact-intro h2 {
        font-size: 29px;
    }

    .mesa-contact-form-box {
        padding: 21px;
    }

    .mesa-form-row {
        grid-template-columns: 1fr;
    }

    .mesa-contact-form-box .mesa-btn {
        width: 100%;
    }
}


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

.mesa-services-hero {
    padding: 86px 0 78px;
}

.mesa-page-hero-lead {
    max-width: 720px;

    margin: 22px 0 0;

    color: #c1d1df;

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


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

.mesa-services-page {
    padding: 84px 0 95px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f5f8fc
        );
}

.mesa-services-page-grid {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 18px;
}

.mesa-services-page-card {
    position: relative;
    overflow: hidden;

    grid-column: span 2;

    min-height: 330px;

    display: flex;
    flex-direction: column;

    padding: 32px;

    background:
        radial-gradient(
            circle at 110% 110%,
            rgba(37,99,235,.09),
            transparent 40%
        ),
        #ffffff;

    border: 1px solid #dce6ef;
    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(15,42,67,.055);

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

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

.mesa-services-page-card:hover {
    transform: translateY(-5px);

    border-color: #b8cee4;

    box-shadow:
        0 20px 45px rgba(15,42,67,.09);
}


/* =========================================
   ICONES
   ========================================= */

.mesa-services-page-card .mesa-service-icon {
    width: 60px;
    height: 60px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #edf4ff,
            #f8fbff
        );

    border: 1px solid #d3e2f7;

    box-shadow:
        0 8px 20px rgba(37,99,235,.08);
}

.mesa-services-page-card .mesa-service-icon svg {
    width: 30px;
    height: 30px;

    fill: none;

    stroke: var(--mesa-blue);
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   CONTENU
   ========================================= */

.mesa-services-page-card h2 {
    margin: 30px 0 12px;

    color: var(--mesa-navy-2);

    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.mesa-services-page-card p {
    margin: 0 0 28px;

    color: var(--mesa-muted);

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

.mesa-services-page-card a {
    margin-top: auto;

    color: var(--mesa-blue);

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

.mesa-services-page-card a:hover {
    text-decoration: underline;
}


/* =========================================
   DETAIL DECORATIF
   ========================================= */

.mesa-services-page-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 32px;

    width: 46px;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--mesa-blue),
            #6ca1ff
        );

    border-radius: 0 0 4px 4px;

    transition: width .22s ease;
}

.mesa-services-page-card:hover::before {
    width: 86px;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 960px) {

    .mesa-services-page-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .mesa-services-page-card,
    .mesa-services-page-card:nth-child(4) {
        grid-column: auto;
    }
}

@media (max-width: 640px) {

    .mesa-services-hero {
        padding: 58px 0 54px;
    }

    .mesa-page-hero-lead {
        margin-top: 17px;

        font-size: 15px;
    }

    .mesa-services-page {
        padding: 55px 0 65px;
    }

    .mesa-services-page-grid {
        grid-template-columns: 1fr;
    }

    .mesa-services-page-card {
        min-height: 0;

        padding: 25px;
    }

    .mesa-services-page-card .mesa-service-icon {
        width: 54px;
        height: 54px;
    }

    .mesa-services-page-card h2 {
        margin-top: 24px;

        font-size: 20px;
    }
}


/* =========================================
   PAGE SERVICES — AJUSTEMENT CARTES
   ========================================= */

.mesa-services-page-card {
    min-height: 285px;
}

.mesa-services-page-card h2 {
    margin-top: 26px;
}

.mesa-services-page-card p {
    margin-bottom: 20px;
}

@media (max-width: 640px) {

    .mesa-services-page-card {
        min-height: 0;
    }
}


/* =========================================
   PAGE SERVICES — CENTRAGE ICONES
   ========================================= */

.mesa-services-page-card .mesa-service-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;
}

.mesa-services-page-card .mesa-service-icon svg {
    display: block;

    margin: 0;
    padding: 0;
}


/* =========================================
   PAGE SERVICES — CTA FINAL
   ========================================= */

.mesa-services-cta {
    padding: 78px 0;

    background:
        linear-gradient(
            135deg,
            #f4f8fc,
            #edf4fb
        );
}

.mesa-services-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 55px;

    padding: 42px 46px;

    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(37,99,235,.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #071d31,
            #103d69
        );

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(7,29,49,.13);
}

.mesa-services-cta .mesa-eyebrow {
    color: #86afff;
}

.mesa-services-cta h2 {
    max-width: 700px;

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 31px;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.mesa-services-cta p {
    max-width: 650px;

    margin: 0;

    color: #bdd0e1;

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

.mesa-services-cta .mesa-btn {
    flex: 0 0 auto;

    background: #ffffff;
    color: var(--mesa-navy-2);

    box-shadow:
        0 8px 22px rgba(0,0,0,.14);
}

.mesa-services-cta .mesa-btn:hover {
    background: #f2f6fa;
}


@media (max-width: 640px) {

    .mesa-services-cta {
        padding: 50px 0;
    }

    .mesa-services-cta-inner {
        flex-direction: column;
        align-items: stretch;

        gap: 26px;

        padding: 28px 24px;
    }

    .mesa-services-cta h2 {
        font-size: 26px;
    }

    .mesa-services-cta .mesa-btn {
        width: 100%;
    }
}


/* =========================================
   HERO SERVICES — FINITION
   ========================================= */

.mesa-services-hero h1 {
    max-width: 780px;
}

.mesa-services-hero h1 span {
    color: #9fc0ff;
}

.mesa-services-hero .mesa-page-hero-lead {
    max-width: 760px;
    margin-top: 26px;

    color: #c7d6e4;

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

@media (max-width: 640px) {

    .mesa-services-hero h1 span {
        display: block;
    }

    .mesa-services-hero .mesa-page-hero-lead {
        margin-top: 20px;
        font-size: 15px;
    }
}


/* =========================================
   INFOGERANCE — HERO
   ========================================= */

.mesa-infogerance-hero h1 {
    max-width: 820px;
}

.mesa-infogerance-hero h1 span {
    color: #9fc0ff;
}

.mesa-infogerance-hero .mesa-page-hero-lead {
    max-width: 760px;
}


/* =========================================
   INFOGERANCE — BENEFICES
   ========================================= */

.mesa-infogerance-benefits {
    padding: 86px 0 95px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f5f8fc
        );
}

.mesa-infogerance-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}

.mesa-infogerance-grid article {
    position: relative;
    overflow: hidden;

    min-height: 275px;

    padding: 28px;

    background:
        radial-gradient(
            circle at 110% 110%,
            rgba(37,99,235,.08),
            transparent 42%
        ),
        #ffffff;

    border: 1px solid #dce6ef;
    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(15,42,67,.05);

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

.mesa-infogerance-grid article:hover {
    transform: translateY(-5px);

    border-color: #b9cee3;

    box-shadow:
        0 18px 40px rgba(15,42,67,.085);
}

.mesa-infogerance-grid article::before {
    content: "";

    position: absolute;

    top: 0;
    left: 28px;

    width: 45px;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--mesa-blue),
            #6da2ff
        );

    border-radius: 0 0 4px 4px;
}

.mesa-infogerance-grid .mesa-service-icon {
    display: flex;

    width: 56px;
    height: 56px;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #edf4ff,
            #f8fbff
        );

    border: 1px solid #d3e2f7;
    border-radius: 15px;

    box-shadow:
        0 7px 18px rgba(37,99,235,.07);
}

.mesa-infogerance-grid .mesa-service-icon svg {
    display: block;

    width: 28px;
    height: 28px;

    fill: none;

    stroke: var(--mesa-blue);
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mesa-infogerance-grid h3 {
    margin: 28px 0 10px;

    color: var(--mesa-navy-2);

    font-size: 19px;
    line-height: 1.25;
}

.mesa-infogerance-grid p {
    margin: 0;

    color: var(--mesa-muted);

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


@media (max-width: 960px) {

    .mesa-infogerance-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 640px) {

    .mesa-infogerance-benefits {
        padding: 55px 0 65px;
    }

    .mesa-infogerance-grid {
        grid-template-columns: 1fr;
    }

    .mesa-infogerance-grid article {
        min-height: 0;

        padding: 24px;
    }

    .mesa-infogerance-grid h3 {
        margin-top: 23px;
    }
}


/* =========================================
   INFOGERANCE — PERIMETRE
   ========================================= */

.mesa-infogerance-scope {
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37,99,235,.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #071a2c,
            #0d304f
        );
}

.mesa-infogerance-scope-grid {
    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 80px;

    align-items: start;
}

.mesa-infogerance-scope .mesa-eyebrow {
    color: #83adff;
}

.mesa-infogerance-scope h2 {
    max-width: 520px;

    margin: 0;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.mesa-infogerance-list {
    display: grid;

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

    gap: 12px;
}

.mesa-infogerance-list div {
    position: relative;

    padding: 15px 16px 15px 44px;

    color: #d6e2ed;

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

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 11px;

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

.mesa-infogerance-list div::before {
    content: "✓";

    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #72a3ff;

    font-weight: 900;
}


/* =========================================
   RESPONSIVE INFOGERANCE
   ========================================= */

@media (max-width: 960px) {

    .mesa-infogerance-scope-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }
}

@media (max-width: 640px) {

    .mesa-infogerance-hero h1 span {
        display: block;
    }

    .mesa-infogerance-scope {
        padding: 60px 0;
    }

    .mesa-infogerance-scope h2 {
        font-size: 30px;
    }

    .mesa-infogerance-list {
        grid-template-columns: 1fr;
    }

    .mesa-infogerance-list div {
        padding: 14px 14px 14px 42px;
    }
}


/* =========================================
   CYBERSECURITE — HERO
   ========================================= */

.mesa-cyber-hero h1 {
    max-width: 820px;
}

.mesa-cyber-hero h1 span {
    color: #9fc0ff;
}

.mesa-cyber-hero .mesa-page-hero-lead {
    max-width: 760px;
}


/* =========================================
   CYBERSECURITE — BLOCS PRINCIPAUX
   ========================================= */

.mesa-cyber-benefits {
    padding: 86px 0 95px;

    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f5f8fc
        );
}

.mesa-cyber-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 17px;
}

.mesa-cyber-grid article {
    position: relative;
    overflow: hidden;

    min-height: 285px;

    padding: 28px;

    background:
        radial-gradient(
            circle at 110% 110%,
            rgba(37,99,235,.08),
            transparent 42%
        ),
        #ffffff;

    border: 1px solid #dce6ef;
    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(15,42,67,.05);

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

.mesa-cyber-grid article:hover {
    transform: translateY(-5px);

    border-color: #b9cee3;

    box-shadow:
        0 18px 40px rgba(15,42,67,.085);
}

.mesa-cyber-grid article::before {
    content: "";

    position: absolute;

    top: 0;
    left: 28px;

    width: 45px;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--mesa-blue),
            #6da2ff
        );

    border-radius: 0 0 4px 4px;
}

.mesa-cyber-grid .mesa-service-icon {
    display: flex;

    width: 56px;
    height: 56px;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #edf4ff,
            #f8fbff
        );

    border: 1px solid #d3e2f7;
    border-radius: 15px;

    box-shadow:
        0 7px 18px rgba(37,99,235,.07);
}

.mesa-cyber-grid .mesa-service-icon svg {
    display: block;

    width: 28px;
    height: 28px;

    fill: none;

    stroke: var(--mesa-blue);
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mesa-cyber-grid h3 {
    margin: 28px 0 10px;

    color: var(--mesa-navy-2);

    font-size: 19px;
    line-height: 1.25;
}

.mesa-cyber-grid p {
    margin: 0;

    color: var(--mesa-muted);

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


/* =========================================
   CYBERSECURITE — NOTRE APPROCHE
   ========================================= */

.mesa-cyber-scope {
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37,99,235,.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061827,
            #0c2e4c
        );
}

.mesa-cyber-scope-grid {
    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    gap: 80px;

    align-items: start;
}

.mesa-cyber-scope .mesa-eyebrow {
    color: #83adff;
}

.mesa-cyber-scope h2 {
    max-width: 520px;

    margin: 0;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.mesa-cyber-list {
    display: grid;

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

    gap: 12px;
}

.mesa-cyber-list div {
    position: relative;

    padding: 15px 16px 15px 44px;

    color: #d6e2ed;

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

    border:
        1px solid rgba(255,255,255,.10);

    border-radius: 11px;

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

.mesa-cyber-list div::before {
    content: "✓";

    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: #72a3ff;

    font-weight: 900;
}


/* =========================================
   RESPONSIVE CYBER
   ========================================= */

@media (max-width: 960px) {

    .mesa-cyber-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .mesa-cyber-scope-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }
}

@media (max-width: 640px) {

    .mesa-cyber-hero h1 span {
        display: block;
    }

    .mesa-cyber-benefits {
        padding: 55px 0 65px;
    }

    .mesa-cyber-grid {
        grid-template-columns: 1fr;
    }

    .mesa-cyber-grid article {
        min-height: 0;

        padding: 24px;
    }

    .mesa-cyber-grid h3 {
        margin-top: 23px;
    }

    .mesa-cyber-scope {
        padding: 60px 0;
    }

    .mesa-cyber-scope h2 {
        font-size: 30px;
    }

    .mesa-cyber-list {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   A PROPOS — HERO
   ========================================= */

.mesa-about-hero h1 {
    max-width: 840px;
}

.mesa-about-hero h1 span {
    color: #9fc0ff;
}

.mesa-about-hero .mesa-page-hero-lead {
    max-width: 760px;
}


/* =========================================
   A PROPOS — INTRO
   ========================================= */

.mesa-about-intro {
    padding: 88px 0;

    background: #ffffff;
}

.mesa-about-intro-grid {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 90px;

    align-items: start;
}

.mesa-about-intro h2 {
    max-width: 470px;

    margin: 0;

    color: var(--mesa-navy-2);

    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.mesa-about-intro-text {
    max-width: 700px;
}

.mesa-about-intro-text p {
    margin: 0 0 18px;

    color: var(--mesa-muted);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   A PROPOS — VALEURS
   ========================================= */

.mesa-about-values {
    padding: 80px 0 95px;

    background:
        linear-gradient(
            180deg,
            #f5f8fc,
            #edf3f9
        );
}

.mesa-about-values-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.mesa-about-values-grid article {
    position: relative;
    overflow: hidden;

    min-height: 275px;

    padding: 30px;

    background:
        radial-gradient(
            circle at 110% 110%,
            rgba(37,99,235,.08),
            transparent 42%
        ),
        #ffffff;

    border: 1px solid #dce6ef;
    border-radius: 19px;

    box-shadow:
        0 12px 32px rgba(15,42,67,.05);

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

.mesa-about-values-grid article:hover {
    transform: translateY(-5px);

    border-color: #b8cee4;

    box-shadow:
        0 18px 40px rgba(15,42,67,.085);
}

.mesa-about-values-grid article::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;

    width: 46px;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--mesa-blue),
            #6da2ff
        );

    border-radius: 0 0 4px 4px;
}

.mesa-about-values-grid .mesa-service-icon {
    display: flex;

    width: 58px;
    height: 58px;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #edf4ff,
            #f8fbff
        );

    border: 1px solid #d3e2f7;
    border-radius: 16px;

    box-shadow:
        0 7px 18px rgba(37,99,235,.07);
}

.mesa-about-values-grid .mesa-service-icon svg {
    display: block;

    width: 29px;
    height: 29px;

    fill: none;

    stroke: var(--mesa-blue);
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mesa-about-values-grid h3 {
    margin: 28px 0 10px;

    color: var(--mesa-navy-2);

    font-size: 20px;
    line-height: 1.25;
}

.mesa-about-values-grid p {
    margin: 0;

    color: var(--mesa-muted);

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


/* =========================================
   A PROPOS — ECOSYSTEME MESA
   ========================================= */

.mesa-about-mesa {
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(37,99,235,.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #061827,
            #0d304f
        );
}

.mesa-about-mesa-grid {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.mesa-about-mesa .mesa-eyebrow {
    color: #83adff;
}

.mesa-about-mesa h2 {
    max-width: 700px;

    margin: 0 0 14px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -.035em;
}

.mesa-about-mesa p {
    max-width: 700px;

    margin: 0;

    color: #bfd0df;

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

.mesa-about-mesa .mesa-btn {
    flex: 0 0 auto;
}


/* =========================================
   RESPONSIVE A PROPOS
   ========================================= */

@media (max-width: 960px) {

    .mesa-about-intro-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .mesa-about-values-grid {
        grid-template-columns: 1fr;
    }

    .mesa-about-mesa-grid {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 640px) {

    .mesa-about-hero h1 span {
        display: block;
    }

    .mesa-about-intro {
        padding: 58px 0;
    }

    .mesa-about-intro h2 {
        font-size: 31px;
    }

    .mesa-about-intro-text p {
        font-size: 14px;
    }

    .mesa-about-values {
        padding: 55px 0 65px;
    }

    .mesa-about-values-grid article {
        min-height: 0;
        padding: 24px;
    }

    .mesa-about-mesa {
        padding: 60px 0;
    }

    .mesa-about-mesa h2 {
        font-size: 30px;
    }

    .mesa-about-mesa .mesa-btn {
        width: 100%;
    }
}


/* =========================================
   A PROPOS — NOTRE APPROCHE V2
   ========================================= */

.mesa-about-intro {
    position: relative;
    overflow: hidden;
}

.mesa-about-intro::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    left: -190px;
    bottom: -250px;

    border-radius: 50%;

    background:
        rgba(37,99,235,.035);

    pointer-events: none;
}

.mesa-about-method {
    position: relative;

    display: grid;
    gap: 0;

    max-width: 720px;
}

.mesa-about-method-item {
    position: relative;

    display: grid;
    grid-template-columns: 64px 1fr;

    gap: 20px;

    align-items: start;

    padding: 23px 0;
}

.mesa-about-method-item:first-child {
    padding-top: 0;
}

.mesa-about-method-item + .mesa-about-method-item {
    border-top:
        1px solid var(--mesa-line);
}

.mesa-about-method-icon {
    display: flex;

    width: 52px;
    height: 52px;

    align-items: center;
    justify-content: center;

    color: var(--mesa-blue);

    background:
        linear-gradient(
            145deg,
            #edf4ff,
            #f8fbff
        );

    border: 1px solid #d5e4f7;
    border-radius: 50%;

    box-shadow:
        0 7px 18px rgba(37,99,235,.07);
}

.mesa-about-method-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mesa-about-method-item strong {
    display: block;

    margin: 2px 0 6px;

    color: var(--mesa-navy-2);

    font-size: 18px;
}

.mesa-about-method-item p {
    max-width: 560px;

    margin: 0;

    color: var(--mesa-muted);

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


@media (max-width: 640px) {

    .mesa-about-method-item {
        grid-template-columns: 52px 1fr;

        gap: 15px;

        padding: 20px 0;
    }

    .mesa-about-method-icon {
        width: 46px;
        height: 46px;
    }

    .mesa-about-method-icon svg {
        width: 23px;
        height: 23px;
    }

    .mesa-about-method-item strong {
        font-size: 17px;
    }

    .mesa-about-method-item p {
        font-size: 13px;
    }
}


/* =========================================
   A PROPOS — INTRO GAUCHE V2
   ========================================= */

.mesa-about-intro::after {
    display: none;
}

.mesa-about-intro-heading {
    position: relative;

    max-width: 470px;

    padding-left: 26px;
}

.mesa-about-intro-heading::before {
    content: "";

    position: absolute;

    left: 0;
    top: 5px;

    width: 3px;
    height: 78px;

    border-radius: 3px;

    background:
        linear-gradient(
            180deg,
            var(--mesa-blue),
            #8ab3ff
        );
}

.mesa-about-intro-heading h2 {
    margin: 0;

    font-size: 43px;
    line-height: 1.05;
}

.mesa-about-intro-heading h2 span {
    display: block;

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

.mesa-about-intro-heading > p {
    max-width: 420px;

    margin: 24px 0 0;

    color: var(--mesa-muted);

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

.mesa-about-signature {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 32px;

    color: var(--mesa-navy-2);
}

.mesa-about-signature > span {
    width: 42px;
    height: 2px;

    flex: 0 0 auto;

    background: var(--mesa-blue);
}

.mesa-about-signature strong {
    font-size: 13px;
    font-weight: 750;
}


@media (max-width: 640px) {

    .mesa-about-intro-heading {
        padding-left: 20px;
    }

    .mesa-about-intro-heading h2 {
        font-size: 32px;
    }

    .mesa-about-intro-heading::before {
        height: 62px;
    }

    .mesa-about-intro-heading > p {
        margin-top: 18px;

        font-size: 14px;
    }

    .mesa-about-signature {
        margin-top: 24px;
    }
}


/* =========================================
   MESSAGE LATERAL — SECTIONS SOMBRES
   ========================================= */

.mesa-scope-message {
    position: relative;

    max-width: 520px;

    padding-left: 27px;
}

.mesa-scope-message::before {
    content: "";

    position: absolute;

    left: 0;
    top: 5px;

    width: 3px;
    height: 82px;

    border-radius: 3px;

    background:
        linear-gradient(
            180deg,
            #4f8cff,
            #9abbff
        );
}

.mesa-scope-message h2 {
    margin: 0;

    color: #ffffff;

    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.mesa-scope-message h2 span {
    display: block;

    color: #93b8ff;
}

.mesa-scope-message > p {
    max-width: 470px;

    margin: 23px 0 0;

    color: #aec2d4;

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

.mesa-scope-signature {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 30px;

    color: #ffffff;
}

.mesa-scope-signature > span {
    width: 42px;
    height: 2px;

    background: #6fa0ff;
}

.mesa-scope-signature strong {
    font-size: 13px;
}


@media (max-width: 640px) {

    .mesa-scope-message {
        padding-left: 20px;
    }

    .mesa-scope-message::before {
        height: 65px;
    }

    .mesa-scope-message h2 {
        font-size: 31px;
    }

    .mesa-scope-message > p {
        margin-top: 18px;

        font-size: 13px;
    }

    .mesa-scope-signature {
        margin-top: 23px;
    }
}


/* =========================================
   INFOGERANCE — AU QUOTIDIEN V2
   ========================================= */

.mesa-infogerance-intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 85px;

    align-items: end;

    margin-bottom: 48px;
}

.mesa-infogerance-intro-title {
    position: relative;

    padding-left: 25px;
}

.mesa-infogerance-intro-title::before {
    content: "";

    position: absolute;

    left: 0;
    top: 4px;

    width: 3px;
    height: 76px;

    border-radius: 3px;

    background:
        linear-gradient(
            180deg,
            var(--mesa-blue),
            #8fb5ff
        );
}

.mesa-infogerance-intro-title h2 {
    max-width: 570px;

    margin: 0;

    color: var(--mesa-navy-2);

    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.mesa-infogerance-intro-title h2 span {
    display: block;

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

.mesa-infogerance-intro-text p {
    max-width: 610px;

    margin: 0;

    color: var(--mesa-muted);

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

.mesa-infogerance-intro-signature {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 25px;
}

.mesa-infogerance-intro-signature > span {
    width: 42px;
    height: 2px;

    background: var(--mesa-blue);
}

.mesa-infogerance-intro-signature strong {
    color: var(--mesa-navy-2);

    font-size: 13px;
}


@media (max-width: 640px) {

    .mesa-infogerance-intro {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 34px;
    }

    .mesa-infogerance-intro-title {
        padding-left: 20px;
    }

    .mesa-infogerance-intro-title::before {
        height: 62px;
    }

    .mesa-infogerance-intro-title h2 {
        font-size: 30px;
    }

    .mesa-infogerance-intro-text p {
        font-size: 14px;
    }
}


/* =========================================
   CYBER — INTRO V2
   ========================================= */

.mesa-cyber-intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 85px;

    align-items: end;

    margin-bottom: 48px;
}

.mesa-cyber-intro-title {
    position: relative;

    padding-left: 25px;
}

.mesa-cyber-intro-title::before {
    content: "";

    position: absolute;

    left: 0;
    top: 4px;

    width: 3px;
    height: 76px;

    border-radius: 3px;

    background:
        linear-gradient(
            180deg,
            var(--mesa-blue),
            #8fb5ff
        );
}

.mesa-cyber-intro-title h2 {
    max-width: 570px;

    margin: 0;

    color: var(--mesa-navy-2);

    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.mesa-cyber-intro-title h2 span {
    display: block;

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

.mesa-cyber-intro-text p {
    max-width: 610px;

    margin: 0;

    color: var(--mesa-muted);

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

.mesa-cyber-intro-signature {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 25px;
}

.mesa-cyber-intro-signature > span {
    width: 42px;
    height: 2px;

    background: var(--mesa-blue);
}

.mesa-cyber-intro-signature strong {
    color: var(--mesa-navy-2);

    font-size: 13px;
}

@media (max-width: 640px) {

    .mesa-cyber-intro {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 34px;
    }

    .mesa-cyber-intro-title {
        padding-left: 20px;
    }

    .mesa-cyber-intro-title::before {
        height: 62px;
    }

    .mesa-cyber-intro-title h2 {
        font-size: 30px;
    }

    .mesa-cyber-intro-text p {
        font-size: 14px;
    }
}


/* =========================================
   CONTACT — HERO
   ========================================= */

.mesa-contact-hero h1 {
    max-width: 820px;
}

.mesa-contact-hero h1 span {
    color: #9fc0ff;
}

.mesa-contact-hero .mesa-page-hero-lead {
    max-width: 760px;
}


/* =========================================
   CONTACT — INTRO
   ========================================= */

.mesa-contact-intro-v2 {
    position: relative;

    padding-left: 27px;
}

.mesa-contact-intro-v2::before {
    content: "";

    position: absolute;

    left: 0;
    top: 5px;

    width: 3px;
    height: 82px;

    border-radius: 3px;

    background:
        linear-gradient(
            180deg,
            var(--mesa-blue),
            #8fb5ff
        );
}

.mesa-contact-intro-v2 h2 {
    max-width: 520px;

    margin: 0;

    color: var(--mesa-navy-2);

    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.mesa-contact-intro-v2 h2 span {
    display: block;

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

.mesa-contact-intro-v2 > p {
    max-width: 520px;

    margin: 23px 0 0;

    color: var(--mesa-muted);

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


/* =========================================
   CONTACT — SIGNATURE
   ========================================= */

.mesa-contact-signature {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 29px;

    color: var(--mesa-navy-2);
}

.mesa-contact-signature > span {
    width: 42px;
    height: 2px;

    background: var(--mesa-blue);
}

.mesa-contact-signature strong {
    font-size: 13px;
}


/* =========================================
   CONTACT — INFORMATIONS
   ========================================= */

.mesa-contact-points {
    display: grid;

    gap: 0;

    margin-top: 42px;
}

.mesa-contact-point {
    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 17px;

    align-items: center;

    padding: 18px 0;
}

.mesa-contact-point + .mesa-contact-point {
    border-top: 1px solid var(--mesa-line);
}

.mesa-contact-point-icon {
    display: flex;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    color: var(--mesa-blue);

    background:
        linear-gradient(
            145deg,
            #edf4ff,
            #f8fbff
        );

    border: 1px solid #d5e4f7;
    border-radius: 50%;
}

.mesa-contact-point-icon svg {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mesa-contact-point strong {
    display: block;

    margin-bottom: 2px;

    color: var(--mesa-navy-2);

    font-size: 14px;
}

.mesa-contact-point a,
.mesa-contact-point span {
    color: var(--mesa-muted);

    font-size: 13px;
}


/* =========================================
   CONTACT — FORMULAIRE V2
   ========================================= */

.mesa-contact-form-box {
    padding: 34px;

    border-radius: 20px;

    box-shadow:
        0 18px 48px rgba(15,42,67,.09);
}

.mesa-contact-form-head {
    padding-bottom: 25px;

    margin-bottom: 26px;

    border-bottom: 1px solid var(--mesa-line);
}

.mesa-contact-form-head h2 {
    margin: 0 0 7px;

    color: var(--mesa-navy-2);

    font-size: 27px;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.mesa-contact-form-head p {
    margin: 0;

    color: var(--mesa-muted);

    font-size: 13px;
}

.mesa-contact-form-box input,
.mesa-contact-form-box textarea {
    background: #f8fafc;

    border-color: #d4e0ea;
}

.mesa-contact-form-box input:hover,
.mesa-contact-form-box textarea:hover {
    border-color: #b8cadb;
}

.mesa-contact-form-box .mesa-btn {
    min-width: 190px;
}


/* =========================================
   CONTACT — RESPONSIVE
   ========================================= */

@media (max-width: 640px) {

    .mesa-contact-hero h1 span {
        display: block;
    }

    .mesa-contact-intro-v2 {
        padding-left: 20px;
    }

    .mesa-contact-intro-v2::before {
        height: 65px;
    }

    .mesa-contact-intro-v2 h2 {
        font-size: 31px;
    }

    .mesa-contact-intro-v2 > p {
        margin-top: 18px;

        font-size: 14px;
    }

    .mesa-contact-points {
        margin-top: 30px;
    }

    .mesa-contact-form-box {
        padding: 23px;
    }

    .mesa-contact-form-head h2 {
        font-size: 23px;
    }
}


/* =========================================
   ASSISTANCE + RESEAUX
   ========================================= */

.mesa-assistance-hero h1,
.mesa-network-hero h1 {
    max-width: 850px;
}

.mesa-assistance-hero h1 span,
.mesa-network-hero h1 span {
    color: #9fc0ff;
}

.mesa-assistance-hero .mesa-page-hero-lead,
.mesa-network-hero .mesa-page-hero-lead {
    max-width: 760px;
}

@media (max-width: 640px) {

    .mesa-assistance-hero h1 span,
    .mesa-network-hero h1 span {
        display: block;
    }
}


/* =========================================
   CONTACT — FINITION FORMULAIRE
   ========================================= */

.mesa-form-section-title {
    margin: 3px 0 -4px;

    color: var(--mesa-blue);

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

.mesa-form-section-space {
    margin-top: 8px;
    padding-top: 22px;

    border-top: 1px solid var(--mesa-line);
}


/* Champs uniformes */

.mesa-contact-form-box input:not([type="checkbox"]),
.mesa-contact-form-box select {
    min-height: 48px;
}

.mesa-contact-form-box input,
.mesa-contact-form-box select,
.mesa-contact-form-box textarea {
    border: 1px solid #d3dfe9;

    background-color: #f8fafc;

    box-shadow:
        inset 0 1px 2px rgba(15,42,67,.025);
}


/* Listes déroulantes */

.mesa-contact-form-box select {
    appearance: none;
    -webkit-appearance: none;

    padding:
        0 42px
        0 14px;

    color: var(--mesa-text);

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            #63788c 50%
        ),
        linear-gradient(
            135deg,
            #63788c 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 18px) 21px,
        calc(100% - 13px) 21px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.mesa-contact-form-box select:invalid {
    color: #708296;
}


/* Focus commun */

.mesa-contact-form-box input:focus,
.mesa-contact-form-box select:focus,
.mesa-contact-form-box textarea:focus {
    border-color: var(--mesa-blue);

    background-color: #ffffff;

    box-shadow:
        0 0 0 3px rgba(37,99,235,.10);

    outline: none;
}


/* Consentement */

.mesa-form-consent {
    margin-top: 3px;

    padding: 14px 15px;

    background: #f7f9fc;

    border: 1px solid #e0e7ee;
    border-radius: 9px;
}

.mesa-form-consent input[type="checkbox"] {
    width: 17px;
    height: 17px;

    margin: 1px 0 0;

    accent-color: var(--mesa-blue);

    cursor: pointer;
}

.mesa-form-consent span {
    line-height: 1.5;
}


/* Bouton */

.mesa-contact-form-box button.mesa-btn {
    min-width: 205px;

    margin-top: 2px;
}


/* Mobile */

@media (max-width: 640px) {

    .mesa-form-section-title {
        margin-top: 1px;
    }

    .mesa-form-section-space {
        margin-top: 5px;
        padding-top: 20px;
    }

    .mesa-contact-form-box button.mesa-btn {
        width: 100%;
    }
}


/* =========================================
   CONTACT — CONTRASTE DES SELECTS
   ========================================= */

.mesa-contact-form-box select,
.mesa-contact-form-box select:invalid {
    color: var(--mesa-text);
    font-weight: 500;
}

.mesa-contact-form-box select option {
    color: var(--mesa-text);
}
