/**
 * Page "Facturation électronique" — CSS de base (Phase 1)
 * Cette feuille fournit un rendu lisible et structuré.
 * La fidélité pixel-Figma sera implémentée en Phase 2 après validation BO.
 */

/* ---------- Masquage de la titlebar par défaut du thème parent ---------- */
.page-template-page-facturation-electronique #fulltitle {
    display: none;
}

/* ---------- Tokens (couleurs / typo / espacements) ---------- */
.fac-elec {
    --fac-elec-orange: #FF6150;
    --fac-elec-orange-dark: #FF4B2B;
    --fac-elec-orange-soft: #FFF7ED;
    --fac-elec-orange-soft-2: #FFEDD4;
    --fac-elec-yellow: #F5A623;
    --fac-elec-navy: #1A3C5C;
    --fac-elec-ink-900: #101828;
    --fac-elec-ink-700: #1E2939;
    --fac-elec-ink-500: #6A7282;
    --fac-elec-ink-400: #6B7280;
    --fac-elec-gray-50: #F9FAFB;
    --fac-elec-gray-100: #F3F4F6;
    --fac-elec-gray-200: #E5E7EB;
    --fac-elec-white: #FFFFFF;

    --fac-elec-radius-sm: 8px;
    --fac-elec-radius-md: 12px;
    --fac-elec-radius-lg: 20px;
    --fac-elec-radius-pill: 999px;

    --fac-elec-space-1: 4px;
    --fac-elec-space-2: 8px;
    --fac-elec-space-3: 12px;
    --fac-elec-space-4: 16px;
    --fac-elec-space-5: 24px;
    --fac-elec-space-6: 32px;
    --fac-elec-space-8: 48px;
    --fac-elec-space-10: 64px;
    --fac-elec-space-12: 96px;

    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--fac-elec-ink-900);
    line-height: 1.55;
    background: var(--fac-elec-white);
}

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

/* ---------- Layout ---------- */
.fac-elec__container {
    max-width: 1240px;
    width: 90%;
    margin: 0 auto;
    padding: 0 24px;
    @media (max-width: 640px) {
       padding: 0;
    }
}

.fac-elec__section {
    padding: var(--fac-elec-space-10) 0;
}

.fac-elec__section-header {
    max-width: 720px;
    margin-bottom: var(--fac-elec-space-8);
}
.fac-elec__section-header--centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.fac-elec__eyebrow {
    display: inline-block;
    background: var(--fac-elec-orange-soft);
    color: var(--fac-elec-orange-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--fac-elec-radius-pill);
    margin-bottom: var(--fac-elec-space-4);
}

.fac-elec__h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 var(--fac-elec-space-4);
    color: var(--fac-elec-ink-900);
}
.fac-elec__h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 var(--fac-elec-space-4);
    color: var(--fac-elec-ink-900);
}
.fac-elec__h1 .accent,
.fac-elec__h2 .accent { color: var(--fac-elec-orange); }

.fac-elec__lead,
.fac-elec__intro {
    font-size: 18px;
    color: var(--fac-elec-ink-500);
    margin: 0 0 var(--fac-elec-space-5);
}

/* ---------- Badges ---------- */
.fac-elec__badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--fac-elec-radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.fac-elec__badge--alert {
    background: var(--fac-elec-orange);
    color: var(--fac-elec-white);
    margin-bottom: var(--fac-elec-space-4);
}

/* ---------- CTA / boutons ---------- */
.fac-elec__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--fac-elec-space-3);
    align-items: center;
    margin-top: var(--fac-elec-space-5);
    @media (max-width: 1024px) {
        justify-self: center;
    }
    @media (max-width: 640px) {
      flex-direction: column;   
    }
}
.fac-elec__cta-row--centered { justify-content: center; }

.fac-elec__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--fac-elec-radius-pill);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.fac-elec__btn:hover { transform: translateY(-1px); }
.fac-elec__btn--primary {
    background: var(--fac-elec-orange);
    color: var(--fac-elec-white);
}
.fac-elec__btn--primary:hover { background: var(--fac-elec-orange-dark); color: var(--fac-elec-white); }
.fac-elec__btn--outline {
    background: transparent;
    color: var(--fac-elec-ink-900);
    border-color: var(--fac-elec-gray-200);
}
.fac-elec__btn--outline:hover { background: var(--fac-elec-gray-50); color: var(--fac-elec-ink-900); }
.fac-elec__btn--dark {
    background: var(--fac-elec-navy);
    color: var(--fac-elec-white);
}
.fac-elec__btn--dark:hover { background: var(--fac-elec-ink-700); color: var(--fac-elec-white); }
.fac-elec__btn--ghost {
    background: rgba(255, 255, 255, .9);
    color: var(--fac-elec-ink-900);
    border-color: var(--fac-elec-gray-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}
.fac-elec__btn--block { display: flex; width: 100%; }
.fac-elec__btn-icon { display: inline-flex; }
.fac-elec__btn-icon svg { display: block; }

/* ---------- Icônes ---------- */
.fac-elec-icon {
    display: inline-flex;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}
.fac-elec-icon svg { width: 100%; height: 100%; display: block; }

/* =========================================================
   Section A — Hero
   Figma node 7:2723 — fileKey T7jsQ1VH3TkPhMfKh7ELqm
   ========================================================= */

/* Section wrapper — Figma 7:2723: padding 144px 36px (sides 35.91), height 740.
   Bottom gap (52px under demo button) reproduced via min-height, not padding. */
.fac-elec__hero {
    padding-top: 32px;
    padding-bottom: 64px;
    background: var(--fac-elec-white);
    overflow: visible;
}
/* À l'intérieur du hero, le container ne doit pas re-padder horizontalement
   (sinon double-padding 36 + 24). Largeur max relâchée également. */
.fac-elec__hero .fac-elec__container {
    padding-left: 0;
    padding-right: 0;
}

/* 2-col grid — layout_J4MOIW: left col 576px / right col 576px sur 1288px total */
.fac-elec__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--fac-elec-space-10);
    align-items: flex-start;
    
    @media (max-width: 1024px) {
       gap: var(--fac-elec-space-5);
    }
}

/* Left column — layout_3JS3HD */
.fac-elec__hero-content {
    padding-bottom: 0;
    
    @media (max-width: 1024px) {
       text-align: center;
    }
}
/* Lead paragraph wrapper unwrap : ACF wpautop adds <p> inside .fac-elec__lead — neutralize */
.fac-elec__lead p { margin: 0; }

/* Badge pill — node 7:2726: bg #FFF7ED, border #FFD6A8 0.87px, dot #FF6150, text #FF6150 */
.fac-elec__badge--alert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF7ED;
    border: 0.87px solid #FFD6A8;
    border-radius: 999px;
    color: #FF6150;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px 6px 12px;
    margin-bottom: var(--fac-elec-space-4);
    @media (max-width: 640px) {
       font-size: 11px;
     }
}
/* Dot inside badge — node 7:2729: fill #FF6150, ~8px, opacity 0.98 */
.fac-elec__badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #FF6150;
    opacity: 0.98;
    flex-shrink: 0;
}

/* H1 — style_8CSUN7: Inter ExtraBold 800, 41.6px, line-height 47.84px, color #101828
   Figma node 7:2731 width = 548px (not full 576) — wrap match. */
.fac-elec__h1 {
    font-size: clamp(1.55rem, 3.23vw, 2.6rem); /* 2.6rem = 41.6px */
    line-height: 1.15; /* 47.84/41.6 */
    font-weight: 800;
    margin: 0 0 var(--fac-elec-space-4);
    color: var(--fac-elec-ink-900);
    max-width: 25ch;
    @media (max-width: 1024px) {
       max-width: 35ch;
       margin-left:auto;
       margin-right: auto;
    }
}
/* ts1 span = "avant qu'il ne soit trop tard." — fill #FF6150 */
.fac-elec__h1 .accent { color: #FF6150; }

/* Lead paragraph — style_SZR6PC: Regular 400, 16.5px, line-height 29.92px (~1.814), color #6A7282 */
/* ts2 "septembre 2026" = Bold #1A3C5C ; ts3 "Cerfrance Côtes-d'Armor" = Bold #6A7282 */
.fac-elec__lead {
    font-size: 16.5px;
    font-weight: 400;
    ine-height: 1.6;
    color: #6A7282;
    margin: 0 0 var(--fac-elec-space-5);
    max-width: 563px; /* Figma node 7:2733 width */
    @media (max-width: 1024px) {
        max-width: 625px; 
        margin-left:auto;
        margin-right: auto;
     }
}
.fac-elec__lead strong { font-weight: 700; }
.fac-elec__lead .ts2 { font-weight: 700; color: #1A3C5C; }
.fac-elec__lead .ts3 { font-weight: 700; color: #6A7282; }

/* CTA primary — node 7:2735: bg #FF6150, border-radius 14px, shadow #FFD6A8
   Figma sizing: 213×52 → padding-y ~16px on top of 14px font (line-height 24) */
.fac-elec__btn--primary {
    background: #FF6150;
    color: var(--fac-elec-white);
    border-radius: 14px;
    padding: 14px 22px;
    font-size: 14px;
    line-height: 24px;
    box-shadow: 0px 4px 6px -4px rgba(255, 214, 168, 1), 0px 10px 15px -3px rgba(255, 214, 168, 1);
}
.fac-elec__btn--primary:hover { background: #FF4B2B; color: var(--fac-elec-white); }

/* CTA phone — node 23:11: border #E5E7EB 1.74px, radius 14px, text #1A3C5C, font SemiBold 600 16px */
.fac-elec__btn--outline {
    background: transparent;
    color: #1A3C5C;
    border: 1.74px solid #E5E7EB;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.fac-elec__btn--outline:hover { background: var(--fac-elec-gray-50); color: #1A3C5C; }

/* Guarantees — layout_1W9YOM: flex column, gap 8px (7.99px) */
.fac-elec__guarantees {
    list-style: none;
    padding: 0;
    margin: var(--fac-elec-space-6) 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    @media (max-width: 1024px) {
        max-width: 35ch;
        margin-left: auto;
        margin-right: auto;
     }
}
/* Each guarantee row — layout_38NVUK: row, center, gap 10px, height 21px */
.fac-elec__guarantee {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #6A7282;
    font-size: 14px; /* style_R2TJVF: 14px */
    line-height: 21px; /* style_R2TJVF: line-height 21px */
  
}
/* Icon — node 7:2744: IMAGE-SVG 15x15, no background */
.fac-elec__guarantee .fac-elec-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background: none;
    border-radius: 0;
    padding: 0;
}
.fac-elec__guarantee .fac-elec-icon img {
    width: 18px;
    height: 18px;
    display: block;
}

/* ---- Right column (visual) ---- */
/* layout_QZYTVO: position relative. L'image hero (7:2763) sit à top=176 dans la
   section Figma alors que la section a pad-top=144 ; il faut donc 32px d'offset
   au-dessus de l'image pour laisser dépasser le countdown card 7:2765. */
.fac-elec__hero-visual {
    position: relative;
    display: block;
    padding-top: 32px;
}

/* Decorative gradient circle — node 7:2762: radial #FF4B2B → transparent, opacity 0.05 */
.fac-elec__hero-circle {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 75, 43, 1) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

/* Hero image — node 7:2763: 576×447 → aspect-ratio 576/447, border-radius 24px,
   border #F3F4F6 0.87px, box-shadow 25px 50px -12px */
.fac-elec__hero-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 576 / 447;
    object-fit: cover;
    border-radius: 24px;
    border: 0.87px solid #F3F4F6;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

/* Image wrapper for absolute positioning of overlaid cards */
.fac-elec__hero-image-wrap {
    position: relative;
    display: block;
}

/* Countdown card — node 7:2765: bg #1A3C5C (fill_STR7FL), border-radius 16px,
   padding 12px 20px 10px, gap 4px, w=264px, h=81px
   Position Figma dans col droite (576×487): x=163.1, y=-15.54
   Position relative à l'image (576×447, top=40 dans col):
     left = 163.1/576 = 28.3%
     top sur image = -15.54 - 40 = -55.54px → environ -12.4% de 447px
   box-shadow: 0px 8px 10px -6px rgba(0,0,0,.1), 0px 20px 25px -5px rgba(0,0,0,.1) */
.fac-elec__countdown-card {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: #1A3C5C;
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-align: center;
    @media (max-width: 640px) {
       border-radius: 12px;
       max-width: 35ch;
       width: 85%;
    }
}

/* Countdown label — style_SPTLRI: SemiBold 600, 11.2px, line-height 16.8px, letter-spacing 6%, color #93C5FD */
.fac-elec__countdown-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.06em;
    color: #93C5FD;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Countdown row — layout_D7T0Z1: row, center, gap 12px */
.fac-elec__countdown-blocks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* Countdown block — each unit column */
.fac-elec__countdown-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
/* Number — style_O4ET5U: ExtraBold 800, 22.4px, line-height 22.4px, color var(--fac-elec-white) */
.fac-elec__countdown-block strong {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--fac-elec-white);
    text-align: center;
    display: block;
    @media (max-width: 640px) {
       font-size: 20px;
    }
}
/* Unit label — style_EQHGHA: Regular 400, 9.6px, line-height 14.4px, color #93C5FD */
.fac-elec__countdown-block span {
    font-size: 11px
    font-weight: 400;
    line-height: 1.1;
    color: #93C5FD;
    text-align: center;
    display: block;
}

/* Separator ":" — style_MT4FWN: ExtraBold 800, 22.4px, line-height 33.6px, color #FF4B2B (fill_SLOWAE) */
.fac-elec__countdown-sep {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: #FF4B2B;
    align-self: flex-start;
    padding-top: 0;
}

/* Witness card — node 7:2788: bg var(--fac-elec-white), border #F3F4F6 0.87px, border-radius 16px,
   padding 12.87px 16.86px, w=214.67px, h=61.73px,
   Position Figma dans col droite (576×487): x=-15.99, y=441.26
   Position relative à l'image (576×447, top=40 dans col):
     left = -15.99/576 = -2.8%
     top sur image = 441.26 - 40 = 401.26px → 89.8% de 447px
     (soit bottom = 447-401.26-61.73 = -15.99px → légèrement sous l'image)
   box-shadow: 0px 8px 10px -6px rgba(0,0,0,.1), 0px 20px 25px -5px rgba(0,0,0,.1) */
.fac-elec__witness-card {
    position: absolute;
    top: 90%;
    left: -5%;
    z-index: 3;
    background: var(--fac-elec-white);
    border: 1px solid #F3F4F6;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1), 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    
    @media (max-width: 1024px) {
       top:95%;
       left:0;
    }
}

/* Witness icon container — node 7:2790: IMAGE-SVG 32x32, bg #DCFCE7, border-radius pill */
.fac-elec__witness-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fac-elec__witness-icon img {
    width: 32px;
    height: 32px;
    display: block;
}

.fac-elec__witness-text { display: flex; flex-direction: column; gap: 0; }

/* "Facture envoyée ✓" — style_IH70QR: Bold 700, 12.8px, line-height 19.2px, color #111111 */
.fac-elec__witness-title {
    display: block;
    color: #111111;
    font-size: 12.8px;
    font-weight: 700;
    line-height: 19.2px;
}
/* "Conforme à la réforme 2026" — style_N2Z6W0: Regular 400, 11.2px, line-height 16.8px, color #6B7280 */
.fac-elec__witness-sub {
    display: block;
    color: #6B7280;
    font-size: 11.2px;
    font-weight: 400;
    line-height: 16.8px;
}

/* "Voir la démo" button — node 23:25: border #1A3C5C 1.74px, radius 14px,
   text #1A3C5C SemiBold 600 14px, positioned bottom-right below right col */
.fac-elec__btn--demo {
    background: transparent;
    color: #1A3C5C;
    border: 2px solid #1A3C5C;
    border-radius: 14px;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    padding: 13px 25px;
}
.fac-elec__btn--demo:hover { background: rgba(26, 60, 92, 0.06); color: #1A3C5C; }

/* Demo button row — sits under the right column image, centered horizontally
   (Figma node 23:25 @ x=864 within right col 7:2761 starting at x=640, width 576
   → ~39% to ~62% of column width = visually centered). */
.fac-elec__hero-demo {
    display: flex;
    justify-content: center;
    margin-top: var(--fac-elec-space-4);
}

/* =========================================================
   Section dc — Bande certifications (Figma node 7:2799)
   Fond #F9FAFB, border-top #F3F4F6 0.87px, hauteur ~74px (bande fine),
   container interne 1015px : 4 items en row, badges 32x32 radius 10.
   ========================================================= */
.fac-elec__certifs {
    background: #F9FAFB;
    border-top: 0.87px solid #F3F4F6;
    border-bottom: 0.87px solid #F3F4F6;
    padding: 20px 35px;
    margin-bottom: 54px;
    @media (max-width: 600px) {
       margin-bottom: 32px;
    }
}
.fac-elec__certifs-inner {
    max-width: 1015px;
    margin: 0 auto;
    overflow: visible;
}
.fac-elec__certif-item { white-space: nowrap; }
/* Figma 7:2800 inner 1015px : items abs-positioned at x=53.09, 294.39, 561.6, 817.08
   → uniform gap ≈ 87.85px, padding-left 53px, padding-right ~33px. */
.fac-elec__certifs-list {
    list-style: none;
    margin: 0;
    padding: 0 5px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    @media (max-width: 1280px) {
       gap: 20px;
       justify-content:space-between;
    }
    @media (max-width: 975px) {
       gap: 25px;
       justify-content:center;
    }
    @media (max-width: 640px) {
       flex-direction: column;
    }
}
.fac-elec__certif-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    @media (max-width: 975px) {
       width: 42.5%;
    }
    @media (max-width: 400px) {
        width: 60%;
     }
}
.fac-elec__certif-badge {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fac-elec-white);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 11px;
}
.fac-elec__certif-badge--blue   { background: #003189; }
.fac-elec__certif-badge--orange { background: #FF6150; }
.fac-elec__certif-badge--darkblue  { background: #1A3C5C; }
.fac-elec__certif-badge--yellow { background: #F5A623; }

.fac-elec__certif-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.2;
}
.fac-elec__certif-title {
    color: #111111;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    margin: 0;
}
.fac-elec__certif-sub {
    color: #6B7280;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
}

/* =========================================================
   Section hc — Réforme 2026 (Figma node 7:2851)
   fileKey T7jsQ1VH3TkPhMfKh7ELqm
   Card wrap : bg #F3F4F6, radius 30, dims 1288×659
   Row gap 64 / col gauche fill / col droite 612 fixed
   ========================================================= */
.fac-elec__reform { background: var(--fac-elec-white); padding: 0;margin-bottom: 54px; }
.fac-elec__reform .fac-elec__container { max-width: 1288px; padding: 0; }

.fac-elec__reform-card {
    background: #F3F4F6;
    border-radius: 30px;
    padding: 24px 50px 55px;
    @media (max-width: 980px) {
       padding: 25px;
    }
    @media (max-width: 640px) {
       padding: 20px 15px;
    }
}
.fac-elec__reform-grid {
    display: flex;
    gap: 56px;
    max-width: 100%;
}
@media (max-width: 1180px) {
    
}

/* ---- Col gauche header (eyebrow pill + H2 + intro) ---- */
.fac-elec__reform-left {
   max-width: 50%;
   @media (max-width: 1024px) {
      max-width: 100%;
   }
}
.fac-elec__reform-eyebrow {
    display: inline-block;
    background: #FFEDD4;
    color: #FF4B2B;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: var(--fac-elec-space-2);
    @media (max-width: 1024px) {
       display: block;
         max-width: 20ch;
       margin-left: auto;
       margin-right: auto;
    }
}
.fac-elec__reform-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.3;
    color: var(--fac-elec-ink-900);
    margin: 0 0 var(--fac-elec-space-3);
    @media (max-width: 1024px) {
       text-align: center;
    }
    @media (max-width: 640px) {
       font-size: 20px;
    }
}
.fac-elec__reform-title .accent { color: #FF6150; }
.fac-elec__reform-intro {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0 0 var(--fac-elec-space-5);
    max-width: 575px;
    @media (max-width: 1024px) {
       text-align: center;
       margin-left: auto;
        margin-right: auto;
    }
    @media (max-width: 640px) {
        font-size: 13px;
     }
}

/* ---- Timeline (3 rows) ---- */
.fac-elec__timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}
/* Connector vertical line — Figma 7:2906: 0.99 × 379.44 #D1D5DC, left 20 top 20 */
.fac-elec__timeline::before {
    content: '';
    position: absolute;
    left: 19.5px;
    top: 20px;
    bottom: 20px;
    width: 1px;
    background: #D1D5DC;
    z-index: 0;
    @media (max-width: 1024px) {
       height: 70%;
    }
    @media (max-width: 640px) {
      left: 14.5px;
    }
}
.fac-elec__timeline-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    @media (max-width: 640px) {
       gap:10px;
    }
}
.fac-elec__timeline-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
    z-index: 1;
    @media (max-width: 640px) {
      width: 30px;
      height: 30px;
    }
}
.fac-elec__timeline-card {
    flex: 1 1 auto;
    min-width: 0;
    background: var(--fac-elec-white);
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 16px 16px 14px;
    @media (max-width: 640px) {
       padding: 12.5px;
    }
}
.fac-elec__timeline-step.is-highlight .fac-elec__timeline-card {
    background: rgba(255, 75, 43, 0.10);
    border-color: rgba(255, 75, 43, 0.30);
}
.fac-elec__timeline-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    @media (max-width: 640px) {
       flex-direction: column;
       align-items: flex-start;
    }
}
.fac-elec__timeline-date {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 18px;
    color: #6B7280;
}
.fac-elec__timeline-step.is-highlight .fac-elec__timeline-date { color: #FF6150; }
.fac-elec__timeline-badge {
    display: inline-block;
    background: #FF6150;
    color: var(--fac-elec-white);
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 10.4px;
    line-height: 15.6px;
    letter-spacing: 0;
    padding: 2px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}
.fac-elec__timeline-title {
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
     font-weight: 700;
     font-size: 16px;
     line-height: 1.4;
     color: #1E2939;
    margin-bottom: 5px;
    @media (max-width: 640px) {
       font-size: 13px;
    }
}
.fac-elec__timeline-desc {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #6B7280;
}

/* ---- Col droite : 2 cards (width 612 fixed, gap 24) ---- */
.fac-elec__reform-right {
    display: flex;
    flex-direction: column;
    max-width: 50%;
    gap: 24px;
    align-items: flex-end;
    justify-content: flex-end;
    @media (max-width: 1024px) {
       max-width: 100%;
       padding-left: 60px;
    }
    @media (max-width: 640px) {
       padding-left: 0;
    }
}
.fac-elec__reform-r-card {
    background: var(--fac-elec-white);
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 16px 16px 14px;
    width: 100%;
}
.fac-elec__reform-r-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.fac-elec__reform-r-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: block;
}
.fac-elec__reform-r-title {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #1E2939;
}

/* Concerned list — 2 colonnes / 2 lignes */
.fac-elec__concerned-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 7px;
    row-gap: 19px;
    @media (max-width: 640px) {
       grid-template-columns: 1fr;
       column-gap: 5px;
        row-gap: 5px;
    }
}
.fac-elec__concerned-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    font-size: 13.12px;
    line-height: 19.68px;
    color: #374151;
}
.fac-elec__concerned-list img { width: 13px; height: 13px; flex-shrink: 0; display: block; }

/* Risk list — 3 list items à puce ronde "!" */
.fac-elec__risk-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fac-elec__risk-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.fac-elec__risk-bullet {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(255, 75, 43, 0.10);
    color: #FF6150;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.fac-elec__risk-text {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #374151;
}

/* CTA row + tagline (séparateur en top-border) */
.fac-elec__reform-cta-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    @media (max-width: 1024px) {
      width: calc(100% + 60px);
    }
    @media (max-width: 640px) {
       width: 100%;
    }
}
.fac-elec__reform-cta {
    background: #FF6150;
    color: var(--fac-elec-white);
    border-radius: 10px;
    padding: 10px 20px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    min-width: 198px;
}
.fac-elec__reform-cta:hover { background: #FF4B2B; color: var(--fac-elec-white); }
.fac-elec__reform-tagline {
    margin: 0;
    text-align: center;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    color: #1E2939;
    @media (max-width: 640px) {
       font-size: 11px;
    }
}

/* =========================================================
   Section D — Fonctionnalités
   ========================================================= */
.fac-elec__features-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--fac-elec-space-5);
}
.fac-elec__feature-card {
    background: var(--fac-elec-white);
    border: 1px solid var(--fac-elec-gray-200);
    border-radius: var(--fac-elec-radius-lg);
    padding: var(--fac-elec-space-5);
    display: flex;
    flex-direction: column;
    gap: var(--fac-elec-space-3);
    transition: box-shadow .2s ease, transform .2s ease;
}
.fac-elec__feature-card:hover { box-shadow: 0 16px 32px rgba(16, 24, 40, .06); transform: translateY(-2px); }
.fac-elec__feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.fac-elec__feature-icon .fac-elec-icon { width: 22px; height: 22px; }
.fac-elec__feature-icon--orange { background: var(--fac-elec-orange-soft); color: var(--fac-elec-orange); }
.fac-elec__feature-icon--blue   { background: #DBEAFE; color: #2563EB; }
.fac-elec__feature-icon--green  { background: #DCFCE7; color: #16A34A; }
.fac-elec__feature-icon--purple { background: #EDE9FE; color: #7C3AED; }
.fac-elec__feature-icon--pink   { background: #FCE7F3; color: #DB2777; }
.fac-elec__feature-icon--teal   { background: #CCFBF1; color: #0D9488; }

.fac-elec__feature-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.fac-elec__feature-title { font-size: 17px; margin: 0; color: var(--fac-elec-ink-900); }
.fac-elec__feature-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--fac-elec-radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.fac-elec__feature-badge--mandatory { background: var(--fac-elec-orange); color: var(--fac-elec-white); }
.fac-elec__feature-badge--pa        { background: #DBEAFE; color: #1E40AF; }
.fac-elec__feature-desc { margin: 0; color: var(--fac-elec-ink-500); font-size: 14px; }

/* ---- Section D — Features (pc — Figma node 7:2995) overrides Δ-tokens
   Issus de l'audit figma-section-fixer (passe préc.). Scopés .fac-elec__features. */
.fac-elec__features { padding: 0;margin-bottom: var(--fac-elec-space-10); }
.fac-elec__features .fac-elec__container { /*padding: 0 36px;*/ }
.fac-elec__features .fac-elec__section-header { margin-bottom: 0;max-width: unset;}
.fac-elec__features .fac-elec__features-grid { gap: 20px; }
.fac-elec__features .fac-elec__feature-card { border-radius: 16px; padding: 24.86px; }
.fac-elec__features .fac-elec__feature-icon { border-radius: 14px; width: 48px; height: 48px; }
/* Icon bg colors — Figma 7:2995 enfants fills */
.fac-elec__features .fac-elec__feature-icon--orange { background: #FFF1EE; color: var(--fac-elec-orange); }
.fac-elec__features .fac-elec__feature-icon--blue   { background: #EEF4FF; color: #1A3C5C; }
.fac-elec__features .fac-elec__feature-icon--yellow { background: #FFFBEB; color: #F5A623; }
.fac-elec__features .fac-elec__feature-icon--green  { background: #ECFDF5; color: #16A34A; }
.fac-elec__features .fac-elec__feature-card { position: relative; }
.fac-elec__features .fac-elec__feature-title { 
   font-family: 'Inter', system-ui, sans-serif;
   font-weight: 700;
   font-size: 14px;
   line-height: 1.4;
   color: #1E2939;
   flex: 1 1 auto; 
   min-width: 0; 
}
.fac-elec__features .fac-elec__feature-head { align-items: flex-start; gap: 8px; padding-right: 0; }
.fac-elec__features .fac-elec__feature-desc { 
   font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
   color: #6A7282; 
}
.fac-elec__features .fac-elec__feature-badge {
    position: absolute;
    top: 24.86px;
    right: 24.86px;
    white-space: nowrap;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    padding: 2px 10px;
    border-radius: 999px;
    font-weight: 600;
}
.fac-elec__features .fac-elec__feature-badge--mandatory { background: #FFF1EE; color: #FF6150; }
.fac-elec__features .fac-elec__feature-badge--pa        { background: #EEF4FF; color: #1A3C5C; }
.fac-elec__features .fac-elec__eyebrow { background: #FFF7ED; color: #FF4B2B; letter-spacing: 0.05em; font-size: 12.48px; line-height: 18.72px; padding: 4px 10px; }
.fac-elec__features .fac-elec__h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 auto var(--fac-elec-space-6);
    @media (max-width: 640px) {
      font-size: 20px;
    }
}
.fac-elec__features .fac-elec__h2 .accent { color: #FF6150; }
.fac-elec__features .fac-elec__intro,
.fac-elec__features .fac-elec__lead {
    font-size: 16px;
    line-height: 1.6;
    color: #6A7282;
    max-width: 55ch;
    margin: 0 auto var(--fac-elec-space-6);
    
}
/* Strip wpautop margin pollution */
.fac-elec__features .fac-elec__h2 p,
.fac-elec__features .fac-elec__intro p { margin: 0; display: inline; }

/* =========================================================
   Section E — Stats (yc — Figma node 7:3073)
   Frame fill_UJRG3S=#FF6150, dims 1287.83×192.58, padding top/bottom 64px.
   4 cols width 280 each, gap ~32px (347.91-35.91-280), each col flex column gap 4px.
   Value style_Z2C83X: Inter ExtraBold 800, 36px, line-height 39.6px, center, var(--fac-elec-white).
   Label style_4XLTVB: Inter Regular 400, 14px, line-height 21px, center, fill_6NCUNM=#FFEDD4.
   ========================================================= */
.fac-elec__stats {
    background: #FF6150;
    color: var(--fac-elec-white);
    padding: 64px 0;
}
.fac-elec__stats-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    text-align: center;
}
.fac-elec__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
}
.fac-elec__stat-value {
    display: block;
    font-size: 36px;
    line-height: 1.5;
    font-weight: 800;
    color: var(--fac-elec-white);
    text-align: center;
    @media (max-width: 1120px) {
        font-size: 25px;
     }
     @media (max-width: 1024px) {
          font-size: 35px;
       }
}
.fac-elec__stat-label {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #FFEDD4;
    text-align: center;
}

/* =========================================================
   Section F — Steps (Figma 7:3094 vc)
   ========================================================= */
.fac-elec__steps { background: var(--fac-elec-gray-50); }

.fac-elec__steps .fac-elec__eyebrow {
    background: var(--fac-elec-orange-soft);
    color: var(--fac-elec-orange);
}
.fac-elec__steps-header .fac-elec__h2 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    @media (max-width: 640px) {
       font-size: 20px;
     }
}
.fac-elec__steps-header .fac-elec__h2 .accent { color: #FF6150; }
.fac-elec__steps-header .fac-elec__intro {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16.8px;
    line-height: 1.55;
}

.fac-elec__steps-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    position: relative;
    text-align: left;
    counter-reset: fac-elec-step;
}
.fac-elec__step {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    position: relative;
    @media (max-width: 980px) {
       text-align: center;
    }
}
.fac-elec__step-badge-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin: 0 0 20px;
    padding-left: 0;
}
/* Connector line behind the badges (gradient), spans cards 1→3, traverse milieu badge */
.fac-elec__step:not(:last-child) .fac-elec__step-badge-wrap::after {
    content: "";
    position: absolute;
    left: 110px;
    right: calc(-100% + 110px - 32px);
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, #FF4B2B 0%, #F5A623 100%);
    z-index: 0;
    @media (max-width: 980px) {
       display: none;
    }
}
.fac-elec__step-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FF6150 0%, #F5A623 100%);
    color: var(--fac-elec-white);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
}
.fac-elec__step-title {
   font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--fac-elec-ink-900);
    @media (max-width: 1024px) {
       font-size: 14px;
    }
    @media (max-width: 980px) {
       font-size: 15px;
    }
}
.fac-elec__step-desc {
   font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    color: var(--fac-elec-ink-500);
    font-size: 14px;
    line-height: 1.4;
    @media (max-width: 1024px) {
       font-size: 13px;
    }
    @media (max-width: 980px) {
       font-size: 14px;
    }
}

.fac-elec__steps-cta { margin-top: 48px; gap: 16px; }
.fac-elec__steps-cta .fac-elec__btn--dark {
    border-radius: 14px;
    background: #364153;
    padding: 14px 22px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}
.fac-elec__steps-cta .fac-elec__btn--outline {
    border-radius: 14px;
    border-color: #D1D5DC;
    color: var(--fac-elec-navy);
    padding: 14px 22px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

/* =========================================================
   Section G — Offre détaillée (xc — Figma node 7:3143)
   fileKey T7jsQ1VH3TkPhMfKh7ELqm
   Frame 1288×869 bg var(--fac-elec-white).
   - Header centré : eyebrow pill #FFF7ED text #FF4B2B, H2 32/48 ExtraBold,
     intro 16.8/25.2 Regular #6A7282.
   - Body : container 1216, image décorative à gauche (~576×452, radius 24,
     border #F3F4F6, shadow 25 50 -12), 3 cards à droite stack vertical gap ~10,
     chaque card 389×189 radius 16 border #E5E7EB 0.87 shadow 0 4 4 rgba(0,0,0,.25).
   - Card content : titre 17.6/26.4 Bold #101828 puis paragraphe 14/20 Regular #6A7282,
     icône ronde (radius pill) 40×40 en haut à droite (couleur d'icône par card).
   - CTAs centrés : tel outline border #D1D5DC radius 14 ; bouton primary bg #FF6150 radius 14.
   ========================================================= */
.fac-elec__offer { background: var(--fac-elec-white); padding:var(--fac-elec-space-10) 0; }
.fac-elec__offer .fac-elec__container {max-width: 1085px;}

.fac-elec__offer-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 0;
}
.fac-elec__offer-eyebrow {
    background: #FFF7ED;
    color: #FF4B2B;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 12.48px;
    line-height: 18.72px;
    letter-spacing: 0.05em;
    padding: 4px 11px;
    border-radius: 999px;
    margin-bottom: var(--fac-elec-space-3);
    text-transform: uppercase;
}
.fac-elec__offer-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.4;
    color: var(--fac-elec-ink-900);
    margin: 0 0 var(--fac-elec-space-3);
    text-align: center;
    
    @media (max-width: 640px) {
       font-size: 20px;
    }
    
}
.fac-elec__offer-title .accent { color: #FF6150; }
.fac-elec__offer-intro {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    font-size: 16.8px;
    line-height: 25.2px;
    color: #6A7282;
    margin: 0 auto;
    max-width: 750px;
    text-align: center;
}

/* ---- Body : 2 colonnes (visuel / cards) — baseline restauré ---- */
.fac-elec__offer-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38%;
    gap: var(--fac-elec-space-8);
    align-items: start;
    margin: var(--fac-elec-space-5) auto 0;
}

/* Visuel décoratif (Figma 40:30 wrapper 576×452, ratio 1.27) */
.fac-elec__offer-visual { display: block; }
.fac-elec__offer-visual-card {
    max-width: 100%;
    aspect-ratio: 576 / 452;
    border-radius: 24px;
    border: 1px solid #F3F4F6;
    overflow: hidden;
    background: var(--fac-elec-white);
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin:0;
}
.fac-elec__offer-visual-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ---- Cards (Figma 7:3158 wrapper, 7:3274 / 37:316 / 37:306) ---- */
.fac-elec__offer .fac-elec__commitments {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--fac-elec-space-4);
}
.fac-elec__offer .fac-elec__commitment {
    position: relative;
    background: var(--fac-elec-white);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 25px;
    /*min-height: 189px;*/
}
.fac-elec__offer .fac-elec__commitment-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 18px;
    max-width: 22ch;
    line-height: 1.3;
    word-break: break-word;
    color: var(--fac-elec-ink-900);
    margin: 0 0 var(--fac-elec-space-3);
}
.fac-elec__offer .fac-elec__commitment-desc {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #6A7282;
    max-width: 37ch;
}
.fac-elec__offer .fac-elec__commitment-desc p { margin: 0 0 var(--fac-elec-space-2); }
.fac-elec__offer .fac-elec__commitment-desc p:last-child { margin-bottom: 0; }
.fac-elec__offer .fac-elec__commitment-desc ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}
.fac-elec__offer .fac-elec__commitment-desc ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: var(--fac-elec-space-1);
}
.fac-elec__offer .fac-elec__commitment-desc ul li::before {
    content: '•';
    position: absolute;
    font-size: 24px;
    line-height: 0;
    top:8px;
    left: 0;
    color: #6A7282;
}

/* Icône ronde top-right (Figma 40:74 / 40:97 / 40:79 — 40×40 SVG natif, contient déjà le fond coloré + icône blanche) */
.fac-elec__commitment-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.fac-elec__commitment-icon img {
    width: 40px;
    height: 40px;
    display: block;
}

/* ---- CTAs row centrés sous le body (Figma 37:342 phone + 37:313 primary) ---- */
.fac-elec__offer-cta-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: var(--fac-elec-space-5);
}
.fac-elec__offer-phone {
    background: transparent;
    color: #1A3C5C;
    border: 1px solid #D1D5DC;
    border-radius: 14px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    padding: 14px 25px;
    box-shadow: none;
    min-width: 219px;
    justify-content: center;
}
.fac-elec__offer-phone:hover { background: var(--fac-elec-gray-50); color: #1A3C5C; }
.fac-elec__offer-cta {
    background: #FF6150;
    color: var(--fac-elec-white);
    border-radius: 14px;
    padding: 11px 25px;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    box-shadow: 0px 4px 6px -4px rgba(255, 214, 168, 1), 0px 10px 15px -3px rgba(255, 214, 168, 1);
}
.fac-elec__offer-cta:hover { background: #FF4B2B; color: var(--fac-elec-white); }

@media (max-width: 1024px) {
    .fac-elec__offer-body { grid-template-columns: 1fr; }
    .fac-elec__offer-visual-card { max-width: 100%; }
    .fac-elec__offer-cta { min-width: 0; }
    .fac-elec__offer-phone { min-width: 0; }
}

/* =========================================================
   Section Nc — CTA final (Figma 7:3464)
   ========================================================= */
.fac-elec__pre-final-cta {
    background: var(--fac-elec-gray-50); /* #F9FAFB — node 7:3464 fill */
    padding:var(--fac-elec-space-10) 0;
    /* Figma frame 7:3464 dimensions 1288×584 ; card height 449.46 + padding-top 80 = 529 ;
       reste ~54px de marge basse imposée par Figma. */
}
.fac-elec__pre-final-cta .fac-elec__container {
    /* le node 7:3464 a un padding horizontal interne de 227.9px / 1288 ≈ 17.7%.
       Sur container max-width 1240, on garde le `--container` global et on ajoute
       un cap interne tokenisé pour ne pas hardcoder la largeur 832px. */
    max-width: 835px;
}
.fac-elec__pre-final-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--fac-elec-gray-200); /* #E5E7EB */
    background: linear-gradient(135deg, var(--fac-elec-gray-100) 0%, #E9EAEC 100%);
    /* Figma 7:3465 hauteur fixe 449.46 ; padding container intérieur 56.86 */
    padding: 55px 55px 75px;
    isolation: isolate;
    @media (max-width: 640px) {
      padding: 45px;
    }
    @media (max-width: 480px) {
      padding: 25px;
    }
}
.fac-elec__pre-final-cta-blur {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.fac-elec__pre-final-cta-blur--orange {
    width: 288px;
    height: 288px;
    top: -85px;
    right: -55px;
    background: var(--fac-elec-orange-dark); /* #FF4B2B */
    opacity: 0.20;
    filter: blur(120px);
}
.fac-elec__pre-final-cta-blur--yellow {
    width: 224px;
    height: 224px;
    bottom: -65px;
    left: -65px;
    background: var(--fac-elec-yellow); /* #F5A623 */
    opacity: 0.15;
    filter: blur(80px);
}
.fac-elec__pre-final-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px; /* Figma : gap variables 24/16/32px — moyenne ~24, on baisse à 16 + marges spécifiques pour reproduire la distribution exacte (~335.73 contenu / 449.46 card) */
    max-width: 720px;
    margin: 0 auto;
}
.fac-elec__pre-final-cta-pill + .fac-elec__pre-final-cta-title {
    margin-top: 8px; /* 24 - 16 = 8 → comble jusqu'au gap réel pill → title (~24) */
}
.fac-elec__pre-final-cta-desc + .fac-elec__pre-final-cta-buttons {
    margin-top: 16px; /* 32 - 16 = 16 → gap desc → buttons (~32) */
}
.fac-elec__pre-final-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--fac-elec-radius-pill);
    background: rgba(255, 75, 43, 0.10);
    border: 1px solid rgba(255, 75, 43, 0.30);
    color: var(--fac-elec-orange); /* #FF6150 */
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0;
}
.fac-elec__pre-final-cta-pill-icon {
    display: inline-flex;
    width: 13px;
    height: 13px;
    color: var(--fac-elec-orange);
}
.fac-elec__pre-final-cta-title {
    margin: 0;
    color: var(--fac-elec-ink-900); /* #101828 */
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: 0;
    max-width: 575px; 
    @media (max-width: 640px) {
        font-size: 20px;
    }
}
.fac-elec__pre-final-cta-desc {
    margin: 0;
    color: var(--fac-elec-ink-400); /* #6B7280 */
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.4;
    max-width: 558px; /* Figma 7:3478 width */
}
.fac-elec__pre-final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: var(--fac-elec-space-2);
}
.fac-elec__pre-final-cta-btn-wrap {
    display: inline-flex;
    border-radius: 14px;
    overflow: hidden;
}
.fac-elec__pre-final-cta-btn-primary {
    /* Figma 7:3480 : 280x52, radius 14, shadow ombré peach */
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    min-width: 280px;
    box-shadow:
        0 4px 6px -4px rgba(255, 214, 168, 1),
        0 10px 15px -3px rgba(255, 214, 168, 1);
}
.fac-elec__pre-final-cta-btn-primary .fac-elec__btn-icon { margin-left: auto; }
.fac-elec__pre-final-cta-btn-outline {
    /* Figma 7:3485 : ~219x54, radius 14, transparent, border #D1D5DC, texte navy */
    border-radius: 14px;
    padding: 14px 22px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    min-width: 219px;
    border: 0.87px solid #D1D5DC;
    color: var(--fac-elec-navy); /* #1A3C5C */
    background: transparent;
}
.fac-elec__pre-final-cta-btn-outline:hover { background: var(--fac-elec-gray-50); color: var(--fac-elec-navy); }

/* =========================================================
   Responsive (breakpoints simples)
   ========================================================= */
@media (max-width: 1024px) {
    .fac-elec__hero-grid,
    .fac-elec__reform-grid {flex-direction:column;gap:24px;}
    .fac-elec__hero-grid{grid-template-columns: 1fr; }
    .fac-elec__features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fac-elec__steps-grid    { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .fac-elec__stats-grid    { grid-template-columns: repeat(2, 1fr); }

    /* Hero — breakpoint: cartes repositionnées dans le flux */
    .fac-elec__hero { padding-top: var(--fac-elec-space-8);padding-bottom: var(--fac-elec-space-6); }
    .fac-elec__hero-content { padding-bottom: 0; }
    .fac-elec__hero-circle { display: none; }
    
    .fac-elec__hero-image-wrap { margin-top: var(--fac-elec-space-5); }
    .fac-elec__hero-visual { padding-bottom: var(--fac-elec-space-6); }
}
@media (max-width: 980px) {
   .fac-elec__steps-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .fac-elec__witness-card {
        position: static;
        margin-top: var(--fac-elec-space-3);
    }
    .fac-elec__steps-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .fac-elec__features-grid,
    .fac-elec__stats-grid    { grid-template-columns: 1fr; }
    .fac-elec__guarantees    { grid-template-columns: 1fr; }
    .fac-elec__section       { padding: var(--fac-elec-space-6) 0; }
}
