/* ============================================================
   SBC Energy — site.css (CSS partage pages internes + footer)
   VSF Agency 2026
============================================================ */

:root {
    /* Brand palette */
    --teal:           #32A291;
    --teal-dark:      #2A7C70;
    --teal-darker:    #225F58;
    --teal-light:     #67C4B6;
    --teal-pale:      #C9E8E2;
    --blue:           #006DE4;
    --blue-dark:      #0056B4;
    --blue-light:    #1686FF;
    --navy:           #1B3D74;
    --navy-deep:      #0E2447;

    /* Surfaces */
    --white:          #FFFFFF;
    --surface:        #F7F7F8;
    --cream:          #F4EFE6;
    --glacier:        #F0F8F6;
    --mist:           #EAF5F2;

    /* Inks */
    --text-1:         #181819;
    --text-2:         #5E5F66;
    --text-3:         #8D8E94;
    --line:           rgba(24,24,25,0.08);
    --line-strong:    rgba(24,24,25,0.16);

    /* Gradients */
    --grad-teal:      linear-gradient(135deg, #67C4B6 0%, #32A291 50%, #2A7C70 100%);
    --grad-teal-soft: linear-gradient(135deg, rgba(103,196,182,0.10) 0%, rgba(50,162,145,0.06) 100%);
    --grad-tealblue:  linear-gradient(135deg, #32A291 0%, #1686FF 100%);
    --grad-deep:      linear-gradient(135deg, #225F58 0%, #2A7C70 35%, #006DE4 100%);
    --grad-night:     linear-gradient(135deg, #0E2447 0%, #1B3D74 50%, #2A7C70 100%);

    /* Type system */
    --font-head:      'Inter', sans-serif;
    --font-body:      'Open Sans', sans-serif;
    --font-btn:       'Montserrat', sans-serif;
    --font-disp:      'Montserrat', sans-serif;
    --font-serif:     'Fraunces', 'Times New Roman', serif;
    --font-brand:     'Nunito', 'Inter', sans-serif;

    --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
    --ease-soft:      cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-1);
    background: var(--white);
    overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   SHARED — Section primitives
============================================================ */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 4rem; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-btn);
    font-size: 12px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 1.1rem;
}
.eyebrow::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--grad-teal);
    border-radius: 2px;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.section-h2 {
    font-family: var(--font-disp);
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.03em;
    color: var(--text-1);
    margin-bottom: 1.2rem;
}
.section-h2 .accent {
    font-style: italic;
    color: var(--teal);
}
.section-h2 .grad {
    background: var(--grad-tealblue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 560px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-btn);
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 16px 30px;
    font-size: 13.5px;
    border-radius: 50px;
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
    white-space: nowrap;
}
.btn-primary {
    color: white;
    background: var(--grad-teal);
    box-shadow: 0 6px 24px rgba(50,162,145,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(50,162,145,.50); }

.btn-outline {
    color: var(--teal-dark);
    background: transparent;
    border: 1.5px solid rgba(50,162,145,0.35);
}
.btn-outline:hover {
    background: rgba(50,162,145,0.06);
    border-color: var(--teal);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 11px 22px;
    font-size: 12px;
    letter-spacing: .06em;
}

/* btn-mega : gros CTA premium (form contact, CTA bands) */
.btn-mega {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: var(--font-disp);
    font-weight: 800;
    letter-spacing: -.005em;
    font-size: 1.05rem;
    padding: 20px 38px;
    border-radius: 50px;
    color: white;
    background: var(--grad-teal);
    border: none;
    cursor: pointer;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.30) inset,
        0 -1px 0 rgba(0,0,0,0.20) inset,
        0 14px 40px rgba(50,162,145,0.40);
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
}
.btn-mega::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.32) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .8s var(--ease-out);
    pointer-events: none;
}
.btn-mega:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.36) inset,
        0 -1px 0 rgba(0,0,0,0.22) inset,
        0 22px 56px rgba(50,162,145,0.55);
}
.btn-mega:hover::before { transform: translateX(100%); }
.btn-mega > span:not(.arrow) {
    position: relative;
    z-index: 1;
}
.btn-mega .arrow {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: white;
    color: var(--teal-dark);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform .3s var(--ease-out);
    position: relative;
    z-index: 1;
}
.btn-mega .arrow svg { width: 14px; height: 14px; }
.btn-mega:hover .arrow { transform: translateX(4px); }

/* ============================================================
   FLOATING ACTIONS — Scroll-top + WhatsApp CTA (toutes pages)
============================================================ */
.floating-actions {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 95;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-end;
}

/* Scroll to top */
.scroll-top {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(27,61,116,0.12);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), background .25s, color .25s, border-color .25s;
    pointer-events: none;
    padding: 0;
}
.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top:hover {
    background: var(--grad-teal);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}
.scroll-top svg { width: 18px; height: 18px; }

/* WhatsApp CTA flottant */
.wa-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 14px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.42);
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
    font-family: var(--font-btn);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: .02em;
    position: relative;
    text-decoration: none;
}
.wa-cta::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    border: 2px solid #25D366;
    opacity: 0.45;
    animation: waPulse 2.2s var(--ease-soft) infinite;
    pointer-events: none;
}
@keyframes waPulse {
    0%   { transform: scale(0.92); opacity: 0.55; }
    100% { transform: scale(1.18); opacity: 0; }
}
.wa-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(37, 211, 102, 0.55);
    color: white;
}
.wa-cta .wa-ico {
    width: 22px; height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wa-cta .wa-ico svg { width: 22px; height: 22px; fill: currentColor; }

@media (prefers-reduced-motion: reduce) {
    .wa-cta::before { animation: none; }
}

@media (max-width: 640px) {
    .floating-actions {
        bottom: 1rem;
        right: 1rem;
        gap: 0.55rem;
    }
    .scroll-top {
        width: 42px; height: 42px;
    }
    .wa-cta {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .wa-cta .wa-label { display: none; }
}

/* ============================================================
   SITE HEADER — sticky transparent + scrolled (pages internes)
============================================================ */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 90;
    padding: 6px 0;
    background: rgba(255,255,255,0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background .3s var(--ease-out), backdrop-filter .3s var(--ease-out), border-color .3s var(--ease-out), padding .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
#site-header.is-scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom-color: var(--line);
    padding: 4px 0;
    box-shadow: 0 6px 24px rgba(14,36,71,0.06);
}

.site-header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.5rem;
    /* Grid 3 colonnes egales pour CENTRER la nav vraiment au milieu */
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}
.site-header-inner > .site-logo { justify-self: start; }
.site-header-inner > .site-nav  { justify-self: center; }
.site-header-inner > .site-cta  { justify-self: end; }
.site-header-inner > .nav-burger { justify-self: end; }

/* Logo 3D mini */
.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    height: 80px;
    aspect-ratio: 467 / 93;
    width: clamp(290px, 24vw, 410px);
    transition: height .3s var(--ease-out), width .3s var(--ease-out);
}
.site-logo canvas {
    width: 100%; height: 100%;
    display: block;
    filter:
        drop-shadow(0 10px 22px rgba(50,162,145,0.45))
        drop-shadow(0 4px 8px rgba(14,36,71,0.22));
    /* Logo desactive temporairement — espace reserve pour le futur logo client */
    visibility: hidden;
}
#site-header.is-scrolled .site-logo {
    height: 66px;
    width: clamp(245px, 20vw, 340px);
}
.site-logo-fallback {
    font-family: var(--font-disp);
    font-weight: 800;
    font-size: 1.2rem;
    background: var(--grad-tealblue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -.01em;
}

/* Nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}
.site-nav > a,
.site-nav > .nav-services > a {
    font-family: var(--font-btn);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-1);
    padding: 8px 4px;
    position: relative;
    transition: color .2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    line-height: 1;
}
.site-nav > .nav-services > a svg {
    flex-shrink: 0;
    transition: transform .25s var(--ease-out);
}
.site-nav > .nav-services:hover > a svg { transform: rotate(180deg); }
.site-nav > a::after,
.site-nav > .nav-services > a::after {
    content: '';
    position: absolute;
    left: 4px; right: 4px; bottom: 4px;
    height: 2px;
    background: var(--grad-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease-out);
}
.site-nav > a:hover,
.site-nav > a.is-active,
.site-nav > .nav-services > a:hover,
.site-nav > .nav-services.is-active > a {
    color: var(--teal-dark);
}
.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.site-nav > .nav-services:hover > a::after,
.site-nav > .nav-services.is-active > a::after {
    transform: scaleX(1);
}

/* Services dropdown */
.nav-services {
    position: relative;
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 280px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(14,36,71,0.14);
    padding: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease-out), transform .25s var(--ease-out), visibility .25s;
    z-index: 5;
}
.nav-services:hover .nav-dropdown,
.nav-services:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-1);
    border-radius: 9px;
    transition: background .2s, color .2s, padding-left .2s;
}
.nav-dropdown a:hover {
    background: var(--mist);
    color: var(--teal-dark);
    padding-left: 18px;
}
.nav-dropdown a .nd-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    opacity: 0.6;
}

/* CTAs right */
.site-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.site-cta .btn { white-space: nowrap; }
.site-icon-link {
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--text-1);
    background: rgba(50,162,145,0.06);
    border: 1px solid var(--line);
    transition: background .25s, color .25s, transform .25s, border-color .25s;
}
.site-icon-link svg { width: 17px; height: 17px; }
.site-icon-link:hover {
    background: var(--grad-teal);
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
}

/* Mobile burger */
.nav-burger {
    display: none;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(50,162,145,0.06);
    border: 1px solid var(--line);
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: var(--text-1);
}
.nav-burger svg { width: 22px; height: 22px; }

/* Mobile sheet (full-screen) */
.mobile-sheet {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: var(--navy-deep);
    color: white;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform .45s var(--ease-out);
    overflow-y: auto;
}
.mobile-sheet.is-open { transform: translateX(0); }
.mobile-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.mobile-sheet-head .site-logo canvas {
    filter: drop-shadow(0 4px 10px rgba(103,196,182,0.45));
}
.mobile-sheet-close {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    display: inline-flex; align-items: center; justify-content: center;
}
.mobile-sheet-close svg { width: 22px; height: 22px; }

.mobile-sheet-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.mobile-sheet-nav > a,
.mobile-sheet-nav > details > summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1rem 1.1rem;
    font-family: var(--font-disp);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    border-radius: 9px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    list-style: none;
    transition: background .25s, border-color .25s, transform .25s;
}
.mobile-sheet-nav > details > summary::-webkit-details-marker { display: none; }
.mobile-sheet-nav > a:hover,
.mobile-sheet-nav > details > summary:hover {
    background: rgba(103,196,182,0.10);
    border-color: rgba(103,196,182,0.25);
}
.mobile-sheet-nav > a:hover .ms-ico,
.mobile-sheet-nav > details > summary:hover .ms-ico {
    background: var(--grad-teal);
    color: white;
    border-color: transparent;
}
.mobile-sheet-nav details[open] summary .ms-arrow { transform: rotate(180deg); }

.ms-ico {
    flex-shrink: 0;
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 9px;
    color: var(--teal-light);
    transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.ms-ico svg { width: 18px; height: 18px; }
.ms-label {
    flex: 1;
}
.ms-arrow {
    width: 18px; height: 18px;
    color: rgba(255,255,255,0.55);
    flex-shrink: 0;
    transition: transform .3s var(--ease-out), color .25s;
}
.mobile-sheet-nav > a:hover .ms-arrow,
.mobile-sheet-nav > details > summary:hover .ms-arrow {
    color: var(--teal-light);
}

/* Sub menu services (icones plus petits) */
.mobile-sheet-subnav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0.5rem 0.25rem;
    gap: 0.15rem;
}
.mobile-sheet-subnav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.7rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
    border-radius: 7px;
    transition: background .2s, color .2s;
}
.mobile-sheet-subnav a:hover {
    background: rgba(103,196,182,0.10);
    color: var(--teal-light);
}
.ms-sub-ico {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 7px;
    color: rgba(255,255,255,0.72);
    transition: background .2s, color .2s;
}
.ms-sub-ico svg { width: 13px; height: 13px; }
.mobile-sheet-subnav a:hover .ms-sub-ico {
    background: rgba(103,196,182,0.18);
    color: var(--teal-light);
    border-color: rgba(103,196,182,0.30);
}

.mobile-sheet-cta {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.10);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.mobile-sheet-cta .btn { justify-content: center; min-height: 50px; }
.mobile-sheet-cta .btn-outline {
    color: white;
    border-color: rgba(255,255,255,0.30);
    background: rgba(255,255,255,0.04);
}
.mobile-sheet-cta .btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.55);
}
.mobile-sheet-extras {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1rem;
}
.mobile-sheet-extras a {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    transition: background .25s, transform .25s;
}
.mobile-sheet-extras a:hover {
    background: var(--grad-teal);
    border-color: transparent;
    transform: translateY(-1px);
}
.mobile-sheet-extras svg { width: 18px; height: 18px; }

@media (max-width: 980px) {
    .site-nav,
    #site-header .site-cta { display: none; }
    .nav-burger { display: inline-flex; }
    /* Mobile : juste logo (espace) + burger, grid devient 2 cols */
    .site-header-inner {
        padding: 0 1.25rem;
        grid-template-columns: 1fr auto;
    }
    .site-logo { width: 150px; height: 50px; }
}
@media (min-width: 981px) {
    .mobile-sheet { display: none; }
}

/* ============================================================
   PAGE — generic page sections (pages internes)
============================================================ */
body.has-site-header {
    /* Reserve l'espace pour le header sticky (80px logo + 6px*2 padding = 92px) */
    padding-top: 92px;
}
@media (max-width: 980px) {
    body.has-site-header { padding-top: 78px; }
}

.page-hero {
    position: relative;
    padding: 6rem 0 4.5rem;
    background:
        radial-gradient(ellipse 70% 100% at 50% 0%, rgba(103,196,182,0.18), transparent 65%),
        linear-gradient(180deg, var(--glacier) 0%, var(--white) 100%);
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 60%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-pale), transparent);
    transform: translateX(-50%);
}
.page-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}
.page-hero h1 {
    font-family: var(--font-disp);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.025em;
    color: var(--text-1);
    margin-bottom: 1.1rem;
    padding: 0.05em 0.25em 0.18em;
    overflow-wrap: break-word;
}
.page-hero h1 .accent {
    font-style: italic;
    font-weight: 700;
    background: var(--grad-tealblue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Italic depasse legerement a droite et descenders (g, p, y) depassent en bas. */
    padding: 0 0.10em 0.06em 0;
    display: inline-block;
    line-height: 1.18;
}

/* Typewriter (initial word) pour titres pages internes */
.page-hero h1 .typewriter-target {
    display: inline-block;
    min-height: 1em;
    line-height: inherit;
    vertical-align: baseline;
}
.page-hero h1 .typewriter-cursor {
    display: inline-block;
    margin-left: 4px;
    color: var(--teal);
    font-style: normal;
    font-weight: 400;
    -webkit-text-fill-color: var(--teal);
    background: none;
    vertical-align: baseline;
    line-height: 1;
    animation: pageCursorBlink 0.85s steps(2, end) infinite;
}
@keyframes pageCursorBlink {
    0%, 49%   { opacity: 1; }
    50%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .page-hero h1 .typewriter-cursor { animation: none; opacity: 1; }
}
.page-hero p.lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-2);
    max-width: 680px;
    margin: 0 auto;
}

.page-breadcrumbs {
    margin-bottom: 1.5rem;
    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-3);
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}
.page-breadcrumbs a { color: var(--teal-dark); transition: color .2s; }
.page-breadcrumbs a:hover { color: var(--teal); }
.page-breadcrumbs .sep { opacity: 0.5; }

.page-section {
    padding: 5rem 0;
}
.page-section .section-wrap {
    max-width: 1080px;
}
.page-section--narrow .section-wrap { max-width: 760px; }
.page-section--alt { background: var(--surface); }
.page-section--dark {
    background: var(--grad-deep);
    color: white;
}
.page-section--dark .section-h2 { color: white; }
.page-section--dark .section-h2 .accent { color: var(--teal-light); }
.page-section--dark .section-lead { color: rgba(255,255,255,0.78); }

.prose {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-2);
}
.prose p { margin-bottom: 1.4em; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 {
    font-family: var(--font-disp);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-1);
    margin: 2.5em 0 0.8em;
    letter-spacing: -.02em;
}
.prose h3 {
    font-family: var(--font-disp);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 2em 0 0.6em;
}
.prose strong { color: var(--text-1); font-weight: 700; }
.prose ul, .prose ol {
    margin: 0 0 1.4em 1.5em;
}
.prose li { margin-bottom: 0.5em; }
.prose a {
    color: var(--teal-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s;
}
.prose a:hover { color: var(--teal); }

/* ============================================================
   SERVICE PAGES — composants partages
============================================================ */

/* Promesses (4 stats sous le hero) */
.svc-promises {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 3rem auto 0;
    max-width: 1080px;
}
.svc-promise {
    padding: 1.75rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    text-align: center;
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.svc-promise:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(50,162,145,0.10);
}
.svc-promise-icon {
    width: 46px; height: 46px;
    margin: 0 auto 1rem;
    background: var(--grad-teal-soft);
    border: 1px solid rgba(50,162,145,0.20);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-dark);
}
.svc-promise-icon svg { width: 22px; height: 22px; }
.svc-promise-value {
    font-family: var(--font-disp);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-1);
    line-height: 1.1;
    margin-bottom: 0.2rem;
}
.svc-promise-label {
    font-family: var(--font-btn);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-3);
}

/* Bento de prestations (ce que nous faisons) */
.svc-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.svc-card {
    position: relative;
    padding: 2.2rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}
.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(50,162,145,0.12);
    border-color: rgba(50,162,145,0.30);
}
.svc-card-icon {
    width: 56px; height: 56px;
    background: var(--grad-teal);
    border-radius: 11px;
    display: inline-flex; align-items: center; justify-content: center;
    color: white;
    margin-bottom: 1.3rem;
    box-shadow: 0 6px 20px rgba(50,162,145,0.30);
}
.svc-card-icon svg { width: 26px; height: 26px; }
.svc-card h3 {
    font-family: var(--font-disp);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.01em;
    margin-bottom: 0.7rem;
    color: var(--text-1);
}
.svc-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-2);
}

/* Methode (4 etapes) */
.svc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
    position: relative;
}
.svc-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 12.5%; right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-pale), var(--teal-pale), transparent);
    z-index: 0;
}
.svc-step {
    position: relative;
    text-align: center;
    z-index: 1;
}
.svc-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--teal);
    color: var(--teal-dark);
    font-family: var(--font-disp);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 24px rgba(50,162,145,0.18);
}
.svc-step h3 {
    font-family: var(--font-disp);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-1);
}
.svc-step p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-2);
    max-width: 220px;
    margin: 0 auto;
}

/* Audience (3 cards : particuliers / pros / collectivites) */
.svc-audience {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.svc-aud-card {
    position: relative;
    padding: 2.5rem 2rem;
    color: white;
    border-radius: 14px;
    overflow: hidden;
    background: var(--grad-night);
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.svc-aud-card:nth-child(2) { background: var(--grad-deep); }
.svc-aud-card:nth-child(3) { background: linear-gradient(135deg, #225F58 0%, #2A7C70 50%, #1B3D74 100%); }
.svc-aud-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 60px rgba(14,36,71,0.30);
}
.svc-aud-icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 11px;
    display: inline-flex; align-items: center; justify-content: center;
    color: white;
    margin-bottom: 1.4rem;
}
.svc-aud-icon svg { width: 22px; height: 22px; }
.svc-aud-card h3 {
    font-family: var(--font-disp);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.svc-aud-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
}

/* Reasons (pourquoi SBC) */
.svc-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}
.svc-reason {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--glacier);
    border: 1px solid var(--line);
    border-radius: 11px;
    transition: background .3s, border-color .3s;
}
.svc-reason:hover {
    background: var(--mist);
    border-color: rgba(50,162,145,0.25);
}
.svc-reason-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-dark);
}
.svc-reason-icon svg { width: 20px; height: 20px; }
.svc-reason h3 {
    font-family: var(--font-disp);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-1);
}
.svc-reason p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-2);
}

/* FAQ accordeon */
.svc-faq {
    max-width: 820px;
    margin: 3rem auto 0;
}
.svc-faq details {
    border-bottom: 1px solid var(--line);
    padding: 1.3rem 0;
}
.svc-faq details:first-child { border-top: 1px solid var(--line); }
.svc-faq summary {
    font-family: var(--font-disp);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-1);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-right: 0.5rem;
}
.svc-faq summary::-webkit-details-marker { display: none; }
.svc-faq summary:hover { color: var(--teal-dark); }
.svc-faq summary svg {
    width: 22px; height: 22px;
    flex-shrink: 0;
    color: var(--teal);
    transition: transform .3s var(--ease-out);
}
.svc-faq details[open] summary svg { transform: rotate(180deg); }
.svc-faq details > p,
.svc-faq details > div {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-2);
    padding: 1rem 0 0.25rem;
}

/* CTA band final */
.svc-cta-band {
    margin-top: 4rem;
    padding: 5rem 0;
    background:
        radial-gradient(ellipse 70% 100% at 50% 0%, rgba(103,196,182,0.35), transparent 60%),
        radial-gradient(ellipse 60% 80% at 100% 100%, rgba(0,109,228,0.30), transparent 60%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--teal-darker) 50%, var(--navy) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.svc-cta-band-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}
.svc-cta-band h2 {
    font-family: var(--font-disp);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin-bottom: 1rem;
}
.svc-cta-band h2 .accent {
    font-style: italic;
    color: var(--teal-light);
}
.svc-cta-band p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.svc-cta-band-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.svc-cta-band-actions .btn-outline {
    color: white;
    border-color: rgba(255,255,255,0.30);
    background: rgba(255,255,255,0.04);
}
.svc-cta-band-actions .btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.55);
    color: white;
}

/* Nav croisee : autres services en bas de page */
.svc-cross-nav {
    margin-top: 0;
    padding: 4rem 0 5rem;
    background: var(--surface);
}
.svc-cross-nav .section-wrap { max-width: 1180px; }
.svc-cross-eyebrow {
    text-align: center;
    margin-bottom: 2.5rem;
}
.svc-cross-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}
.svc-cross-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 11px;
    transition: transform .35s, border-color .35s, box-shadow .35s;
}
.svc-cross-card:hover {
    transform: translateY(-3px);
    border-color: rgba(50,162,145,0.30);
    box-shadow: 0 18px 40px rgba(50,162,145,0.10);
}
.svc-cross-icon {
    width: 38px; height: 38px;
    background: var(--mist);
    border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--teal-dark);
    margin-bottom: 0.85rem;
}
.svc-cross-icon svg { width: 18px; height: 18px; }
.svc-cross-card h4 {
    font-family: var(--font-disp);
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.25;
    margin-bottom: 0.3rem;
}
.svc-cross-card span {
    font-size: 0.78rem;
    color: var(--text-3);
}

/* Tag categorie (eyebrow service hero) */
.svc-tag-cat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-btn);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal-dark);
    background: var(--mist);
    border: 1px solid rgba(50,162,145,0.25);
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.svc-tag-cat::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 8px rgba(50,162,145,0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .svc-promises { grid-template-columns: repeat(2, 1fr); }
    .svc-bento { grid-template-columns: repeat(2, 1fr); }
    .svc-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .svc-steps::before { display: none; }
    .svc-audience { grid-template-columns: 1fr; }
    .svc-reasons { grid-template-columns: 1fr; }
    .svc-cross-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .svc-promises { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
    .svc-promise { padding: 1.4rem 1rem; }
    .svc-promise-value { font-size: 1.3rem; }
    .svc-bento { grid-template-columns: 1fr; }
    .svc-steps { grid-template-columns: 1fr; }
    .svc-cross-grid { grid-template-columns: 1fr 1fr; }
    .svc-cta-band { padding: 4rem 0; }
}

/* ============================================================
   CONTACT PAGE — design dedie
============================================================ */
.contact-page-promises {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}
.contact-page-promises .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50px;
    font-family: var(--font-btn);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-2);
}
.contact-page-promises .pill svg { width: 14px; height: 14px; color: var(--teal); }

/* Profile selector — 3 cards radio */
.profile-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 0 auto 3rem;
    max-width: 880px;
}
.profile-option {
    position: relative;
    cursor: pointer;
}
.profile-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.profile-option-inner {
    padding: 1.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: 12px;
    text-align: center;
    transition: border-color .3s var(--ease-out), transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profile-option:hover .profile-option-inner {
    border-color: rgba(50,162,145,0.40);
    transform: translateY(-2px);
}
.profile-option input:checked + .profile-option-inner {
    border-color: var(--teal);
    background: var(--mist);
    box-shadow: 0 18px 40px rgba(50,162,145,0.18);
    transform: translateY(-3px);
}
.profile-option-ico {
    width: 56px; height: 56px;
    margin-bottom: 1rem;
    background: var(--grad-teal-soft);
    border: 1px solid rgba(50,162,145,0.20);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal-dark);
    transition: background .3s, color .3s;
}
.profile-option input:checked + .profile-option-inner .profile-option-ico {
    background: var(--grad-teal);
    color: white;
    border-color: transparent;
}
.profile-option-ico svg { width: 26px; height: 26px; }
.profile-option-inner h3 {
    font-family: var(--font-disp);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 0.35rem;
}
.profile-option-inner p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-2);
}

/* Form area : split form + infos */
.contact-page-split {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Toggle Rapide / Detaille */
.form-toggle {
    display: inline-flex;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 2rem;
    gap: 4px;
}
.form-toggle-btn {
    padding: 9px 22px;
    font-family: var(--font-btn);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-2);
    border-radius: 50px;
    transition: background .25s var(--ease-out), color .25s var(--ease-out);
    cursor: pointer;
    border: none;
    background: transparent;
}
.form-toggle-btn.is-active {
    background: var(--grad-teal);
    color: white;
    box-shadow: 0 4px 14px rgba(50,162,145,0.30);
}

/* Forms (rapide + detaille) */
.contact-page-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 12px 36px rgba(27,61,116,0.06);
}
.contact-page-form > .form-quick,
.contact-page-form > .form-detailed {
    display: none;
}
.contact-page-form > .form-quick.is-visible,
.contact-page-form > .form-detailed.is-visible {
    display: block;
}
.contact-page-form .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contact-page-form label {
    display: block;
    margin-bottom: 1rem;
}
.contact-page-form label > span {
    display: block;
    font-family: var(--font-btn);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 0.4rem;
}
.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: var(--text-1);
    padding: 0.8rem 1rem;
    background: var(--glacier);
    border: 1.5px solid var(--line);
    border-radius: 9px;
    transition: border-color .25s, background .25s, box-shadow .25s;
    -webkit-appearance: none; appearance: none;
}
.contact-page-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235E5F66' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.contact-page-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-body);
}
.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(50,162,145,0.10);
}
.contact-page-form .form-honey {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
}
.contact-page-form .form-submit {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}
.form-msg {
    display: none;
    padding: 1rem 1.2rem;
    border-radius: 9px;
    margin-bottom: 1rem;
    font-size: 0.94rem;
    line-height: 1.55;
}
.form-msg.success {
    background: rgba(50,162,145,0.10);
    border: 1px solid rgba(50,162,145,0.35);
    color: var(--teal-darker);
}
.form-msg.error {
    background: rgba(220,38,38,0.08);
    border: 1px solid rgba(220,38,38,0.30);
    color: #B91C1C;
}
.form-msg.is-visible { display: block; }

/* Infos a droite */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-info-card-v2 {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 11px;
    align-items: flex-start;
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
}
.contact-info-card-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(50,162,145,0.10);
    border-color: rgba(50,162,145,0.25);
}
.contact-info-card-v2 .ico {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--grad-teal);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    box-shadow: 0 6px 16px rgba(50,162,145,0.30);
}
.contact-info-card-v2 .ico svg { width: 20px; height: 20px; }
.contact-info-card-v2 h4 {
    font-family: var(--font-btn);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 0.35rem;
}
.contact-info-card-v2 .meta-value {
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text-1);
}
.contact-info-card-v2 .meta-value a {
    color: var(--teal-dark);
    font-weight: 600;
    transition: color .2s;
}
.contact-info-card-v2 .meta-value a:hover { color: var(--teal); }
.contact-info-card-v2 address { font-style: normal; }

/* Reseaux row */
.contact-socials-row {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.6rem;
}
.contact-socials-row a {
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--text-2);
    transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.contact-socials-row a:hover {
    background: var(--grad-teal);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}
.contact-socials-row svg { width: 18px; height: 18px; }

/* Map embed wrap */
.contact-map {
    margin-top: 4rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(27,61,116,0.10);
    background: var(--mist);
}
.contact-map iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: 0;
    filter: saturate(0.9) contrast(1.02);
}
@media (max-width: 768px) {
    .contact-map iframe { height: 380px; }
}

/* RGPD consent (reutilise pattern home) */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 0.5rem 0 1.2rem;
    cursor: pointer;
    user-select: none;
}
.form-consent input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
    pointer-events: none;
}
.form-consent-mark {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border: 1.5px solid var(--line-strong);
    border-radius: 5px;
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: background .2s, border-color .2s, color .2s;
    margin-top: 1px;
}
.form-consent-mark svg { width: 14px; height: 14px; }
.form-consent input:checked + .form-consent-mark {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}
.form-consent:hover .form-consent-mark { border-color: var(--teal); }
.form-consent-text {
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--text-2);
}
.form-consent-text a {
    color: var(--teal-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color .2s;
}
.form-consent-text a:hover { color: var(--teal); }

@media (max-width: 1024px) {
    .profile-selector { grid-template-columns: 1fr; max-width: 480px; }
    .contact-page-split { grid-template-columns: 1fr; gap: 2rem; }
    .contact-page-form { padding: 2rem; }
    .contact-page-form .row-2 { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 600px) {
    .contact-page-form { padding: 1.5rem; }
    .form-toggle { width: 100%; }
    .form-toggle-btn { flex: 1; padding: 9px 12px; font-size: 0.74rem; }
}

/* ============================================================
   FOOTER (identique a la home)
============================================================ */
#footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.78);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}
#footer::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%;
    width: 40%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal-light), transparent);
    transform: translateX(-50%);
}
.footer-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}
.footer-brand .footer-logo {
    display: inline-block;
    font-family: var(--font-disp);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: white;
    margin-bottom: 1rem;
}
.footer-tagline {
    font-size: 0.94rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.62);
    margin-bottom: 1.5rem;
    max-width: 280px;
}
.footer-social {
    display: flex;
    gap: 0.55rem;
}
.footer-social a {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 5px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.78);
    transition: background .25s, border-color .25s, transform .25s, color .25s;
}
.footer-social a:hover {
    background: var(--grad-teal);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 {
    font-family: var(--font-disp);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.2rem;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.footer-col ul a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.62);
    transition: color .2s, transform .2s;
}
.footer-col ul a:hover {
    color: white;
    transform: translateX(3px);
}
.footer-col ul a:hover .footer-ico {
    background: var(--grad-teal);
    border-color: transparent;
    color: white;
}

/* Mini icone footer (devant chaque lien) */
.footer-ico {
    flex-shrink: 0;
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 7px;
    color: rgba(255,255,255,0.72);
    transition: background .25s, border-color .25s, color .25s;
}
.footer-ico svg { width: 13px; height: 13px; }

/* Colonne contact : structure differente (item par item) */
.footer-col--contact {
    display: flex;
    flex-direction: column;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
}
.footer-contact-item .footer-ico {
    margin-top: 1px;
}
.footer-contact-item address {
    font-style: normal;
    color: rgba(255,255,255,0.62);
}
.footer-contact-item a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    transition: color .2s;
}
.footer-contact-item a:hover { color: var(--teal-light); }

/* Adresse cliquable (toute la card) */
a.footer-contact-item--linkable {
    text-decoration: none;
    color: inherit;
    transition: color .25s;
}
a.footer-contact-item--linkable:hover address {
    color: var(--teal-light);
}
a.footer-contact-item--linkable:hover .footer-ico {
    background: var(--grad-teal);
    border-color: transparent;
    color: white;
}
a.footer-contact-item--cta {
    align-items: center;
}
a.footer-contact-item--cta:hover .footer-contact-meta {
    color: white;
}
.footer-contact-meta {
    font-family: var(--font-btn);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal-light);
}
.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 1.75rem 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-legal-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.footer-legal-left p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.50);
    line-height: 1.6;
    margin-bottom: 0;
}
.footer-legal-left .crafted-by {
    align-self: flex-start;
    margin-top: 0.4rem;
}
.footer-legal-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer-legal-links a {
    color: rgba(255,255,255,0.65);
    transition: color .2s;
}
.footer-legal-links a:hover { color: var(--teal-light); }
.footer-legal-links .sep { color: rgba(255,255,255,0.30); }

/* Signature agence : font League Spartan en MAJUSCULES, discrete */
.crafted-by {
    font-family: 'League Spartan', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 9.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    padding: 6px 0;
    position: relative;
    transition: color .3s var(--ease-out), letter-spacing .3s var(--ease-out);
}
.crafted-by::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 1px;
    background: rgba(255,255,255,0.25);
    vertical-align: middle;
    margin-right: 10px;
    transition: width .3s var(--ease-out), background .3s var(--ease-out);
}
.crafted-by:hover {
    color: var(--teal-light);
    letter-spacing: .22em;
}
.crafted-by:hover::before {
    width: 22px;
    background: var(--teal-light);
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
    .footer-wrap { padding: 0 2.5rem; }
}
@media (max-width: 600px) {
    #footer { padding-top: 3.5rem; }
    .footer-wrap { padding: 0 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; padding-bottom: 2.5rem; }
    .footer-legal { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem 0; }
    .footer-legal-right { text-align: left; max-width: 100%; }
    .crafted-by { font-size: 9px; letter-spacing: .16em; }
    .crafted-by::before { width: 12px; margin-right: 8px; }
}

/* ============================================================
   REVEAL helper (Intersection Observer geres par site.js)
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   RESPONSIVE base for pages internes
============================================================ */
@media (max-width: 1024px) {
    .section-wrap { padding: 0 2.5rem; }
}
@media (max-width: 768px) {
    .section-wrap { padding: 0 1.75rem; }
    .page-hero { padding: 4rem 0 3rem; }
    .page-hero-inner { padding: 0 1.5rem; }
    .page-section { padding: 3.5rem 0; }
}
@media (max-width: 600px) {
    .section-wrap { padding: 0 1.25rem; }
    .prose { font-size: 1rem; }
}

/* ============================================================
   Pages services : hierarchie titres de section (demande client 2026-06)
   Eyebrow type "Prestations" agrandi, titre h2 en dessous reduit
============================================================ */
.svc-main .page-section .eyebrow {
    font-size: 17px;
    letter-spacing: .16em;
    margin-bottom: 0.9rem;
}
.svc-main .page-section .section-h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}
