/* =============================================================================
   Energies K — Styles front
   Stack : Bootstrap 5.3 · Parisine Std · BEM
   Police : "parisine-std", sans-serif — poids 400 et 700 uniquement
   ============================================================================= */

/* font-display:swap pour FontAwesome Pro (chargé via Kit JS) */
@font-face { font-family: "Font Awesome 6 Pro";    font-display: swap; src: local('Font Awesome 6 Pro'); }
@font-face { font-family: "Font Awesome 6 Brands"; font-display: swap; src: local('Font Awesome 6 Brands'); }


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

:root {
    /* Palette */
    --ek-navy:        #1e3a5f;
    --ek-blue:        #1a6dc4;
    --ek-blue-light:  #7fbaf7;
    --ek-white:       #ffffff;
    --ek-light:       #f4f7fc;
    --ek-muted:       rgba(30, 58, 95, 0.55);
    --ek-ligne:       rgba(30, 58, 95, 0.12);

    /* Sémantique */
    --couleur-fond:            var(--ek-white);
    --couleur-fond-alt:        var(--ek-light);
    --couleur-texte:           var(--ek-navy);
    --couleur-texte-muted:     var(--ek-muted);
    --couleur-accent:          var(--ek-blue);
    --couleur-ligne:           var(--ek-ligne);

    /* Typographie */
    --font-principale: "parisine-std", sans-serif;
    --font-titre:      "tilt-warp", sans-serif;

    /* Layout */
    --header-height-desktop: 88px;
    --header-height-mobile:  86px;
    --gouttiere: clamp(20px, 4vw, 64px);

    /* Animation */
    --transition: .22s ease;
}


/* =============================================================================
   BASE / RESET
   ============================================================================= */

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

html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height-desktop);
}

body {
    font-family: var(--font-principale);
    font-weight: 400;
    color: var(--couleur-texte);
    background: var(--couleur-fond);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--header-height-desktop);
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titre);
    font-weight: 400;
    line-height: 1.15;
    margin: 0;
}

p {
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 1199.98px) {
    body {
        padding-top: var(--header-height-mobile);
    }
    html {
        scroll-padding-top: var(--header-height-mobile);
    }
}


/* =============================================================================
   ANIMATIONS
   ============================================================================= */

@keyframes ekFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes ekHeaderReveal {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}


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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--ek-white);
    transition: box-shadow var(--transition);
    animation: ekHeaderReveal .6s cubic-bezier(.22, 1, .36, 1) both;
}

.site-header--scrolled {
    box-shadow: 0 2px 24px rgba(30, 58, 95, 0.10);
}

.site-header__container {
    padding-left: var(--gouttiere);
    padding-right: var(--gouttiere);
}

.site-header__container > .row {
    min-height: var(--header-height-desktop);
}

/* ── Logo ─────────────────────────────────────────────────── */

.site-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header__logo-img {
    height: 46px;
    width: auto;
}

/* Placeholder logo — à supprimer quand le vrai logo arrive */
.site-header__logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 38px;
    border: 2px dashed var(--ek-ligne);
    border-radius: 4px;
    color: var(--ek-muted);
    font-family: var(--font-principale);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    user-select: none;
}

/* ── Navigation desktop ───────────────────────────────────── */

.site-header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.site-header__menu-link {
    display: block;
    padding: 4px 0;
    font-family: var(--font-principale);
    font-size: clamp(.9rem, 1vw, 1rem);
    font-weight: 400;
    color: var(--ek-navy);
    white-space: nowrap;
    transition: color var(--transition);
    position: relative;
}

.site-header__menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--ek-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1);
    border-radius: 2px;
}

.site-header__menu-link:hover,
.site-header__menu-link:focus-visible,
.site-header__menu-link.active {
    color: var(--ek-blue);
}

.site-header__menu-link:hover::after,
.site-header__menu-link:focus-visible::after,
.site-header__menu-link.active::after {
    transform: scaleX(1);
}

.site-header__menu-link:focus-visible {
    outline: 2px solid var(--ek-blue);
    outline-offset: 4px;
    border-radius: 2px;
}

/* ── Séparateurs et item Devis ────────────────────────────── */

.site-header__menu-item {
    position: relative;
    padding: 0 clamp(10px, 1.4vw, 20px);
}

.site-header__menu-item:first-child {
    padding-left: 0;
}

.site-header__menu-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ek-blue);
}

.site-header__menu-item--devis {
    padding-left: clamp(16px, 2vw, 28px);
}

.site-header__menu-item--devis::after {
    display: none;
}

.site-header__menu-item--devis .site-header__menu-link {
    padding: 7px 18px;
    border: 1.5px solid var(--ek-blue);
    border-radius: 100px;
    color: var(--ek-blue);
    font-weight: 700;
    background: transparent;
    transition: background .25s ease, color .25s ease,
                transform .3s cubic-bezier(.22, 1, .36, 1);
}

.site-header__menu-item--devis .site-header__menu-link::after {
    display: none;
}

.site-header__menu-item--devis .site-header__menu-link:hover,
.site-header__menu-item--devis .site-header__menu-link:focus-visible {
    background: var(--ek-blue);
    color: var(--ek-white);
    transform: translateY(-2px);
}

/* ── Bouton CTA desktop ───────────────────────────────────── */

.site-header__button--primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--ek-blue) 0%, #1559a3 100%);
    color: var(--ek-white);
    border: 2px solid transparent;
    border-radius: 100px;
    font-family: var(--font-principale);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1),
                opacity .3s cubic-bezier(.22, 1, .36, 1);
}

.site-header__button--primary:hover {
    color: var(--ek-white);
    transform: translateY(-2px);
    opacity: .88;
}

.site-header__button--primary:focus-visible {
    outline: 2px solid var(--ek-blue);
    outline-offset: 3px;
    border-radius: 100px;
}

.site-header__button--phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: transparent;
    color: var(--ek-navy);
    border: 2px solid var(--ek-blue);
    border-radius: 100px;
    font-family: var(--font-principale);
    font-size: .85rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background .25s ease, color .25s ease,
                transform .3s cubic-bezier(.22, 1, .36, 1);
}

.site-header__button--phone i {
    color: var(--ek-blue);
    transition: color .25s ease;
}

.site-header__button--phone:hover {
    background: var(--ek-blue);
    color: var(--ek-white);
    transform: translateY(-2px);
}

.site-header__button--phone:hover i {
    color: var(--ek-white);
}

.site-header__button--phone:focus-visible {
    outline: 2px solid var(--ek-blue);
    outline-offset: 3px;
    border-radius: 100px;
}

/* ── Actions desktop (téléphone + devis) ─────────────────── */

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ── Burger mobile ────────────────────────────────────────── */

.site-header__burger {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border-radius: 4px;
    transition: opacity var(--transition);
}

.site-header__burger:hover {
    opacity: .7;
}

.site-header__burger:focus-visible {
    outline: 2px solid var(--ek-blue);
    outline-offset: 3px;
}

.site-header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ek-navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ── Navigation mobile ────────────────────────────────────── */

.site-header__mobile {
    background: var(--ek-white);
    border-top: 1px solid var(--ek-ligne);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.08);
}

.site-header__mobile-menu {
    padding: 8px var(--gouttiere) 20px;
    display: flex;
    flex-direction: column;
}

.site-header__mobile-menu li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--ek-ligne);
    font-family: var(--font-principale);
    font-size: 1rem;
    font-weight: 400;
    color: var(--ek-navy);
    transition: color var(--transition), padding-left var(--transition);
}

.site-header__mobile-menu li a:hover {
    color: var(--ek-blue);
    padding-left: 6px;
}

.site-header__mobile-menu li.site-header__menu-item--devis a {
    color: var(--ek-blue);
    font-weight: 700;
    border-bottom-color: var(--ek-blue);
    border-bottom-style: dashed;
}

.site-header__mobile-actions {
    padding-top: 20px;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-header__mobile-actions .site-header__mobile-btn--primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--ek-blue) 0%, #1559a3 100%);
    color: var(--ek-white);
    border-radius: 100px;
    font-family: var(--font-principale);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-bottom: none;
    transition: opacity var(--transition), transform var(--transition);
    width: 100%;
}

.site-header__mobile-actions .site-header__mobile-btn--primary:hover {
    color: var(--ek-white);
    opacity: .88;
    transform: translateY(-1px);
}

.site-header__mobile-actions .site-header__mobile-btn--phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    width: 100%;
    background: transparent;
    color: var(--ek-navy);
    border: 2px solid var(--ek-blue);
    border-radius: 100px;
    font-family: var(--font-principale);
    font-size: .9rem;
    font-weight: 700;
    border-bottom: 2px solid var(--ek-blue);
    transition: background var(--transition), color var(--transition);
}

.site-header__mobile-actions .site-header__mobile-btn--phone i {
    color: var(--ek-blue);
    transition: color var(--transition);
}

.site-header__mobile-actions .site-header__mobile-btn--phone:hover {
    background: var(--ek-blue);
    color: var(--ek-white);
}

.site-header__mobile-actions .site-header__mobile-btn--phone:hover i {
    color: var(--ek-white);
}

/* ── Barre de progression scroll ─────────────────────────── */

.site-header__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 0%;
    background: linear-gradient(90deg, var(--ek-blue), var(--ek-blue-light));
    border-radius: 0 2px 2px 0;
    pointer-events: none;
    transition: width .08s linear;
}

/* ── Responsive header ────────────────────────────────────── */

@media (max-width: 1199.98px) {
    .site-header__container > .row {
        min-height: var(--header-height-mobile);
    }
}


/* =============================================================================
   SECTION HÉROS
   ============================================================================= */

.section-heros {
    position: relative;
    min-height: calc(100svh - var(--header-height-desktop));
    display: flex;
    flex-direction: column;
    background: var(--ek-navy);
    overflow: hidden;
}

/* ── Média (image de fond) ────────────────────────────────── */

.section-heros__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.section-heros__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ── Overlay dégradé ──────────────────────────────────────── */

.section-heros__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom right,
        rgba(30, 58, 95, 0.88) 0%,
        rgba(30, 58, 95, 0.55) 45%,
        rgba(30, 58, 95, 0.05) 100%
    );
}

/* ── Container ────────────────────────────────────────────── */

.section-heros__container {
    position: relative;
    z-index: 2;
    flex: 1;
    padding-top: clamp(48px, 8vh, 96px);
    padding-bottom: clamp(80px, 12vh, 140px);
    padding-left: var(--gouttiere);
    padding-right: var(--gouttiere);
}

/* ── Contenu ──────────────────────────────────────────────── */

.section-heros__content {
    color: var(--ek-white);
    background: rgba(15, 30, 55, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: clamp(28px, 4vw, 52px);
}

.section-heros__kicker {
    display: inline-block;
    border-left: 3px solid var(--ek-blue);
    padding-left: 14px;
    font-size: clamp(.75rem, 1vw, .85rem);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: clamp(16px, 2.5vh, 28px);
    animation: ekFadeUp .7s .1s cubic-bezier(.22, 1, .36, 1) both;
}

.section-heros__title {
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ek-white);
    margin-bottom: clamp(20px, 3vh, 36px);
    animation: ekFadeUp .7s .2s cubic-bezier(.22, 1, .36, 1) both;
}

.section-heros__title-accent {
    color: var(--ek-blue-light);
    display: block;
}

.section-heros__text {
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
    margin-bottom: clamp(16px, 2.5vh, 24px);
    animation: ekFadeUp .7s .3s cubic-bezier(.22, 1, .36, 1) both;
}

.section-heros__location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.60);
    margin-bottom: clamp(28px, 4vh, 44px);
    animation: ekFadeUp .7s .35s cubic-bezier(.22, 1, .36, 1) both;
}

/* ── Boutons d'action ─────────────────────────────────────── */

.section-heros__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 50px;
    animation: ekFadeUp .7s .45s cubic-bezier(.22, 1, .36, 1) both;
}

.section-heros__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.section-heros__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 100px;
    font-family: var(--font-principale);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1),
                opacity .3s cubic-bezier(.22, 1, .36, 1),
                border-color .3s cubic-bezier(.22, 1, .36, 1),
                color .3s cubic-bezier(.22, 1, .36, 1);
}

.section-heros__button:focus-visible {
    outline: 2px solid var(--ek-white);
    outline-offset: 3px;
}

.section-heros__button--primary {
    background: linear-gradient(135deg, var(--ek-blue) 0%, #1559a3 100%);
    color: var(--ek-white);
    border-color: transparent;
}

.section-heros__button--primary:hover {
    color: var(--ek-white);
    transform: translateY(-2px);
    opacity: .88;
}

.section-heros__button--secondary {
    background: transparent;
    color: var(--ek-white);
    border-color: rgba(255, 255, 255, 0.45);
}

.section-heros__button--secondary:hover {
    background: var(--ek-white);
    color: var(--ek-navy);
    border-color: var(--ek-white);
    transform: translateY(-2px);
}

/* ── Badge RGE ────────────────────────────────────────────── */

.section-heros__trust {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.section-heros__trust-logo {
    height: 64px !important;
    width: auto !important;
    max-width: 56px;
    object-fit: contain;
    background: var(--ek-white);
    border-radius: 8px;
    padding: 4px 6px;
    margin-left: 10px;
    display: block;
    flex-shrink: 0;
}

.section-heros__trust-label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.90);
    line-height: 1.5;
}

/* ── Indicateur de scroll ─────────────────────────────────── */

@keyframes ekBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

.section-heros__scroll {
    position: absolute;
    bottom: clamp(24px, 4vh, 40px);
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.60);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    transition: color var(--transition);
    animation: ekFadeUp .7s .6s cubic-bezier(.22, 1, .36, 1) both;
    white-space: nowrap;
}

.section-heros__scroll:hover {
    color: var(--ek-white);
}

.section-heros__scroll i {
    animation: ekBounce 1.8s ease-in-out infinite;
}

/* ── Responsive héros ─────────────────────────────────────── */

@media (max-width: 1199.98px) {
    .section-heros {
        min-height: calc(100svh - var(--header-height-mobile));
    }
}

@media (max-width: 767.98px) {
    .section-heros__button {
        width: 100%;
        justify-content: center;
    }
}


/* =============================================================================
   SECTION ATOUTS
   ============================================================================= */

.section-atouts {
    padding: clamp(64px, 10vh, 112px) 0;
    background: var(--ek-light);
}

.section-atouts__container {
    padding-left: var(--gouttiere);
    padding-right: var(--gouttiere);
}

/* ── Intro ────────────────────────────────────────────────── */

.section-atouts__kicker {
    display: inline-block;
    border-left: 3px solid var(--ek-blue);
    padding-left: 14px;
    font-size: clamp(.75rem, 1vw, .85rem);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ek-muted);
    margin-bottom: clamp(14px, 2vh, 24px);
}

.section-atouts__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    color: var(--ek-navy);
    margin-bottom: clamp(16px, 2.5vh, 28px);
}

.section-atouts__title-accent {
    display: block;
    color: var(--ek-blue);
}

.section-atouts__text {
    font-size: clamp(.95rem, 1.4vw, 1.05rem);
    color: var(--ek-muted);
    line-height: 1.7;
    max-width: 420px;
}

/* ── Grille de cartes ─────────────────────────────────────── */

.section-atouts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(14px, 2vw, 22px);
}

.section-atouts__card {
    background: var(--ek-white);
    border-radius: 14px;
    padding: clamp(20px, 2.5vw, 32px);
    box-shadow: 0 2px 16px rgba(30, 58, 95, 0.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1),
                box-shadow .3s cubic-bezier(.22, 1, .36, 1);
}

.section-atouts__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(30, 58, 95, 0.13);
}

/* ── Icône ────────────────────────────────────────────────── */

.section-atouts__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ek-light);
    color: var(--ek-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ── Icône RGE (logo image) ───────────────────────────────── */

.section-atouts__card-icon--rge {
    background: var(--ek-white);
    border: 1px solid var(--ek-ligne);
    width: auto;
    min-width: 48px;
    padding: 4px 6px;
}

.section-atouts__card-icon--rge img {
    height: 38px;
    width: auto;
    display: block;
}

/* ── Contenu carte ────────────────────────────────────────── */

.section-atouts__card-titre {
    font-family: var(--font-principale);
    font-size: clamp(.95rem, 1.2vw, 1.05rem);
    font-weight: 700;
    color: var(--ek-navy);
    margin-bottom: 6px;
}

.section-atouts__card-texte {
    font-size: .9rem;
    color: var(--ek-muted);
    line-height: 1.6;
}

/* ── Carte CTA ────────────────────────────────────────────── */

.section-atouts__card--cta {
    background: var(--ek-navy);
    box-shadow: 0 4px 24px rgba(30, 58, 95, 0.25);
}

.section-atouts__card--cta:hover {
    box-shadow: 0 12px 36px rgba(30, 58, 95, 0.35);
}

.section-atouts__card--cta .section-atouts__card-icon {
    background: rgba(255, 255, 255, 0.10);
    color: var(--ek-white);
}

.section-atouts__card--cta .section-atouts__card-titre {
    color: var(--ek-white);
}

.section-atouts__card--cta .section-atouts__card-texte {
    color: rgba(255, 255, 255, 0.70);
}

.section-atouts__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ek-blue-light);
    transition: gap .3s cubic-bezier(.22, 1, .36, 1), color .3s ease;
}

.section-atouts__cta:hover {
    color: var(--ek-white);
    gap: 12px;
}


/* ── Responsive atouts ────────────────────────────────────── */

@media (max-width: 767.98px) {
    .section-atouts__grid {
        grid-template-columns: 1fr;
    }

    .section-atouts__text {
        max-width: 100%;
    }
}

/* =============================================================================
   Section : Entreprise
   ============================================================================= */

.section-entreprise {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--ek-navy);
    overflow-x: hidden;
}

/* ── Media ────────────────────────────────────────────────── */

.section-entreprise__media {
    position: relative;
}

.section-entreprise__image--principale {
    border-radius: 16px;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* ── Contenu ────────────────────────────────────────────────── */

.section-entreprise__content {
    padding-left: clamp(0px, 2vw, 20px);
}

.section-entreprise__kicker {
    display: inline-block;
    font-family: var(--font-principale);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ek-blue-light);
    border-left: 3px solid var(--ek-blue-light);
    padding-left: 14px;
    margin-bottom: 18px;
    line-height: 1;
}

.section-entreprise__title {
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
    font-weight: 400;
    color: var(--ek-white);
    line-height: 1.1;
    margin-bottom: 22px;
}

.section-entreprise__title span {
    color: var(--ek-blue-light);
    display: block;
}

.section-entreprise__text {
    font-size: clamp(.93rem, 1.15vw, 1.02rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 520px;
}

/* ── Points forts ───────────────────────────────────────────── */

.section-entreprise__points {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-entreprise__points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-principale);
    font-size: .97rem;
    font-weight: 700;
    color: var(--ek-white);
    line-height: 1.45;
}

.section-entreprise__points li i {
    color: var(--ek-blue-light);
    font-size: 1.05rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Actions ────────────────────────────────────────────────── */

.section-entreprise__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.section-entreprise__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-principale);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .25s ease, opacity .25s ease, background .25s ease,
                color .25s ease, border-color .25s ease;
}

.section-entreprise__button--primary {
    background: linear-gradient(135deg, var(--ek-blue) 0%, #1559a3 100%);
    color: var(--ek-white);
}

.section-entreprise__button--primary:hover {
    opacity: .88;
    transform: translateY(-2px);
    color: var(--ek-white);
}

.section-entreprise__button--secondary {
    background: transparent;
    color: var(--ek-white);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.section-entreprise__button--secondary:hover {
    background: var(--ek-white);
    color: var(--ek-navy);
    border-color: var(--ek-white);
    transform: translateY(-2px);
}

/* ── Responsive entreprise ──────────────────────────────────── */

@media (max-width: 767.98px) {
    .section-entreprise__media {
        margin-bottom: 16px;
    }
    .section-entreprise__content {
        padding-left: 0;
    }
    .section-entreprise__text {
        max-width: 100%;
    }
}

/* =============================================================================
   Section : Services
   ============================================================================= */

.section-services {
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--ek-white);
}

/* ── En-tête ─────────────────────────────────────────────── */

.section-services__kicker {
    display: inline-block;
    font-family: var(--font-principale);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ek-blue);
    border-left: 3px solid var(--ek-blue);
    padding-left: 14px;
    margin-bottom: 16px;
    line-height: 1;
}

.section-services__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--ek-navy);
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-services__title span {
    color: var(--ek-blue);
    display: block;
}

.section-services__text {
    font-size: clamp(.93rem, 1.1vw, 1rem);
    color: #4a5568;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 0;
}

/* ── Cartes ──────────────────────────────────────────────── */

.section-services__card {
    position: relative;
    overflow: hidden;
    background: var(--ek-white);
    border: 1.5px solid #e2e8f4;
    border-radius: 16px;
    padding: clamp(24px, 2.5vw, 36px);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1),
                box-shadow .3s cubic-bezier(.22, 1, .36, 1),
                border-color .3s ease;
}

.section-services__card::after {
    content: '';
    position: absolute;
    bottom: -36px;
    right: -36px;
    width: 230px;
    height: 230px;
    -webkit-mask-image: var(--card-deco);
    mask-image: var(--card-deco);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background: var(--ek-blue);
    opacity: .08;
    pointer-events: none;
}

.section-services__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(30, 58, 95, 0.10);
    border-color: var(--ek-blue);
}

.section-services__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--ek-blue) 0%, #1559a3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ek-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.section-services__card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.section-services__card-title {
    font-family: var(--font-principale);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ek-navy);
    margin: 0;
}

.section-services__card-text {
    font-size: .92rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* ── Carte accent (rénovation globale) ──────────────────── */

.section-services__card--accent {
    background: linear-gradient(135deg, var(--ek-blue) 0%, #0d4fa0 55%, var(--ek-navy) 100%);
    border-color: transparent;
}

.section-services__card--accent::after {
    background: var(--ek-white);
    opacity: .12;
}

.section-services__card--accent:hover {
    border-color: transparent;
    box-shadow: 0 12px 36px rgba(30, 58, 95, 0.25);
}

.section-services__card--accent .section-services__card-icon {
    background: rgba(255, 255, 255, 0.15);
}


.section-services__card--accent .section-services__card-title {
    color: var(--ek-white);
}

.section-services__card--accent .section-services__card-text {
    color: rgba(255, 255, 255, 0.78);
}

/* ── CTA ─────────────────────────────────────────────────── */

.section-services__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--ek-blue) 0%, #1559a3 100%);
    color: var(--ek-white);
    font-family: var(--font-principale);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity .25s ease, transform .25s ease;
}

.section-services__cta:hover {
    opacity: .88;
    transform: translateY(-2px);
    color: var(--ek-white);
}


/* =============================================================================
   Section : Réalisations
   ============================================================================= */

.section-realisations {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--ek-light);
}

.section-realisations__kicker {
    display: inline-block;
    font-family: var(--font-principale);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ek-blue);
    border-left: 3px solid var(--ek-blue);
    padding-left: 14px;
    margin-bottom: 16px;
    line-height: 1;
}

.section-realisations__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--ek-navy);
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-realisations__title span {
    color: var(--ek-blue);
    display: block;
}

.section-realisations__text {
    font-size: clamp(.93rem, 1.1vw, 1rem);
    color: #4a5568;
    line-height: 1.75;
    margin-bottom: 28px;
}

/* ── Image ───────────────────────────────────────────────── */

.section-realisations__image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.section-realisations__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.section-realisations__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--ek-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
}

.section-realisations__zoom:hover {
    background: rgba(255, 255, 255, 0.32);
}

.section-realisations__badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--ek-navy) 0%, var(--ek-blue) 100%);
    color: var(--ek-white);
    border-radius: 8px;
    padding: 10px 16px;
    font-family: var(--font-principale);
    font-weight: 700;
    font-size: .75rem;
    line-height: 1.45;
    letter-spacing: .04em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

/* ── Bouton ──────────────────────────────────────────────── */

.section-realisations__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 100px;
    background: transparent;
    color: var(--ek-navy);
    border: 2px solid var(--ek-navy);
    font-family: var(--font-principale);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.section-realisations__button:hover {
    background: var(--ek-navy);
    color: var(--ek-white);
    transform: translateY(-2px);
}

/* ── Chiffres clés ───────────────────────────────────────── */

.section-realisations__facts {
    height: 100%;
    display: flex;
    align-items: center;
}

.section-realisations__facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    width: 100%;
    background: #d0daea;
    border-radius: 16px;
    overflow: hidden;
}

.section-realisations__fact {
    background: var(--ek-white);
    padding: clamp(24px, 3vw, 40px);
    display: flex;
    flex-direction: column-reverse;
    gap: 6px;
}

.section-realisations__fact dt {
    font-family: var(--font-principale);
    font-size: .8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.section-realisations__fact dd {
    font-family: var(--font-titre);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--ek-navy);
    line-height: 1;
    margin: 0;
}

/* =============================================================================
   Section : Certifications
   ============================================================================= */

.section-certifications {
    padding: clamp(60px, 8vw, 100px) 0;
    background-color: var(--ek-light);
    background-image:
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255,255,255,0.75) 0%, transparent 100%),
        radial-gradient(circle, rgba(26,109,196,0.40) 1px, transparent 1px);
    background-size: auto, 22px 22px;
}

/* ── En-tête ─────────────────────────────────────────────── */

.section-certifications__kicker {
    display: inline-block;
    font-family: var(--font-principale);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ek-blue);
    border-left: 3px solid var(--ek-blue);
    padding-left: 14px;
    margin-bottom: 16px;
    line-height: 1;
}

.section-certifications__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--ek-navy);
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-certifications__title span {
    color: var(--ek-blue);
    display: block;
}

.section-certifications__text {
    font-size: clamp(.93rem, 1.1vw, 1rem);
    color: #4a5568;
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto;
}

/* ── Logos ───────────────────────────────────────────────── */

.section-certifications__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 52px;
}

.section-certifications__logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.section-certifications__logo-card {
    width: 148px;
    height: 148px;
    background: var(--ek-white);
    border-radius: 16px;
    border: 1.5px solid #e2e8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(30, 58, 95, 0.06);
    transition: box-shadow .3s ease, transform .3s ease;
}

.section-certifications__logo-card:hover {
    box-shadow: 0 8px 28px rgba(30, 58, 95, 0.12);
    transform: translateY(-3px);
}

.section-certifications__logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto !important;
    object-fit: contain;
}

.section-certifications__logo-label {
    font-family: var(--font-principale);
    font-size: .8rem;
    font-weight: 700;
    color: var(--ek-navy);
    text-align: center;
    line-height: 1.4;
    max-width: 148px;
}

/* =============================================================================
   Section : Témoignages
   ============================================================================= */

.section-temoignages {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--ek-navy);
    position: relative;
    overflow: visible;
}

/* ── Étoile décorative ───────────────────────────────────── */

.section-temoignages__deco-star {
    position: absolute;
    bottom: -60px;
    right: -120px;
    font-size: 450px;
    color: #f59e0b;
    opacity: .06;
    pointer-events: none;
    line-height: 1;
}

/* ── Kicker avec lignes ──────────────────────────────────── */

.section-temoignages__kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-principale);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ek-blue-light);
    margin-bottom: 20px;
}

.section-temoignages__kicker::before,
.section-temoignages__kicker::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: var(--ek-blue-light);
    flex-shrink: 0;
}

/* ── Titre ───────────────────────────────────────────────── */

.section-temoignages__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--ek-white);
    line-height: 1.1;
    margin-bottom: 0;
}

.section-temoignages__title span {
    color: var(--ek-blue-light);
    display: block;
}

/* ── Badge note Google ───────────────────────────────────── */

.section-temoignages__note {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 36px;
}

.section-temoignages__note-valeur {
    font-family: var(--font-titre);
    font-size: 3.6rem;
    color: #f59e0b;
    line-height: 1;
}

.section-temoignages__note-right {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.section-temoignages__note-etoiles {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 1.05rem;
}

.section-temoignages__note-info {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-principale);
    font-size: .85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
}

/* ── Ceinture défilante ──────────────────────────────────── */

.section-temoignages__belt {
    overflow: hidden;
    margin-top: 48px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.section-temoignages__track {
    display: flex;
    gap: clamp(16px, 2vw, 24px);
    width: fit-content;
    animation: ek-marquee 50s linear infinite;
    padding: 12px 0 24px;
}

@media (hover: hover) {
    .section-temoignages__belt:hover .section-temoignages__track {
        animation-play-state: paused;
    }
}

@keyframes ek-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .section-temoignages__track {
        animation: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    .section-temoignages__track .section-temoignages__card {
        scroll-snap-align: start;
    }
    .section-temoignages__card[aria-hidden="true"] {
        display: none;
    }
}

/* ── Carte ───────────────────────────────────────────────── */

.section-temoignages__card {
    flex: 0 0 clamp(290px, 30vw, 360px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: clamp(20px, 2vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background .3s ease, border-color .3s ease;
}

.section-temoignages__card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.section-temoignages__card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-temoignages__etoiles {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: .88rem;
}

/* ── Guillemets (deux barres verticales) ─────────────────── */

.section-temoignages__quote-mark::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: .75;
    color: var(--ek-blue-light);
    opacity: .25;
}

/* ── Texte du témoignage ─────────────────────────────────── */

.section-temoignages__texte {
    margin: 0;
    flex: 1;
}

.section-temoignages__texte p {
    font-size: .92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.72;
}

/* ── Auteur ──────────────────────────────────────────────── */

.section-temoignages__auteur {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-temoignages__initiales {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ek-blue) 0%, var(--ek-blue-light) 100%);
    color: var(--ek-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-principale);
    font-weight: 700;
    font-size: .78rem;
    flex-shrink: 0;
}

.section-temoignages__auteur-nom {
    font-family: var(--font-principale);
    font-weight: 700;
    font-size: .9rem;
    color: var(--ek-white);
    line-height: 1.3;
}

.section-temoignages__source {
    font-family: var(--font-principale);
    font-size: .78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1;
    margin-top: 2px;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 575.98px) {
    .section-temoignages__note {
        padding: 16px 24px;
    }
}

/* =============================================================================
   Section : Zone d'intervention
   ============================================================================= */

.section-zone {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--ek-light);
    overflow-x: hidden;
}

.section-zone__container {
    padding-inline: clamp(20px, 5vw, 80px);
}

/* ── Kicker ──────────────────────────────────────────────── */

.section-zone__kicker {
    display: inline-block;
    border-left: 3px solid var(--ek-blue);
    padding-left: 14px;
    font-family: var(--font-principale);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ek-muted);
    margin-bottom: 16px;
}

/* ── Titre ───────────────────────────────────────────────── */

.section-zone__title {
    font-family: var(--font-titre);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--ek-navy);
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-zone__title span {
    color: var(--ek-blue);
    display: block;
}

/* ── Texte ───────────────────────────────────────────────── */

.section-zone__text {
    font-family: var(--font-principale);
    font-size: 1rem;
    color: rgba(30, 58, 95, 0.75);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ── Badge rayon ─────────────────────────────────────────── */

.section-zone__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(26, 109, 196, 0.08);
    border: 1px solid rgba(26, 109, 196, 0.20);
    border-radius: 100px;
    padding: 10px 20px;
    margin-bottom: 32px;
    font-family: var(--font-principale);
    font-size: .9rem;
    color: var(--ek-navy);
}

.section-zone__badge i {
    color: var(--ek-blue);
}

/* ── Bouton CTA ──────────────────────────────────────────── */

.section-zone__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ek-blue);
    color: var(--ek-white);
    font-family: var(--font-principale);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 100px;
    transition: background .25s ease, transform .2s ease;
}

.section-zone__cta:hover {
    background: var(--ek-navy);
    color: var(--ek-white);
    transform: translateY(-2px);
}

/* ── Carte Leaflet ───────────────────────────────────────── */

.section-zone__map {
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.14);
    position: relative;
    z-index: 0;
}

/* ── Marker personnalisé ─────────────────────────────────── */

.section-zone__marker-icon {
    background: none !important;
    border: none !important;
}

.section-zone__marker-icon i {
    font-size: 2rem;
    color: var(--ek-blue);
    filter: drop-shadow(0 2px 6px rgba(30, 58, 95, 0.35));
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1199.98px) {
    .section-zone__map {
        height: 380px;
    }
}

@media (max-width: 767.98px) {
    .section-zone__map {
        height: 300px;
        border-radius: 14px;
    }
}


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

.site-footer {
    background: #0d1b30;
    color: rgba(255, 255, 255, 0.80);
    padding: clamp(56px, 8vh, 96px) 0 0;
}

.site-footer__container {
    padding-left: var(--gouttiere);
    padding-right: var(--gouttiere);
    padding-bottom: clamp(48px, 6vh, 72px);
}

/* ── Marque ──────────────────────────────────────────────── */

.site-footer__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.site-footer__logo-img {
    height: 44px;
    width: auto;
}

.site-footer__logo-placeholder {
    font-family: var(--font-titre);
    font-size: 1.5rem;
    color: var(--ek-white);
    letter-spacing: .02em;
}

.site-footer__baseline {
    font-size: .92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
    max-width: 340px;
}

.site-footer__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--ek-blue);
    margin-bottom: 8px;
}

.site-footer__address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-style: normal;
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.55;
}

.site-footer__address i {
    color: var(--ek-blue);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── Titres de colonnes ──────────────────────────────────── */

.site-footer__title {
    font-family: var(--font-principale);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ek-white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* ── Navigation ──────────────────────────────────────────── */

.site-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__menu a {
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

.site-footer__menu a:hover {
    color: var(--ek-white);
    padding-left: 4px;
}

.site-footer__menu--legal {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer__menu--legal a {
    font-size: .82rem;
    color: rgba(255, 255, 255, 0.45);
}

.site-footer__menu--legal a:hover {
    color: rgba(255, 255, 255, 0.80);
}

/* ── Contact ─────────────────────────────────────────────── */

.site-footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer__contact-list li,
.site-footer__contact-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__contact-list a:hover {
    color: var(--ek-white);
}

.site-footer__contact-list i {
    color: var(--ek-blue);
    width: 16px;
    flex-shrink: 0;
    text-align: center;
}

/* ── Réseaux sociaux ─────────────────────────────────────── */

.site-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.70);
    font-size: 1rem;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.site-footer__social-link:hover {
    background: var(--ek-blue);
    color: var(--ek-white);
    transform: translateY(-2px);
}

/* ── Barre de copyright ──────────────────────────────────── */

.site-footer__bottom {
    padding: 20px var(--gouttiere);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer__bottom .row {
    align-items: center;
}

.site-footer__copyright,
.site-footer__credit {
    font-size: .82rem;
    color: rgba(255, 255, 255, 0.40);
    margin: 0;
}

.site-footer__credit {
    text-align: right;
}

.site-footer__credit a {
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__credit a:hover {
    color: var(--ek-white);
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 991.98px) {
    .site-footer__credit {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .site-footer__baseline {
        max-width: 100%;
    }
}


/* =============================================================================
   SECTION DEVIS
   ============================================================================= */

.section-devis {
    background: var(--ek-navy);
    padding: clamp(64px, 10vh, 112px) 0;
    overflow-x: hidden;
}

.section-devis__container {
    padding-left: var(--gouttiere);
    padding-right: var(--gouttiere);
}

/* ── Contenu gauche ──────────────────────────────────────── */

.section-devis__kicker {
    display: inline-block;
    border-left: 3px solid var(--ek-blue);
    padding-left: 14px;
    font-size: clamp(.75rem, 1vw, .85rem);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: clamp(14px, 2vh, 24px);
}

.section-devis__title {
    font-family: var(--font-titre);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    color: var(--ek-white);
    margin-bottom: clamp(16px, 2.5vh, 28px);
}

.section-devis__title span {
    display: block;
    color: var(--ek-blue-light);
}

.section-devis__text {
    font-size: clamp(.9rem, 1.2vw, 1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: clamp(28px, 4vh, 44px);
}

/* ── Promesses ───────────────────────────────────────────── */

.section-devis__promises {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-devis__promise {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--ek-white);
}

.section-devis__promise i {
    color: var(--ek-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ── Carte formulaire ────────────────────────────────────── */

/* ── Grille formulaire ───────────────────────────────────── */

.devis-form__row {
    display: flex;
}

.devis-form__field {
    flex: 1;
    padding: 12px 0;
}

.devis-form__field--sep {
    padding-right: 28px;
}

.devis-form__field:not(.devis-form__field--sep):not(.devis-form__field--full) {
    padding-left: 28px;
}

/* ── Label ───────────────────────────────────────────────── */

.devis-form__label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.60);
    margin-bottom: 10px;
    pointer-events: none;
}

/* ── Champs (input / select / textarea) ──────────────────── */

.devis-form__input {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 0;
    padding: 4px 0 8px;
    font-family: var(--font-principale);
    font-size: .95rem;
    color: var(--ek-white);
    outline: none;
    transition: border-color .2s ease;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.devis-form__input::placeholder {
    color: transparent;
}

.devis-form__input:-webkit-autofill,
.devis-form__input:-webkit-autofill:hover,
.devis-form__input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #1e3a5f inset;
    -webkit-text-fill-color: var(--ek-white);
    caret-color: var(--ek-white);
    transition: background-color 5000s ease-in-out 0s;
}

.devis-form__input:focus {
    border-bottom-color: var(--ek-white);
    box-shadow: none;
    outline: none;
}

.devis-form__field:focus-within .devis-form__label {
    color: var(--ek-white);
}

.devis-form__select-wrap:focus-within .devis-form__select-icon {
    color: var(--ek-white);
}

.devis-form__input option {
    color: var(--ek-navy);
    background: var(--ek-white);
}

.devis-form__input.is-invalid {
    border-bottom-color: #f87171;
}

.devis-form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* ── Select avec chevron ─────────────────────────────────── */

.devis-form__select-wrap {
    position: relative;
}

.devis-form__select-wrap .devis-form__input {
    padding-right: 24px;
    cursor: pointer;
}

.devis-form__select-icon {
    position: absolute;
    right: 2px;
    bottom: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-size: .75rem;
    pointer-events: none;
}


/* =============================================================================
   PAGES ÉDITORIALES (mentions légales, RGPD, etc.)
   ============================================================================= */

.section-page {
    padding: clamp(48px, 8vh, 96px) 0 clamp(64px, 10vh, 112px);
    background: var(--ek-white);
    min-height: calc(100svh - var(--header-height-desktop) - 400px);
}

.section-page__container {
    padding-left: var(--gouttiere);
    padding-right: var(--gouttiere);
}

.section-page__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--ek-blue);
    margin-bottom: clamp(32px, 5vh, 56px);
    padding-bottom: 20px;
    border-bottom: 2px solid var(--ek-light);
}

/* ── Contenu éditorial (HTML brut du CMS) ────────────────── */

.section-page__content {
    color: var(--couleur-texte);
    font-size: 1rem;
    line-height: 1.75;
}

.section-page__content h2 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 400;
    color: var(--ek-blue);
    margin: 2.4em 0 .8em;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ek-light);
}

.section-page__content h3 {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    font-weight: 400;
    color: var(--ek-blue);
    margin: 1.8em 0 .6em;
}

.section-page__content h4 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ek-blue);
    margin: 1.4em 0 .5em;
}

.section-page__content p {
    margin: 0 0 1.2em;
}

.section-page__content ul,
.section-page__content ol {
    margin: 0 0 1.2em;
    padding-left: 1.6em;
}

.section-page__content ul {
    list-style: disc;
}

.section-page__content ol {
    list-style: decimal;
}

.section-page__content li {
    margin-bottom: .4em;
    line-height: 1.65;
}

.section-page__content a {
    color: var(--ek-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.section-page__content a:hover {
    color: var(--ek-navy);
}

.section-page__content strong {
    font-weight: 700;
    color: var(--ek-navy);
}

.section-page__content em {
    font-style: italic;
}

.section-page__content blockquote {
    border-left: 3px solid var(--ek-blue);
    margin: 1.6em 0;
    padding: .8em 1.4em;
    background: var(--ek-light);
    border-radius: 0 8px 8px 0;
    color: var(--ek-navy);
    font-style: italic;
}

.section-page__content hr {
    border: none;
    border-top: 1px solid var(--ek-ligne);
    margin: 2em 0;
}

.section-page__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.6em 0;
    font-size: .9rem;
}

.section-page__content th,
.section-page__content td {
    padding: 10px 14px;
    border: 1px solid var(--ek-ligne);
    text-align: left;
    vertical-align: top;
}

.section-page__content th {
    background: var(--ek-light);
    font-weight: 700;
    color: var(--ek-navy);
}

@media (max-width: 1199.98px) {
    .section-page {
        min-height: calc(100svh - var(--header-height-mobile) - 300px);
    }
}


/* =============================================================================
   ANIMATIONS AU SCROLL (IntersectionObserver)
   ============================================================================= */

/* ── États initiaux ──────────────────────────────────────── */

[data-animate="fade-up"],
[data-animate="fade-right"],
[data-animate="fade-left"],
[data-animate="scale-in"],
[data-animate="fade-in"] {
    opacity: 0;
    transition: opacity .85s cubic-bezier(.22, 1, .36, 1),
                transform .85s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

[data-animate="fade-up"]    { transform: translateY(28px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate="fade-left"]  { transform: translateX(32px); }
[data-animate="scale-in"]   { transform: scale(0.94); }

/* ── Stagger : enfants ───────────────────────────────────── */

[data-animate="stagger"] > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1),
                transform .7s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

/* ── État visible ────────────────────────────────────────── */

[data-animate].is-visible,
[data-animate="stagger"] > *.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Réduction de mouvement ──────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    [data-animate],
    [data-animate="stagger"] > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        will-change: auto !important;
    }
}

/* ── Feedback validation ─────────────────────────────────── */

.devis-form__feedback {
    display: none;
    font-size: .75rem;
    color: #f87171;
    margin-top: 6px;
}

.devis-form__input.is-invalid ~ .devis-form__feedback {
    display: block;
}

/* ── Zone actions (notice + bouton) ──────────────────────── */

.devis-form__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 28px;
    margin-top: 8px;
}

/* ── Message d'erreur global ─────────────────────────────── */

.section-devis__erreur {
    font-size: .85rem;
    color: #f87171;
    padding-top: 8px;
}

/* ── Notice ──────────────────────────────────────────────── */

.section-devis__notice {
    font-size: .78rem;
    color: rgba(255, 255, 255, 0.40);
    margin: 0;
}

/* ── Bouton submit ───────────────────────────────────────── */

.section-devis__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ek-white);
    color: var(--ek-navy);
    font-family: var(--font-principale);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: none;
    padding: 14px 32px;
    border-radius: 100px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.section-devis__submit:hover:not(:disabled) {
    background: var(--ek-blue);
    color: var(--ek-white);
    transform: translateY(-2px);
}

.section-devis__submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

/* ── Message de succès ───────────────────────────────────── */

.section-devis__succes {
    text-align: center;
    padding: clamp(40px, 6vw, 64px) 0;
}

.section-devis__succes-icon {
    font-size: 3.5rem;
    color: #4ade80;
    margin-bottom: 20px;
}

.section-devis__succes-titre {
    font-family: var(--font-titre);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--ek-white);
    margin-bottom: 12px;
}

.section-devis__succes-texte {
    font-size: .95rem;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1199.98px) {
    .section-devis__content {
        max-width: 600px;
    }
}

@media (max-width: 575.98px) {
    .devis-form__row {
        flex-direction: column;
    }

    .devis-form__field--sep {
        padding-right: 0;
    }

    .devis-form__field:not(.devis-form__field--sep):not(.devis-form__field--full) {
        padding-left: 0;
    }

    .section-devis__submit {
        width: 100%;
        justify-content: center;
    }

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