/* ========================================================================== 
   PAGE — INFRASTRUCTURE & SYSTÈMES
   Fichier : assets/css/pages/infrastructure-systemes.css
   Version : 0.5.2
   ========================================================================== */

/* ========================================================================== 
   MOD-01 — HERO INFRASTRUCTURE & SYSTÈMES
   ========================================================================== */

/*
Structure WordPress attendue :

Rangée .infrastructure-systemes-hero

├── Section gauche .infrastructure-systemes-hero__content
│   ├── P  .infrastructure-systemes-hero__eyebrow
│   ├── H1 .infrastructure-systemes-hero__title
│   ├── P  .infrastructure-systemes-hero__lead
│   └── Boutons avancés .infrastructure-systemes-hero__actions
│
└── Section droite .infrastructure-systemes-hero__aside
    └── Groupe .infrastructure-systemes-hero__panel
        ├── Icône .infrastructure-systemes-hero__icon
        ├── H2 .infrastructure-systemes-hero__panel-title
        └── P  .infrastructure-systemes-hero__panel-text
*/

/* --------------------------------------------------------------------------
   VARIABLES LOCALES
   -------------------------------------------------------------------------- */

.infrastructure-systemes-hero {
    --expertise-accent: #02246A;
    --expertise-accent-soft: rgba(2, 36, 106, .08);
    --expertise-accent-border: rgba(2, 36, 106, .16);
}

/* --------------------------------------------------------------------------
   CONTENEUR PRINCIPAL
   -------------------------------------------------------------------------- */

.infrastructure-systemes-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    width: 100%;
    margin: 0 !important;
    padding: 82px 0 76px !important;

    background:
        radial-gradient(circle at 84% 22%, rgba(22, 198, 216, .12) 0%, rgba(22, 198, 216, 0) 34%),
        radial-gradient(circle at 72% 78%, rgba(2, 36, 106, .09) 0%, rgba(2, 36, 106, 0) 40%),
        linear-gradient(135deg, var(--ing-color-white) 0%, #F8FBFF 52%, var(--ing-color-bg-blue) 100%) !important;
}

.infrastructure-systemes-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -240px;
    right: -190px;

    width: 620px;
    height: 620px;
    border-radius: 50%;

    background: radial-gradient(circle, rgba(2, 36, 106, .10) 0%, rgba(2, 36, 106, 0) 70%);
    pointer-events: none;
}

.infrastructure-systemes-hero > .kt-row-column-wrap,
.infrastructure-systemes-hero > .kb-row-layout-wrap > .kt-row-column-wrap {
    display: grid !important;
    grid-template-columns: minmax(0, 1.10fr) minmax(0, .90fr) !important;
    align-items: center !important;

    width: min(calc(100% - 48px), var(--ing-container)) !important;
    margin-inline: auto !important;
    padding: 0 !important;

    gap: 56px !important;
}

/* --------------------------------------------------------------------------
   COLONNE GAUCHE
   -------------------------------------------------------------------------- */

.infrastructure-systemes-hero__content,
.infrastructure-systemes-hero__content > .kt-inside-inner-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;
}

.infrastructure-systemes-hero__eyebrow,
.infrastructure-systemes-hero__eyebrow p,
.infrastructure-systemes-hero__eyebrow .kt-adv-heading,
.infrastructure-systemes-hero__eyebrow .wp-block-kadence-advancedheading {
    margin: 0 0 16px !important;
    padding: 0 !important;

    color: var(--expertise-accent) !important;

    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
}

.infrastructure-systemes-hero__title,
.infrastructure-systemes-hero__title h1,
.infrastructure-systemes-hero__title .kt-adv-heading,
.infrastructure-systemes-hero__title .wp-block-kadence-advancedheading {
    width: 100% !important;
    max-width: 760px !important;

    margin: 0 0 24px !important;
    padding: 0 !important;

    color: var(--ing-color-title) !important;

    font-family: Manrope, sans-serif !important;
    font-size: clamp(44px, 3.25vw, 56px) !important;
    font-weight: 750 !important;
    line-height: 1.045 !important;
    letter-spacing: -.038em !important;

    text-wrap: balance;
    text-align: left !important;
}

.infrastructure-systemes-hero__lead,
.infrastructure-systemes-hero__lead p,
.infrastructure-systemes-hero__lead .kt-adv-heading,
.infrastructure-systemes-hero__lead .wp-block-kadence-advancedheading {
    width: 100% !important;
    max-width: 700px !important;

    margin: 0 0 30px !important;
    padding: 0 !important;

    color: var(--ing-color-text) !important;

    font-family: Manrope, sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.68 !important;

    text-align: left !important;
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.infrastructure-systemes-hero__actions,
.infrastructure-systemes-hero__actions .kb-buttons-wrap,
.infrastructure-systemes-hero__actions .wp-block-kadence-advancedbtn {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.infrastructure-systemes-hero__actions .kb-button,
.infrastructure-systemes-hero__actions.kb-button,
.infrastructure-systemes-hero__actions .wp-block-button__link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 48px !important;
    padding: 12px 22px !important;

    border: 1px solid var(--expertise-accent) !important;
    border-radius: 10px !important;

    background: var(--expertise-accent) !important;
    color: var(--ing-color-white) !important;

    font-family: Manrope, sans-serif !important;
    font-size: 15px !important;
    font-weight: 750 !important;
    line-height: 1.2 !important;

    text-decoration: none !important;
    box-shadow: 0 10px 22px -18px rgba(2, 36, 106, .50) !important;

    transition:
        transform var(--ing-transition),
        background-color var(--ing-transition),
        border-color var(--ing-transition),
        box-shadow var(--ing-transition);
}

.infrastructure-systemes-hero__actions .kb-button:hover,
.infrastructure-systemes-hero__actions.kb-button:hover,
.infrastructure-systemes-hero__actions .wp-block-button__link:hover {
    transform: translateY(-1px);
    border-color: var(--ing-color-primary) !important;
    background: var(--ing-color-primary) !important;
    box-shadow: 0 14px 28px -20px rgba(2, 36, 106, .56) !important;
}

.infrastructure-systemes-hero__actions .kb-button:focus-visible,
.infrastructure-systemes-hero__actions.kb-button:focus-visible,
.infrastructure-systemes-hero__actions .wp-block-button__link:focus-visible {
    outline: 3px solid rgba(22, 198, 216, .45) !important;
    outline-offset: 3px !important;
}

/* --------------------------------------------------------------------------
   COLONNE DROITE / PANNEAU
   -------------------------------------------------------------------------- */

.infrastructure-systemes-hero__aside,
.infrastructure-systemes-hero__aside > .kt-inside-inner-col {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
}

.infrastructure-systemes-hero__panel {
    position: relative !important;
    box-sizing: border-box !important;

    width: 100% !important;
    max-width: 560px !important;
    margin: 0 0 0 auto !important;
    padding: 34px 34px 32px !important;

    overflow: hidden !important;

    border: 1px solid var(--expertise-accent-border) !important;
    border-radius: 18px !important;

    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 22px 48px -36px rgba(2, 36, 106, .36) !important;
}

.infrastructure-systemes-hero__panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg, var(--expertise-accent) 0%, var(--ing-color-accent) 100%);
}

.infrastructure-systemes-hero__icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 50px !important;
    height: 50px !important;

    margin: 0 0 22px !important;
    padding: 0 !important;

    border: 1px solid var(--expertise-accent-border) !important;
    border-radius: 13px !important;

    background: var(--expertise-accent-soft) !important;
    color: var(--expertise-accent) !important;
}

.infrastructure-systemes-hero__icon svg {
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    fill: none;
    stroke: currentColor !important;
}

.infrastructure-systemes-hero__icon i {
    color: var(--expertise-accent) !important;
    font-size: 24px !important;
    line-height: 1 !important;
}

.infrastructure-systemes-hero__panel-title,
.infrastructure-systemes-hero__panel-title h2,
.infrastructure-systemes-hero__panel-title .kt-adv-heading,
.infrastructure-systemes-hero__panel-title .wp-block-kadence-advancedheading {
    width: 100% !important;
    max-width: 470px !important;

    margin: 0 0 14px !important;
    padding: 0 !important;

    color: var(--ing-color-title) !important;

    font-family: Manrope, sans-serif !important;
    font-size: 26px !important;
    font-weight: 750 !important;
    line-height: 1.2 !important;
    letter-spacing: -.025em !important;

    text-align: left !important;
}

.infrastructure-systemes-hero__panel-text,
.infrastructure-systemes-hero__panel-text p,
.infrastructure-systemes-hero__panel-text .kt-adv-heading,
.infrastructure-systemes-hero__panel-text .wp-block-kadence-advancedheading {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #53647B !important;

    font-family: Manrope, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.68 !important;

    text-align: left !important;
}

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

@media screen and (max-width: 1024px) {

    .infrastructure-systemes-hero {
        padding: 68px 0 64px !important;
    }

    .infrastructure-systemes-hero > .kt-row-column-wrap,
    .infrastructure-systemes-hero > .kb-row-layout-wrap > .kt-row-column-wrap {
        grid-template-columns: 1fr !important;
        width: min(calc(100% - 40px), var(--ing-container)) !important;
        gap: 40px !important;
    }

    .infrastructure-systemes-hero__title,
    .infrastructure-systemes-hero__title h1,
    .infrastructure-systemes-hero__title .kt-adv-heading,
    .infrastructure-systemes-hero__title .wp-block-kadence-advancedheading {
        max-width: 820px !important;
        font-size: clamp(42px, 5.6vw, 56px) !important;
    }

    .infrastructure-systemes-hero__lead,
    .infrastructure-systemes-hero__lead p {
        max-width: 780px !important;
        font-size: 17px !important;
    }

    .infrastructure-systemes-hero__panel {
        max-width: 760px !important;
        margin-left: 0 !important;
        padding: 30px !important;
    }
}

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

@media screen and (max-width: 767px) {

    .infrastructure-systemes-hero {
        padding: 52px 0 50px !important;
    }

    .infrastructure-systemes-hero::before {
        top: auto;
        right: -210px;
        bottom: -280px;
        width: 520px;
        height: 520px;
    }

    .infrastructure-systemes-hero > .kt-row-column-wrap,
    .infrastructure-systemes-hero > .kb-row-layout-wrap > .kt-row-column-wrap {
        width: min(calc(100% - 32px), var(--ing-container)) !important;
        gap: 30px !important;
    }

    .infrastructure-systemes-hero__eyebrow,
    .infrastructure-systemes-hero__eyebrow p {
        margin-bottom: 14px !important;
        font-size: 12px !important;
    }

    .infrastructure-systemes-hero__title,
    .infrastructure-systemes-hero__title h1,
    .infrastructure-systemes-hero__title .kt-adv-heading,
    .infrastructure-systemes-hero__title .wp-block-kadence-advancedheading {
        margin-bottom: 20px !important;
        font-size: clamp(35px, 10vw, 44px) !important;
        line-height: 1.07 !important;
        letter-spacing: -.032em !important;
    }

    .infrastructure-systemes-hero__lead,
    .infrastructure-systemes-hero__lead p {
        margin-bottom: 24px !important;
        font-size: 16px !important;
        line-height: 1.62 !important;
    }

    .infrastructure-systemes-hero__actions,
    .infrastructure-systemes-hero__actions .kb-buttons-wrap,
    .infrastructure-systemes-hero__actions .wp-block-kadence-advancedbtn {
        width: 100% !important;
    }

    .infrastructure-systemes-hero__actions .kb-button,
    .infrastructure-systemes-hero__actions.kb-button,
    .infrastructure-systemes-hero__actions .wp-block-button__link {
        width: 100% !important;
        max-width: 340px !important;
    }

    .infrastructure-systemes-hero__panel {
        width: 100% !important;
        max-width: none !important;
        padding: 25px 22px 23px !important;
        border-radius: 16px !important;
    }

    .infrastructure-systemes-hero__icon {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 18px !important;
        border-radius: 12px !important;
    }

    .infrastructure-systemes-hero__icon svg {
        width: 21px !important;
        height: 21px !important;
    }

    .infrastructure-systemes-hero__panel-title,
    .infrastructure-systemes-hero__panel-title h2,
    .infrastructure-systemes-hero__panel-title .kt-adv-heading,
    .infrastructure-systemes-hero__panel-title .wp-block-kadence-advancedheading {
        margin-bottom: 12px !important;
        font-size: 22px !important;
    }

    .infrastructure-systemes-hero__panel-text,
    .infrastructure-systemes-hero__panel-text p {
        font-size: 15px !important;
        line-height: 1.62 !important;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .infrastructure-systemes-hero__actions .kb-button,
    .infrastructure-systemes-hero__actions.kb-button,
    .infrastructure-systemes-hero__actions .wp-block-button__link {
        transition: none !important;
    }

    .infrastructure-systemes-hero__actions .kb-button:hover,
    .infrastructure-systemes-hero__actions.kb-button:hover,
    .infrastructure-systemes-hero__actions .wp-block-button__link:hover {
        transform: none !important;
    }
}

/* ========================================================================== 
   FIN MOD-01 — HERO INFRASTRUCTURE & SYSTÈMES
   ========================================================================== */


/* ========================================================================== 
   MOD-02 — VOS ENJEUX
   Version : 1.0.0
   ========================================================================== */

/*
Structure WordPress attendue :

Rangée .infrastructure-systemes-challenges

└── Section .infrastructure-systemes-challenges__container
    ├── P  .infrastructure-systemes-challenges__eyebrow
    ├── H2 .infrastructure-systemes-challenges__title
    ├── P  .infrastructure-systemes-challenges__intro
    └── Rangée Kadence 3 colonnes .infrastructure-systemes-challenges__grid
        ├── Section .infrastructure-systemes-challenges__column
        │   └── Groupe .infrastructure-systemes-challenges__item
        │       ├── Icône .infrastructure-systemes-challenges__icon
        │       ├── H3 .infrastructure-systemes-challenges__item-title
        │       └── P  .infrastructure-systemes-challenges__item-text
        ├── Section .infrastructure-systemes-challenges__column
        │   └── Groupe .infrastructure-systemes-challenges__item
        └── Section .infrastructure-systemes-challenges__column
            └── Groupe .infrastructure-systemes-challenges__item
*/

/* --------------------------------------------------------------------------
   SECTION
   -------------------------------------------------------------------------- */

.infrastructure-systemes-challenges {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 !important;
    padding: 88px 0 94px !important;
    background: linear-gradient(180deg, #F7FAFE 0%, #F1F6FC 100%) !important;
}

.infrastructure-systemes-challenges::before {
    content: "";
    position: absolute;
    pointer-events: none;
    top: -250px;
    left: -220px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2,36,106,.08) 0%, rgba(2,36,106,0) 70%);
}

.infrastructure-systemes-challenges > .kt-row-column-wrap,
.infrastructure-systemes-challenges > .kb-row-layout-wrap > .kt-row-column-wrap {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), var(--ing-container)) !important;
    margin-inline: auto !important;
    padding: 0 !important;
}

.infrastructure-systemes-challenges__container,
.infrastructure-systemes-challenges__container > .kt-inside-inner-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

/* --------------------------------------------------------------------------
   EN-TÊTE
   -------------------------------------------------------------------------- */

.infrastructure-systemes-challenges__eyebrow,
.infrastructure-systemes-challenges__eyebrow p,
.infrastructure-systemes-challenges__eyebrow .kt-adv-heading,
.infrastructure-systemes-challenges__eyebrow .wp-block-kadence-advancedheading {
    width: 100% !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    color: #02246A !important;
    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    text-align: center !important;
}

.infrastructure-systemes-challenges__title,
.infrastructure-systemes-challenges__title h2,
.infrastructure-systemes-challenges__title .kt-adv-heading,
.infrastructure-systemes-challenges__title .wp-block-kadence-advancedheading {
    width: 100% !important;
    max-width: 940px !important;
    margin: 0 auto 20px !important;
    padding: 0 !important;
    color: var(--ing-color-title) !important;
    font-family: Manrope, sans-serif !important;
    font-size: clamp(38px, 3.2vw, 50px) !important;
    font-weight: 750 !important;
    line-height: 1.1 !important;
    letter-spacing: -.03em !important;
    text-wrap: balance;
    text-align: center !important;
}

.infrastructure-systemes-challenges__intro,
.infrastructure-systemes-challenges__intro p,
.infrastructure-systemes-challenges__intro .kt-adv-heading,
.infrastructure-systemes-challenges__intro .wp-block-kadence-advancedheading {
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto 34px !important;
    padding: 0 !important;
    color: var(--ing-color-text) !important;
    font-family: Manrope, sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.68 !important;
    text-align: center !important;
}

/* --------------------------------------------------------------------------
   GRILLE
   -------------------------------------------------------------------------- */

.infrastructure-systemes-challenges__grid {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: stretch !important;
}

.infrastructure-systemes-challenges__grid > .kt-row-column-wrap,
.infrastructure-systemes-challenges__grid > .kb-row-layout-wrap > .kt-row-column-wrap {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 22px !important;
}

.infrastructure-systemes-challenges__column,
.infrastructure-systemes-challenges__column > .kt-inside-inner-col {
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.infrastructure-systemes-challenges__column > .kt-inside-inner-col {
    display: flex !important;
    flex-direction: column !important;
}

/* --------------------------------------------------------------------------
   CARTES — CORRECTIF KADENCE 0.2.1
   -------------------------------------------------------------------------- */

/*
 * La classe __item est portée par le Groupe/Section Kadence externe.
 * Le cadre visuel est appliqué à .kt-inside-inner-col afin de neutraliser
 * les styles internes Kadence et garantir des cartes de même hauteur.
 */
.infrastructure-systemes-challenges__item {
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.infrastructure-systemes-challenges__item > .kt-inside-inner-col {
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    min-height: 248px !important;
    margin: 0 !important;
    padding: 28px 26px 26px !important;
    border: 1px solid rgba(2,36,106,.12) !important;
    border-radius: 16px !important;
    background: #FFFFFF !important;
    box-shadow: 0 16px 34px -30px rgba(2,36,106,.30) !important;
    text-align: left !important;
    transition: transform var(--ing-transition), border-color var(--ing-transition), box-shadow var(--ing-transition);
}

.infrastructure-systemes-challenges__item:hover > .kt-inside-inner-col {
    transform: translateY(-3px);
    border-color: rgba(2,36,106,.30) !important;
    box-shadow: 0 22px 42px -30px rgba(2,36,106,.40) !important;
}

/* Icône — neutralisation des styles du bloc Icône Kadence */
.infrastructure-systemes-challenges__icon,
.infrastructure-systemes-challenges__icon .kt-svg-icon-wrap,
.infrastructure-systemes-challenges__icon .kb-svg-icon-wrap {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    border: 1px solid rgba(2,36,106,.14) !important;
    border-radius: 13px !important;
    background: rgba(2,36,106,.055) !important;
    color: #02246A !important;
    box-shadow: none !important;
}

.infrastructure-systemes-challenges__icon svg,
.infrastructure-systemes-challenges__icon .kadence-svg-iconset,
.infrastructure-systemes-challenges__icon .kt-svg-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #02246A !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
}

.infrastructure-systemes-challenges__icon i {
    color: #02246A !important;
    font-size: 22px !important;
    line-height: 1 !important;
}

.infrastructure-systemes-challenges__item-title,
.infrastructure-systemes-challenges__item-title h1,
.infrastructure-systemes-challenges__item-title h2,
.infrastructure-systemes-challenges__item-title h3,
.infrastructure-systemes-challenges__item-title h4,
.infrastructure-systemes-challenges__item-title .kt-adv-heading,
.infrastructure-systemes-challenges__item-title .wp-block-kadence-advancedheading {
    width: 100% !important;
    margin: 0 0 11px !important;
    padding: 0 !important;
    color: var(--ing-color-title) !important;
    font-family: Manrope, sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.30 !important;
    letter-spacing: -.018em !important;
    text-align: left !important;
}

.infrastructure-systemes-challenges__item-text,
.infrastructure-systemes-challenges__item-text p,
.infrastructure-systemes-challenges__item-text div,
.infrastructure-systemes-challenges__item-text span,
.infrastructure-systemes-challenges__item-text .kt-adv-heading,
.infrastructure-systemes-challenges__item-text .wp-block-kadence-advancedheading {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #53647B !important;
    font-family: Manrope, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.64 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}

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

@media screen and (max-width: 1024px) {
    .infrastructure-systemes-challenges {
        padding: 72px 0 78px !important;
    }

    .infrastructure-systemes-challenges > .kt-row-column-wrap,
    .infrastructure-systemes-challenges > .kb-row-layout-wrap > .kt-row-column-wrap {
        width: min(calc(100% - 40px), var(--ing-container)) !important;
    }

    .infrastructure-systemes-challenges__title,
    .infrastructure-systemes-challenges__title h2,
    .infrastructure-systemes-challenges__title .kt-adv-heading,
    .infrastructure-systemes-challenges__title .wp-block-kadence-advancedheading {
        max-width: 820px !important;
        font-size: clamp(36px, 5vw, 46px) !important;
    }

    .infrastructure-systemes-challenges__intro,
    .infrastructure-systemes-challenges__intro p {
        max-width: 740px !important;
        margin-bottom: 36px !important;
        font-size: 16px !important;
    }

    .infrastructure-systemes-challenges__grid > .kt-row-column-wrap,
    .infrastructure-systemes-challenges__grid > .kb-row-layout-wrap > .kt-row-column-wrap {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .infrastructure-systemes-challenges__item,
    .infrastructure-systemes-challenges__item > .kt-inside-inner-col {
        min-height: 0 !important;
        height: auto !important;
    }

    .infrastructure-systemes-challenges__item > .kt-inside-inner-col {
        padding: 25px !important;
    }
}

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

@media screen and (max-width: 767px) {
    .infrastructure-systemes-challenges {
        padding: 56px 0 62px !important;
    }

    .infrastructure-systemes-challenges > .kt-row-column-wrap,
    .infrastructure-systemes-challenges > .kb-row-layout-wrap > .kt-row-column-wrap {
        width: min(calc(100% - 32px), var(--ing-container)) !important;
    }

    .infrastructure-systemes-challenges__eyebrow,
    .infrastructure-systemes-challenges__eyebrow p {
        margin-bottom: 13px !important;
        font-size: 12px !important;
    }

    .infrastructure-systemes-challenges__title,
    .infrastructure-systemes-challenges__title h2,
    .infrastructure-systemes-challenges__title .kt-adv-heading,
    .infrastructure-systemes-challenges__title .wp-block-kadence-advancedheading {
        margin-bottom: 18px !important;
        font-size: 32px !important;
        line-height: 1.12 !important;
    }

    .infrastructure-systemes-challenges__intro,
    .infrastructure-systemes-challenges__intro p {
        margin-bottom: 30px !important;
        font-size: 15px !important;
        line-height: 1.62 !important;
    }

    .infrastructure-systemes-challenges__item > .kt-inside-inner-col {
        padding: 22px 20px 21px !important;
        border-radius: 14px !important;
    }

    .infrastructure-systemes-challenges__icon {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 18px !important;
        border-radius: 12px !important;
    }

    .infrastructure-systemes-challenges__icon svg {
        width: 21px !important;
        height: 21px !important;
    }

    .infrastructure-systemes-challenges__item-title,
    .infrastructure-systemes-challenges__item-title h3,
    .infrastructure-systemes-challenges__item-title .kt-adv-heading,
    .infrastructure-systemes-challenges__item-title .wp-block-kadence-advancedheading {
        font-size: 19px !important;
    }

    .infrastructure-systemes-challenges__item-text,
    .infrastructure-systemes-challenges__item-text p {
        font-size: 15px !important;
        line-height: 1.62 !important;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .infrastructure-systemes-challenges__item > .kt-inside-inner-col {
        transition: none !important;
    }

    .infrastructure-systemes-challenges__item:hover > .kt-inside-inner-col {
        transform: none !important;
    }
}

/* ========================================================================== 
   FIN MOD-02 — VOS ENJEUX
   ========================================================================== */
/* ==========================================================================
   MOD-03 — NOS SOLUTIONS
   Version : 1.0.0
   ========================================================================== */

/*
Structure WordPress attendue :

Rangée .infrastructure-systemes-solutions

└── Section .infrastructure-systemes-solutions__container
    ├── P  .infrastructure-systemes-solutions__eyebrow
    ├── H2 .infrastructure-systemes-solutions__title
    ├── P  .infrastructure-systemes-solutions__intro
    └── Rangée Kadence 2 colonnes .infrastructure-systemes-solutions__grid
        ├── Section .infrastructure-systemes-solutions__column
        │   ├── Groupe .infrastructure-systemes-solutions__item
        │   │   ├── Icône .infrastructure-systemes-solutions__icon
        │   │   ├── H3 .infrastructure-systemes-solutions__item-title
        │   │   └── P  .infrastructure-systemes-solutions__item-text
        │   └── Groupe .infrastructure-systemes-solutions__item
        └── Section .infrastructure-systemes-solutions__column
            ├── Groupe .infrastructure-systemes-solutions__item
            └── Groupe .infrastructure-systemes-solutions__item
*/

/* --------------------------------------------------------------------------
   SECTION
   -------------------------------------------------------------------------- */

.infrastructure-systemes-solutions {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 !important;
    padding: 92px 0 98px !important;
    background: #FFFFFF !important;
}

.infrastructure-systemes-solutions::before {
    content: "";
    position: absolute;
    pointer-events: none;
    top: -280px;
    right: -250px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,198,216,.08) 0%, rgba(22,198,216,0) 70%);
}

.infrastructure-systemes-solutions > .kt-row-column-wrap,
.infrastructure-systemes-solutions > .kb-row-layout-wrap > .kt-row-column-wrap {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), var(--ing-container)) !important;
    margin-inline: auto !important;
    padding: 0 !important;
}

.infrastructure-systemes-solutions__container,
.infrastructure-systemes-solutions__container > .kt-inside-inner-col {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* --------------------------------------------------------------------------
   EN-TÊTE
   -------------------------------------------------------------------------- */

.infrastructure-systemes-solutions__eyebrow,
.infrastructure-systemes-solutions__eyebrow p,
.infrastructure-systemes-solutions__eyebrow .kt-adv-heading,
.infrastructure-systemes-solutions__eyebrow .wp-block-kadence-advancedheading {
    width: 100% !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    color: #02246A !important;
    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    text-align: center !important;
}

.infrastructure-systemes-solutions__title,
.infrastructure-systemes-solutions__title h2,
.infrastructure-systemes-solutions__title .kt-adv-heading,
.infrastructure-systemes-solutions__title .wp-block-kadence-advancedheading {
    width: 100% !important;
    max-width: 940px !important;
    margin: 0 auto 18px !important;
    padding: 0 !important;
    color: var(--ing-color-title) !important;
    font-family: Manrope, sans-serif !important;
    font-size: clamp(36px, 3vw, 48px) !important;
    font-weight: 750 !important;
    line-height: 1.10 !important;
    letter-spacing: -.03em !important;
    text-wrap: balance;
    text-align: center !important;
}

.infrastructure-systemes-solutions__intro,
.infrastructure-systemes-solutions__intro p,
.infrastructure-systemes-solutions__intro .kt-adv-heading,
.infrastructure-systemes-solutions__intro .wp-block-kadence-advancedheading {
    width: 100% !important;
    max-width: 820px !important;
    margin: 0 auto 46px !important;
    padding: 0 !important;
    color: var(--ing-color-text) !important;
    font-family: Manrope, sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.68 !important;
    text-align: center !important;
}

/* --------------------------------------------------------------------------
   GRILLE
   -------------------------------------------------------------------------- */

.infrastructure-systemes-solutions__grid {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.infrastructure-systemes-solutions__grid > .kt-row-column-wrap,
.infrastructure-systemes-solutions__grid > .kb-row-layout-wrap > .kt-row-column-wrap {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 22px !important;
}

.infrastructure-systemes-solutions__column,
.infrastructure-systemes-solutions__column > .kt-inside-inner-col {
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.infrastructure-systemes-solutions__column > .kt-inside-inner-col {
    display: flex !important;
    flex-direction: column !important;
    gap: 22px !important;
}

/* --------------------------------------------------------------------------
   BLOCS SOLUTION
   -------------------------------------------------------------------------- */

.infrastructure-systemes-solutions__item {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.infrastructure-systemes-solutions__item > .kt-inside-inner-col {
    position: relative;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 250px !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 28px 28px 27px !important;
    overflow: hidden !important;
    border: 1px solid rgba(2,36,106,.11) !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFCFF 100%) !important;
    box-shadow: 0 16px 34px -30px rgba(2,36,106,.28) !important;
    text-align: left !important;
    transition:
        transform var(--ing-transition),
        border-color var(--ing-transition),
        box-shadow var(--ing-transition);
}

.infrastructure-systemes-solutions__item > .kt-inside-inner-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #02246A 0%, #16C6D8 100%);
}

.infrastructure-systemes-solutions__item:hover > .kt-inside-inner-col {
    transform: translateY(-3px);
    border-color: rgba(2,36,106,.22) !important;
    box-shadow: 0 22px 42px -30px rgba(2,36,106,.38) !important;
}

/* --------------------------------------------------------------------------
   ICÔNE
   -------------------------------------------------------------------------- */

.infrastructure-systemes-solutions__icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    width: 46px !important;
    height: 46px !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    border: 1px solid rgba(2,36,106,.13) !important;
    border-radius: 12px !important;
    background: rgba(2,36,106,.055) !important;
    color: #02246A !important;
}

.infrastructure-systemes-solutions__icon svg {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    fill: none;
    stroke: currentColor !important;
}

.infrastructure-systemes-solutions__icon i {
    color: #02246A !important;
    font-size: 22px !important;
    line-height: 1 !important;
}

/* --------------------------------------------------------------------------
   TITRES & TEXTES
   -------------------------------------------------------------------------- */

.infrastructure-systemes-solutions__item-title,
.infrastructure-systemes-solutions__item-title h3,
.infrastructure-systemes-solutions__item-title .kt-adv-heading,
.infrastructure-systemes-solutions__item-title .wp-block-kadence-advancedheading {
    width: 100% !important;
    margin: 0 0 11px !important;
    padding: 0 !important;
    color: var(--ing-color-title) !important;
    font-family: Manrope, sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.28 !important;
    letter-spacing: -.018em !important;
    text-align: left !important;
}

.infrastructure-systemes-solutions__item-text,
.infrastructure-systemes-solutions__item-text p,
.infrastructure-systemes-solutions__item-text .kt-adv-heading,
.infrastructure-systemes-solutions__item-text .wp-block-kadence-advancedheading {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #53647B !important;
    font-family: Manrope, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    text-align: left !important;
}

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

@media screen and (max-width: 1024px) {
    .infrastructure-systemes-solutions {
        padding: 72px 0 78px !important;
    }

    .infrastructure-systemes-solutions > .kt-row-column-wrap,
    .infrastructure-systemes-solutions > .kb-row-layout-wrap > .kt-row-column-wrap {
        width: min(calc(100% - 40px), var(--ing-container)) !important;
    }

    .infrastructure-systemes-solutions__title,
    .infrastructure-systemes-solutions__title h2 {
        font-size: clamp(34px, 4.8vw, 44px) !important;
    }

    .infrastructure-systemes-solutions__intro,
    .infrastructure-systemes-solutions__intro p {
        margin-bottom: 38px !important;
        font-size: 16px !important;
    }

    .infrastructure-systemes-solutions__grid > .kt-row-column-wrap,
    .infrastructure-systemes-solutions__grid > .kb-row-layout-wrap > .kt-row-column-wrap {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .infrastructure-systemes-solutions__column > .kt-inside-inner-col {
        gap: 18px !important;
    }

    .infrastructure-systemes-solutions__item > .kt-inside-inner-col {
        min-height: 0 !important;
        padding: 26px !important;
    }
}

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

@media screen and (max-width: 767px) {
    .infrastructure-systemes-solutions {
        padding: 56px 0 62px !important;
    }

    .infrastructure-systemes-solutions > .kt-row-column-wrap,
    .infrastructure-systemes-solutions > .kb-row-layout-wrap > .kt-row-column-wrap {
        width: min(calc(100% - 32px), var(--ing-container)) !important;
    }

    .infrastructure-systemes-solutions__eyebrow,
    .infrastructure-systemes-solutions__eyebrow p {
        font-size: 12px !important;
    }

    .infrastructure-systemes-solutions__title,
    .infrastructure-systemes-solutions__title h2,
    .infrastructure-systemes-solutions__title .kt-adv-heading,
    .infrastructure-systemes-solutions__title .wp-block-kadence-advancedheading {
        margin-bottom: 18px !important;
        font-size: 32px !important;
        line-height: 1.12 !important;
    }

    .infrastructure-systemes-solutions__intro,
    .infrastructure-systemes-solutions__intro p {
        margin-bottom: 30px !important;
        font-size: 15px !important;
        line-height: 1.62 !important;
    }

    .infrastructure-systemes-solutions__item > .kt-inside-inner-col {
        padding: 23px 21px 22px !important;
        border-radius: 14px !important;
    }

    .infrastructure-systemes-solutions__icon {
        width: 42px !important;
        height: 42px !important;
        margin-bottom: 17px !important;
        border-radius: 11px !important;
    }

    .infrastructure-systemes-solutions__icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    .infrastructure-systemes-solutions__item-title,
    .infrastructure-systemes-solutions__item-title h3,
    .infrastructure-systemes-solutions__item-title .kt-adv-heading,
    .infrastructure-systemes-solutions__item-title .wp-block-kadence-advancedheading {
        font-size: 19px !important;
    }

    .infrastructure-systemes-solutions__item-text,
    .infrastructure-systemes-solutions__item-text p {
        font-size: 15px !important;
        line-height: 1.62 !important;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .infrastructure-systemes-solutions__item > .kt-inside-inner-col {
        transition: none !important;
    }

    .infrastructure-systemes-solutions__item:hover > .kt-inside-inner-col {
        transform: none !important;
    }
}

/* ==========================================================================
   FIN MOD-03 — NOS SOLUTIONS
   ========================================================================== */
/* ==========================================================================
   MOD-04 — NOTRE APPROCHE
   Version : 1.0.0
   ========================================================================== */

/*
Structure WordPress attendue :

Rangée .infrastructure-systemes-method

└── Section .infrastructure-systemes-method__container
    ├── P  .infrastructure-systemes-method__eyebrow
    ├── H2 .infrastructure-systemes-method__title
    ├── P  .infrastructure-systemes-method__intro
    └── Rangée Kadence 4 colonnes .infrastructure-systemes-method__steps
        ├── Section .infrastructure-systemes-method__column
        │   └── Groupe .infrastructure-systemes-method__step .infrastructure-systemes-method__step--01
        │       ├── H3 .infrastructure-systemes-method__step-title
        │       └── P  .infrastructure-systemes-method__step-text
        ├── Section .infrastructure-systemes-method__column
        │   └── Groupe .infrastructure-systemes-method__step .infrastructure-systemes-method__step--02
        ├── Section .infrastructure-systemes-method__column
        │   └── Groupe .infrastructure-systemes-method__step .infrastructure-systemes-method__step--03
        └── Section .infrastructure-systemes-method__column
            └── Groupe .infrastructure-systemes-method__step .infrastructure-systemes-method__step--04
*/

/* --------------------------------------------------------------------------
   SECTION
   -------------------------------------------------------------------------- */

.infrastructure-systemes-method {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 !important;
    padding: 90px 0 94px !important;
    background:
        linear-gradient(
            180deg,
            #F7FAFE 0%,
            #F2F7FC 100%
        ) !important;
}

.infrastructure-systemes-method > .kt-row-column-wrap,
.infrastructure-systemes-method > .kb-row-layout-wrap > .kt-row-column-wrap {
    width: min(calc(100% - 48px), var(--ing-container)) !important;
    margin-inline: auto !important;
    padding: 0 !important;
}

.infrastructure-systemes-method__container,
.infrastructure-systemes-method__container > .kt-inside-inner-col {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* --------------------------------------------------------------------------
   EN-TÊTE
   -------------------------------------------------------------------------- */

.infrastructure-systemes-method__eyebrow,
.infrastructure-systemes-method__eyebrow p,
.infrastructure-systemes-method__eyebrow .kt-adv-heading,
.infrastructure-systemes-method__eyebrow .wp-block-kadence-advancedheading {
    width: 100% !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    color: #02246A !important;
    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    text-align: center !important;
}

.infrastructure-systemes-method__title,
.infrastructure-systemes-method__title h2,
.infrastructure-systemes-method__title .kt-adv-heading,
.infrastructure-systemes-method__title .wp-block-kadence-advancedheading {
    width: 100% !important;
    max-width: 880px !important;
    margin: 0 auto 18px !important;
    padding: 0 !important;
    color: var(--ing-color-title) !important;
    font-family: Manrope, sans-serif !important;
    font-size: clamp(36px, 3vw, 48px) !important;
    font-weight: 750 !important;
    line-height: 1.10 !important;
    letter-spacing: -.03em !important;
    text-wrap: balance;
    text-align: center !important;
}

.infrastructure-systemes-method__intro,
.infrastructure-systemes-method__intro p,
.infrastructure-systemes-method__intro .kt-adv-heading,
.infrastructure-systemes-method__intro .wp-block-kadence-advancedheading {
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto 48px !important;
    padding: 0 !important;
    color: var(--ing-color-text) !important;
    font-family: Manrope, sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.68 !important;
    text-align: center !important;
}

/* --------------------------------------------------------------------------
   ÉTAPES
   -------------------------------------------------------------------------- */

.infrastructure-systemes-method__steps {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.infrastructure-systemes-method__steps > .kt-row-column-wrap,
.infrastructure-systemes-method__steps > .kb-row-layout-wrap > .kt-row-column-wrap {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 22px !important;
}

.infrastructure-systemes-method__column,
.infrastructure-systemes-method__column > .kt-inside-inner-col {
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.infrastructure-systemes-method__step {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.infrastructure-systemes-method__step > .kt-inside-inner-col {
    position: relative;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    min-height: 220px !important;
    margin: 0 !important;
    padding: 28px 24px 26px !important;
    border-top: 1px solid rgba(2,36,106,.14) !important;
    background: transparent !important;
    text-align: left !important;
}

.infrastructure-systemes-method__step > .kt-inside-inner-col::before {
    display: block !important;
    margin: 0 0 20px !important;
    color: #02246A !important;
    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: .07em !important;
}

.infrastructure-systemes-method__step--01 > .kt-inside-inner-col::before {
    content: "01";
}

.infrastructure-systemes-method__step--02 > .kt-inside-inner-col::before {
    content: "02";
}

.infrastructure-systemes-method__step--03 > .kt-inside-inner-col::before {
    content: "03";
}

.infrastructure-systemes-method__step--04 > .kt-inside-inner-col::before {
    content: "04";
}

.infrastructure-systemes-method__step > .kt-inside-inner-col::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 46px;
    height: 2px;
    background: linear-gradient(90deg, #02246A 0%, #16C6D8 100%);
}

/* --------------------------------------------------------------------------
   TITRES & TEXTES
   -------------------------------------------------------------------------- */

.infrastructure-systemes-method__step-title,
.infrastructure-systemes-method__step-title h3,
.infrastructure-systemes-method__step-title .kt-adv-heading,
.infrastructure-systemes-method__step-title .wp-block-kadence-advancedheading {
    width: 100% !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
    color: var(--ing-color-title) !important;
    font-family: Manrope, sans-serif !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    line-height: 1.28 !important;
    letter-spacing: -.018em !important;
    text-align: left !important;
}

.infrastructure-systemes-method__step-text,
.infrastructure-systemes-method__step-text p,
.infrastructure-systemes-method__step-text .kt-adv-heading,
.infrastructure-systemes-method__step-text .wp-block-kadence-advancedheading {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #53647B !important;
    font-family: Manrope, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.64 !important;
    text-align: left !important;
}

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

@media screen and (max-width: 1024px) {

    .infrastructure-systemes-method {
        padding: 72px 0 78px !important;
    }

    .infrastructure-systemes-method > .kt-row-column-wrap,
    .infrastructure-systemes-method > .kb-row-layout-wrap > .kt-row-column-wrap {
        width: min(calc(100% - 40px), var(--ing-container)) !important;
    }

    .infrastructure-systemes-method__title,
    .infrastructure-systemes-method__title h2 {
        font-size: clamp(34px, 4.8vw, 44px) !important;
    }

    .infrastructure-systemes-method__intro,
    .infrastructure-systemes-method__intro p {
        margin-bottom: 38px !important;
        font-size: 16px !important;
    }

    .infrastructure-systemes-method__steps > .kt-row-column-wrap,
    .infrastructure-systemes-method__steps > .kb-row-layout-wrap > .kt-row-column-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px 20px !important;
    }

    .infrastructure-systemes-method__step > .kt-inside-inner-col {
        min-height: 0 !important;
        padding: 24px 20px 24px !important;
    }
}

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

@media screen and (max-width: 767px) {

    .infrastructure-systemes-method {
        padding: 56px 0 62px !important;
    }

    .infrastructure-systemes-method > .kt-row-column-wrap,
    .infrastructure-systemes-method > .kb-row-layout-wrap > .kt-row-column-wrap {
        width: min(calc(100% - 32px), var(--ing-container)) !important;
    }

    .infrastructure-systemes-method__eyebrow,
    .infrastructure-systemes-method__eyebrow p {
        font-size: 12px !important;
    }

    .infrastructure-systemes-method__title,
    .infrastructure-systemes-method__title h2,
    .infrastructure-systemes-method__title .kt-adv-heading,
    .infrastructure-systemes-method__title .wp-block-kadence-advancedheading {
        margin-bottom: 18px !important;
        font-size: 32px !important;
        line-height: 1.12 !important;
    }

    .infrastructure-systemes-method__intro,
    .infrastructure-systemes-method__intro p {
        margin-bottom: 28px !important;
        font-size: 15px !important;
        line-height: 1.62 !important;
    }

    .infrastructure-systemes-method__steps > .kt-row-column-wrap,
    .infrastructure-systemes-method__steps > .kb-row-layout-wrap > .kt-row-column-wrap {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .infrastructure-systemes-method__step > .kt-inside-inner-col {
        padding: 24px 0 26px !important;
        border-top-color: rgba(2,36,106,.12) !important;
    }

    .infrastructure-systemes-method__step-title,
    .infrastructure-systemes-method__step-title h3,
    .infrastructure-systemes-method__step-title .kt-adv-heading,
    .infrastructure-systemes-method__step-title .wp-block-kadence-advancedheading {
        font-size: 20px !important;
    }

    .infrastructure-systemes-method__step-text,
    .infrastructure-systemes-method__step-text p {
        font-size: 15px !important;
        line-height: 1.62 !important;
    }
}

/* ==========================================================================
   FIN MOD-04 — NOTRE APPROCHE
   ========================================================================== */
/* ==========================================================================
   MOD-05 — CTA FINAL
   Version : 1.0.0
   ========================================================================== */

/*
Structure WordPress attendue :

Rangée .infrastructure-systemes-cta

└── Section .infrastructure-systemes-cta__container
    ├── P  .infrastructure-systemes-cta__eyebrow
    ├── H2 .infrastructure-systemes-cta__title
    ├── P  .infrastructure-systemes-cta__text
    └── Boutons avancés .infrastructure-systemes-cta__actions
*/

/* --------------------------------------------------------------------------
   SECTION
   -------------------------------------------------------------------------- */

.infrastructure-systemes-cta {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 !important;
    padding: 88px 0 92px !important;
    background:
        radial-gradient(circle at 18% 22%, rgba(22,198,216,.18) 0%, rgba(22,198,216,0) 34%),
        radial-gradient(circle at 84% 78%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 36%),
        linear-gradient(135deg, #021A4D 0%, #02246A 52%, #0A3A8A 100%) !important;
}

.infrastructure-systemes-cta::before {
    content: "";
    position: absolute;
    pointer-events: none;
    top: -220px;
    right: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,198,216,.16) 0%, rgba(22,198,216,0) 70%);
}

.infrastructure-systemes-cta > .kt-row-column-wrap,
.infrastructure-systemes-cta > .kb-row-layout-wrap > .kt-row-column-wrap {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), var(--ing-container)) !important;
    margin-inline: auto !important;
    padding: 0 !important;
}

.infrastructure-systemes-cta__container,
.infrastructure-systemes-cta__container > .kt-inside-inner-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHIE
   -------------------------------------------------------------------------- */

.infrastructure-systemes-cta__eyebrow,
.infrastructure-systemes-cta__eyebrow p,
.infrastructure-systemes-cta__eyebrow .kt-adv-heading,
.infrastructure-systemes-cta__eyebrow .wp-block-kadence-advancedheading {
    width: 100% !important;
    margin: 0 0 15px !important;
    padding: 0 !important;
    color: #8CEAF3 !important;
    font-family: Manrope, sans-serif !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    letter-spacing: .065em !important;
    text-transform: uppercase !important;
    text-align: center !important;
}

.infrastructure-systemes-cta__title,
.infrastructure-systemes-cta__title h2,
.infrastructure-systemes-cta__title .kt-adv-heading,
.infrastructure-systemes-cta__title .wp-block-kadence-advancedheading {
    width: 100% !important;
    max-width: 940px !important;
    margin: 0 auto 20px !important;
    padding: 0 !important;
    color: #FFFFFF !important;
    font-family: Manrope, sans-serif !important;
    font-size: clamp(38px, 3.3vw, 52px) !important;
    font-weight: 750 !important;
    line-height: 1.10 !important;
    letter-spacing: -.03em !important;
    text-wrap: balance;
    text-align: center !important;
}

.infrastructure-systemes-cta__text,
.infrastructure-systemes-cta__text p,
.infrastructure-systemes-cta__text .kt-adv-heading,
.infrastructure-systemes-cta__text .wp-block-kadence-advancedheading {
    width: 100% !important;
    max-width: 760px !important;
    margin: 0 auto 30px !important;
    padding: 0 !important;
    color: rgba(255,255,255,.84) !important;
    font-family: Manrope, sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.66 !important;
    text-align: center !important;
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.infrastructure-systemes-cta__actions,
.infrastructure-systemes-cta__actions .kb-buttons-wrap,
.infrastructure-systemes-cta__actions .wp-block-kadence-advancedbtn {
    display: flex !important;
    justify-content: center !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.infrastructure-systemes-cta__actions .kb-button,
.infrastructure-systemes-cta__actions.kb-button,
.infrastructure-systemes-cta__actions .wp-block-button__link {
    min-height: 50px !important;
    padding: 13px 26px !important;
    border: 1px solid #16C6D8 !important;
    border-radius: 8px !important;
    background: #16C6D8 !important;
    color: #021A4D !important;
    font-family: Manrope, sans-serif !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    box-shadow: 0 16px 28px -16px rgba(0,0,0,.42) !important;
    transition:
        transform var(--ing-transition),
        background-color var(--ing-transition),
        border-color var(--ing-transition),
        box-shadow var(--ing-transition);
}

.infrastructure-systemes-cta__actions .kb-button:hover,
.infrastructure-systemes-cta__actions.kb-button:hover,
.infrastructure-systemes-cta__actions .wp-block-button__link:hover {
    transform: translateY(-2px);
    border-color: #8CEAF3 !important;
    background: #8CEAF3 !important;
    color: #021A4D !important;
    box-shadow: 0 20px 32px -16px rgba(0,0,0,.48) !important;
}

.infrastructure-systemes-cta__actions .kb-button:focus-visible,
.infrastructure-systemes-cta__actions.kb-button:focus-visible,
.infrastructure-systemes-cta__actions .wp-block-button__link:focus-visible {
    outline: 3px solid rgba(140,234,243,.72) !important;
    outline-offset: 3px !important;
}

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

@media screen and (max-width: 1024px) {
    .infrastructure-systemes-cta {
        padding: 74px 0 78px !important;
    }

    .infrastructure-systemes-cta > .kt-row-column-wrap,
    .infrastructure-systemes-cta > .kb-row-layout-wrap > .kt-row-column-wrap {
        width: min(calc(100% - 40px), var(--ing-container)) !important;
    }

    .infrastructure-systemes-cta__title,
    .infrastructure-systemes-cta__title h2 {
        font-size: clamp(36px, 5vw, 48px) !important;
    }

    .infrastructure-systemes-cta__text,
    .infrastructure-systemes-cta__text p {
        font-size: 17px !important;
    }
}

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

@media screen and (max-width: 767px) {
    .infrastructure-systemes-cta {
        padding: 58px 0 62px !important;
    }

    .infrastructure-systemes-cta > .kt-row-column-wrap,
    .infrastructure-systemes-cta > .kb-row-layout-wrap > .kt-row-column-wrap {
        width: min(calc(100% - 32px), var(--ing-container)) !important;
    }

    .infrastructure-systemes-cta__eyebrow,
    .infrastructure-systemes-cta__eyebrow p {
        font-size: 12px !important;
    }

    .infrastructure-systemes-cta__title,
    .infrastructure-systemes-cta__title h2,
    .infrastructure-systemes-cta__title .kt-adv-heading,
    .infrastructure-systemes-cta__title .wp-block-kadence-advancedheading {
        margin-bottom: 18px !important;
        font-size: 32px !important;
        line-height: 1.12 !important;
    }

    .infrastructure-systemes-cta__text,
    .infrastructure-systemes-cta__text p {
        margin-bottom: 26px !important;
        font-size: 16px !important;
        line-height: 1.62 !important;
    }

    .infrastructure-systemes-cta__actions,
    .infrastructure-systemes-cta__actions .kb-buttons-wrap,
    .infrastructure-systemes-cta__actions .wp-block-kadence-advancedbtn {
        width: 100% !important;
    }

    .infrastructure-systemes-cta__actions .kb-button,
    .infrastructure-systemes-cta__actions.kb-button,
    .infrastructure-systemes-cta__actions .wp-block-button__link {
        width: 100% !important;
        max-width: 320px !important;
        min-height: 48px !important;
    }
}

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

@media (prefers-reduced-motion: reduce) {
    .infrastructure-systemes-cta__actions .kb-button,
    .infrastructure-systemes-cta__actions.kb-button,
    .infrastructure-systemes-cta__actions .wp-block-button__link {
        transition: none !important;
    }

    .infrastructure-systemes-cta__actions .kb-button:hover,
    .infrastructure-systemes-cta__actions.kb-button:hover,
    .infrastructure-systemes-cta__actions .wp-block-button__link:hover {
        transform: none !important;
    }
}

/* ==========================================================================
   FIN MOD-05 — CTA FINAL
   ========================================================================== */
/* ==========================================================================
   PATCH 0.5.2 — MOD-03 / ALIGNEMENT 2 × 2 DES SOLUTIONS
   Correctif remplaçant le patch 0.5.1.
   Objectif :
   - conserver la structure Kadence existante ;
   - aligner les deux lignes des deux colonnes ;
   - ne jamais forcer les groupes eux-mêmes en flex ;
   - éviter tout chevauchement avec MOD-04.
   ========================================================================== */

@media screen and (min-width: 1025px) {

    /*
     * Les deux colonnes externes ont déjà la même hauteur grâce à la grille
     * principale. On transforme seulement leur wrapper interne en grille
     * de deux lignes égales.
     */
    .infrastructure-systemes-solutions__column > .kt-inside-inner-col {
        display: grid !important;
        grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
        align-items: stretch !important;

        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        gap: 22px !important;
    }

    /*
     * Les groupes restent des blocs normaux.
     * On neutralise uniquement les hauteurs éventuellement héritées.
     */
    .infrastructure-systemes-solutions__item {
        display: block !important;

        width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    /*
     * La carte visuelle interne occupe toute la cellule de grille.
     */
    .infrastructure-systemes-solutions__item > .kt-inside-inner-col {
        box-sizing: border-box !important;

        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;

        margin: 0 !important;
    }
}

/* ==========================================================================
   FIN PATCH 0.5.2 — MOD-03
   ========================================================================== */
