/* ─────────────────────────────────────────────────────────────────────────
   Enovatic — Main Stylesheet
   Typographies : Urbanist (titres) | Mulish (textes, nav, boutons)
   ───────────────────────────────────────────────────────────────────────── */

/* ─── 1. CSS Variables ───────────────────────────────────────────────────── */
:root {
    --color-bg:          #F1F5F9;
    --color-dark:        #1A1E3C;
    --color-text:        #3B4563;
    --color-muted:       #64748B;
    --color-white:       #FFFFFF;
    --color-border:      #E2E6EE;

    --font-heading: 'Urbanist', sans-serif;
    --font-body:    'Mulish', sans-serif;

    --radius-sm:  4px;
    --radius-md:  6px;
    --radius-lg:  4px;
    --shadow-card: 0 1px 24px rgba(26,30,60,0.03);
    --shadow-btn:  0 4px 14px rgba(123,47,190,0.30);

    --container-max: 1240px;
    --container-pad: 24px;

    --transition: 0.2s;

    /* Colors tailwind */
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;

    --fushia-50: #FDF4FF;
    --fushia-100: #FAE8FF;
    --fushia-200: #F5D0FE;
    --fushia-300: #F0ABFC;
    --fushia-400: #E879F9;
    --fushia-500: #D946EF;
    --fushia-600: #C026D3;
    --fushia-700: #A21CAF;
    --fushia-800: #86198F;
    --fushia-900: #701A75;

    --blue-50: #EFF6FF;
    --blue-100: #DBEAFE;
    --blue-200: #BFDBFE;
    --blue-300: #93C5FD;
    --blue-400: #60A5FA;
    --blue-500: #3B82F6;
    --blue-600: #2563EB;
    --blue-700: #1D4ED8;
    --blue-800: #1E40AF;
    --blue-900: #1E3A8A;

    --emerald-50: #ECFDF5;
    --emerald-100: #D1FAE5;
    --emerald-200: #A7F3D0;
    --emerald-300: #6EE7B7;
    --emerald-400: #34D399;
    --emerald-500: #10B981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065F46;
    --emerald-900: #064E3B;
}

/* ─── 2. Reset & Base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 18px;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── 3. Typography ──────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--slate-900);
    line-height: 1.4;
    font-weight: 500;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(36px, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
h4 { font-size: 1.125rem; }

p { font-size: 18px; line-height: 1.75; color: var(--color-text); }

/* ─── 4. Layout helpers ──────────────────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section { padding-block: 40px; }
.section--sm { padding-block: 56px; }

/* ─── 5. Buttons ─────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
    color: var(--color-white);
}

.btn--primary {
    background: var(--fushia-600);
    color: var(--color-white);
    border-color: var(--fushia-600);
}
.btn--primary:hover {
    background: var(--fushia-700);
    border-color: var(--fushia-700);
}

.btn--accent {
    background: var(--emerald-600);
    color: var(--color-white);
    border-color: var(--emerald-600);
}
.btn--accent:hover { 
    background: var(--emerald-700);
    border-color: var(--emerald-700);
}

/* ─── 6. Section label ───────────────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 20%;
    text-transform: uppercase;
    color: var(--blue-600);
}

/* ─── 7. Section header (label + h2 + desc + btn) ───────────────────────── */
.section-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px 32px;
    align-items: start;
    margin-bottom: 48px;
}
.section-header__left { grid-column: 1; }
.section-header__btn  { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.section-header p {
    color: var(--slate-600);
    font-size: 18px;
    max-width: 850px;
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   8. TOP HEADER (barre utilitaire)
   ═══════════════════════════════════════════════════════════════════════════ */
.top-header {
    position: relative;
    z-index: 1001;
    background: var(--slate-800);
    height: 36px;
}

.top-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
}

.top-header__tagline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-300);
}

.top-header__tagline i {
    color: var(--color-white);
    font-size: 14px;
}

.top-header__auth {
    display: flex;
    align-items: center;
    gap: 2px;
}

.top-header__btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-300);
    padding: 0;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: color var(--transition);
}

.top-header__btn:hover {
    color: var(--color-white);
}

.top-header__btn i {
    font-size: 14px;
}

.top-header__btn--primary {
    color: var(--slate-300);
}

.top-header__btn--primary:hover {
    color: var(--color-white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   9. SITE HEADER / NAV
   ═══════════════════════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 24px;
    background: transparent;
    box-shadow: 0 0px 0 var(--color-border);
    transition: top var(--transition), background var(--transition), padding var(--transition), box-shadow var(--transition);
}

/* Logged-in : compensate for WP admin bar (32px desktop, 46px mobile) */
.admin-bar .site-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}
.site-header.is-scrolled { 
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(26,30,60,0.10); 
    padding-top: 0px;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo-link img { 
    height: 60px; width: auto; 
    transition: height var(--transition);}

.site-header.is-scrolled .logo-link img { 
    height: 50px;
}

/* Primary nav */
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--slate-900);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}


.header-nav a:hover,
.header-nav .current-menu-item a { 
    color: var(--fushia-600)!important; 
    font-weight: 600;
}

.header-nav .btn.btn--primary {
    margin-left: 20px;
}

.header-nav .btn.btn--primary {
    margin-left: 20px;
    padding: 0;
}

.header-nav .btn.btn--primary a,
.header-nav .btn.btn--primary.current-menu-item a {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white)!important;
    padding: 12px 16px;
}

/* Burger (mobile) */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.nav-toggle:hover { background: var(--slate-100); }
.nav-toggle i {
    font-size: 1.35rem;
    color: var(--slate-900);
    line-height: 1;
    transition: color var(--transition);
}
.nav-toggle.is-open i { color: var(--fushia-600); }

/* Auth (Se connecter / Mon compte) */
.header-auth {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn--sm {
    padding: 8px 14px !important;
    font-size: 14px !important;
}

.btn--outline {
    background: transparent;
    color: var(--fushia-600);
    border-color: var(--fushia-600);
}
.btn--outline:hover {
    background: var(--fushia-600);
    color: var(--color-white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   9. HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    background: var(--color-bg);
    overflow: hidden;
    padding-block: 80px 0;
    min-height: 650px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../../images/hero-background.png) no-repeat center bottom;
    z-index: 0;
    background-size: 120%;
    max-width: 1400px;
    margin: -50px auto;
    overflow: visible;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: flex-end;
}


.hero__content { 
    padding-bottom: 100px; 
}

.hero__title {
    font-size: clamp(70px, 5.5vw, 3.5rem);
    font-weight: 500;
    color: var(--slate-900);
    line-height: 1.12;
    margin-bottom: 20px;
}

.hero__subtitle {
    color: var(--slate-700);
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 60px;
}

.hero__image img {
    max-height: 520px;
    width: 100%;
    object-fit: contain;
    object-position: bottom;
}

/* ═══════════════════════════════════════════════════════════════════════════
   10. GRILLES GÉNÉRIQUES (formations, blog, etc.)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Grille générique auto-fill (formations loop, blog, homepage sections) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   11. BLOG section
   ═══════════════════════════════════════════════════════════════════════════ */
.blog-section { background: var(--color-bg); }

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(26,30,60,0.13); }

.blog-card__thumb { overflow: hidden; aspect-ratio: 16/9; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__thumb img { transform: scale(1.04); }

.blog-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-muted);
    flex-wrap: wrap;
}
.blog-card__meta .cat-links a {
    display: inline-block;
    color: var(--fushia-600);
    background: var(--fushia-50, #fdf4ff);
    padding: 2px 8px;
    border-radius: 99px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.blog-card__date { color: var(--color-muted); display: flex; align-items: center; gap: 4px; }

.blog-card__title { font-size: 1.0625rem; font-weight: 700; line-height: 1.35; }
.blog-card__title a { color: var(--slate-900); transition: color var(--transition); }
.blog-card__title a:hover { color: var(--fushia-600); }

.blog-card__excerpt { font-size: 14px; color: var(--color-muted); flex: 1; line-height: 1.65; }

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--fushia-600);
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    background: var(--fushia-50, #fdf4ff);
    border: 1.5px solid var(--fushia-200, #f5d0fe);
    transition: all var(--transition);
    align-self: flex-start;
}
.link-more:hover {
    background: var(--fushia-600);
    border-color: var(--fushia-600);
    color: #fff;
    gap: 10px;
}
.link-more::after { content: '→'; }
/* ═══════════════════════════════════════════════════════════════════════════
   12. CTA / AVANTAGES section
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-section {
    position: relative;
    padding-top: 215px;
    padding-bottom: 100px;
    overflow: hidden;
    margin-bottom: -267px;
    background: #e2e8f0 url(../../images/footer-image.png) no-repeat 10% bottom;
    transition: var(--transition);
}

.cta-section__inner {
    display: flex;
    position: relative;
    z-index: 3;
    align-items: flex-end;
    padding-bottom: 0;
}

.cta-section__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-self: center;
    padding-bottom: 36px;
    
}

.cta-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    box-shadow: 0 0px 10px #0000000B;
}
.cta-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
}
.cta-card p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.85;
}

/* ── SVG shape transition → footer ──────────────────────── */
.footer-shape {
    display: block;
    line-height: 0;
    margin-top: -1px;
}
.footer-shape img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-divider {
    color: #ffffff17;
    margin: 12px 0 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   13. SITE FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer-shape {
    display: block;
    line-height: 0;
    margin-top: 0px;
    margin-bottom: -166px;
    height: 435px;
    width: 100%;
    position: relative;
    z-index: 2;
    background: url(../../images/footer-shape.svg) no-repeat 40% bottom;
    background-size: auto;
    background-size: cover;
}
.site-footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, #29374E, #10193A);
    color: #fffc;
    padding-top: 190px;
    padding-bottom: 12px;
}

.footer-top {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--slate-700);
}

.footer-brand .logo-link img { 
    height: 48px; width: auto; margin-bottom: 16px; 
}

.footer-brand p {
    font-size: 16px;
    color: #94A3B8;
    line-height: 1.85;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    transition: background var(--transition);
}
.footer-socials a:hover { background: var(--fushia-600); }
.footer-socials i {
    font-size: 18px;
    color: var(--color-white);
    line-height: 1;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 18px;
    letter-spacing: 5%;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}
.footer-col ul li a,
.footer-col ul li a:visited { color: rgba(255,255,255,0.65); }
.footer-col ul li a:hover { color: var(--color-white); }

.footer-nav--current {
    color: var(--color-white) !important;
    font-weight: 700;
}

.footer-col.footer-nav,
.footer-col.footer-services,
.footer-col.footer-links { 
    margin-top: 38px;
} 

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 20px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
    gap: 12px;
    font-size: 16px;
    letter-spacing: 0%;
    text-align: center;
    color: #94A3B8;

}
.footer-bottom a { 
    color: rgba(255,255,255,0.55); transition: color var(--transition); 
}
.footer-bottom a:hover { 
    color: var(--color-white); 
}
.footer-legal { 
    display: flex; 
    gap: 20px; 
    color: #94A3B8;
}

/* ═══════════════════════════════════════════════════════════════════════════
   14. PAGE TEMPLATES
   ═══════════════════════════════════════════════════════════════════════════ */
.page-hero {
    background: var(--color-bg);
    padding-block: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../../images/hero-background.png) no-repeat center center;
    background-size: 100%;
    opacity: .4;
    pointer-events: none;
    max-height: 400px;
    margin-top: 50px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--color-muted); font-size: 1.0625rem; max-width: 560px; margin-inline: auto; }

/* ── Breadcrumb intégré dans le hero ─────────────────────────────────────── */
.page-hero__breadcrumb { margin-bottom: 20px; }
.page-hero__breadcrumb ol {
    list-style: none;
    margin: 0; padding: 0;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 4px;
    background: rgba(0,0,0,.04);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 12.5px;
    color: var(--color-muted);
}
.page-hero__breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.page-hero__breadcrumb a {
    color: var(--color-muted);
    font-weight: 500;
    transition: color var(--transition);
}
.page-hero__breadcrumb a:hover { color: var(--fushia-600); }
.page-hero__breadcrumb li[aria-current] span { color: var(--slate-800); font-weight: 600; }
.page-hero__breadcrumb i { font-size: 13px; color: var(--slate-300); vertical-align: middle; }

.page-hero__form {
    margin-top: 32px;
}

.site-main .container { padding-block: 60px; }

/* ═══════════════════════════════════════════════════════════════════════════
   15. PAGINATION
   ═══════════════════════════════════════════════════════════════════════════ */
.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; }
.pagination .page-numbers {
    display: flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--slate-900);
    box-shadow: var(--shadow-card);
    transition: background var(--transition), color var(--transition);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--fushia-600); color: var(--color-white); }

/* ═══════════════════════════════════════════════════════════════════════════
   16. RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Laptops & desktops — 1500px */
@media screen and (max-width: 1500px) {
    .cta-section {
        background: #e2e8f0 url(../../images/footer-image.png) no-repeat 00% bottom;
    }
    
}

/* Small laptops & large tablets — 1200px */
@media screen and (max-width: 1240px) {
    

}

/* Tablet — 1024px */
@media screen and (max-width: 1024px) {
    .section { padding-block: 56px; }

    .hero .container { grid-template-columns: 1fr; }
    .hero__content { padding-bottom: 40px; }
    .hero__image { max-height: 340px; }

    .footer-top { grid-template-columns: repeat(3, 1fr);}
    .footer-brand {
        grid-column: 1 / -1;
    }

    .cta-section { padding-top: 60px; padding-bottom: 80px; margin-bottom: -300px; background-image: none; }
    .cta-section__image { display: none; }
    .cta-section__cards { grid-template-columns: repeat(3, 1fr); }
    .cta-section__cards div:first-child { display:none;}
    .footer-shape { height: 400px; margin-bottom: -120px; }
    .site-footer { padding-top: 160px; }

    .section-header { grid-template-columns: 1fr; }
    .section-header__btn { grid-column: 1; }

    .nav-toggle { display: flex; }
    .header-nav { display: none; }
    .header-nav.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 154px;
        left: 0;
        right: 0;
        max-height: calc(100dvh - 154px);
        overflow-y: auto;
        background: var(--color-white);
        padding: 16px var(--container-pad) 32px;
        border-top: 1px solid var(--color-border);
        box-shadow: 0 8px 32px rgba(26,30,60,0.15);
        z-index: 999;
        row-gap: 2px;
        transition: top var(--transition);
    }

    .site-header.is-scrolled .header-nav.is-open { top: 72px; }

    .admin-bar .site-header .header-nav.is-open { top: calc(154px + 32px); }
    .admin-bar .site-header.is-scrolled .header-nav.is-open { top: calc(72px + 32px); }
    .header-nav.is-open a { font-size: 1rem; padding: 12px 16px; }
    .header-nav.is-open .btn.btn--primary { margin-left: 0; margin-top: 8px; }
    .header-nav.is-open .btn.btn--primary a { color: var(--color-white)!important; font-size: 1rem; }
}

/* Mobile — 668px */
@media screen and (max-width: 668px) {
    :root { --container-pad: 16px; }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .hero { padding-block: 48px 0; min-height: unset; }
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .hero__image { max-height: 260px; }

    .cards-grid,
    .posts-grid { grid-template-columns: 1fr; }

    .cta-section { padding-top: 40px; padding-bottom: 40px; margin-bottom: -200px; }
    .cta-section__cards { grid-template-columns: 1fr; }
    .footer-shape { height: 280px; margin-bottom: -80px; }
    .site-footer { padding-top: 110px; }

    .footer-top { grid-template-columns: repeat(3, 1fr);}
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { flex-wrap: wrap; justify-content: center; }

    .header-auth .btn--sm { padding: 6px 10px !important; font-size: 13px !important; }
    .header-auth .btn--sm i { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   15. LOOP — Hero, Recherche, Filtres, Pagination
   ═══════════════════════════════════════════════════════════════════ */

/* Loop Hero ────────────────────────────────────────────────────── */
.loop-hero {
    padding-block: 80px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.loop-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../../images/hero-background.png) no-repeat center center;
    background-size: 110%;
    opacity: .3;
    pointer-events: none;
}

.loop-hero--formations .section-label { color: var(--emerald-600); }
.loop-hero .container  { position: relative; z-index: 1; }
.loop-hero .section-label { margin-bottom: 10px; }
.loop-hero h1          { margin-bottom: 14px; font-weight: 700; }
.loop-hero > .container > p {
    font-size: 18px;
    color: var(--slate-600);
    max-width: 580px;
    margin-inline: auto;
    margin-bottom: 36px;
    line-height: 1.8;
}

/* Loop Hero — stats (formations) */
.loop-hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}
.loop-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.loop-hero__stat strong {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--fushia-600);
    line-height: 1;
    letter-spacing: -0.5px;
}
.loop-hero--formations .loop-hero__stat strong { color: var(--emerald-600); }
.loop-hero__stat span    { font-size: 13px; color: var(--slate-500); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }

/* Loop Search ──────────────────────────────────────────────────── */
.loop-search {
    display: flex;
    max-width: 500px;
    margin-inline: auto;
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.loop-search input {
    flex: 1;
    padding: 13px 16px;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 15px;
    background: transparent;
    color: var(--slate-900);
}
.loop-search input::placeholder { color: var(--slate-400); }
.loop-search button {
    flex-shrink: 0;
    padding: 0 18px;
    background: var(--fushia-600);
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    transition: background var(--transition);
}
.loop-search button:hover { background: var(--fushia-700); }

/* Result count ─────────────────────────────────────────────────── */
.loop-result-count {
    font-size: 15px;
    color: var(--slate-500);
    margin-bottom: 28px;
}
.loop-result-count strong { color: var(--slate-900); }
.loop-result-count em     { color: var(--fushia-600); font-style: normal; font-weight: 600; }
.loop-result-count a      { color: var(--fushia-600); text-decoration: underline; text-underline-offset: 3px; }

/* Filter Bar ───────────────────────────────────────────────────── */
.filter-bar {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding-block: 14px;
    position: sticky;
    top: 72px; /* site-header */
    z-index: 50;
    box-shadow: 0 2px 8px rgba(26,30,60,.04);
    backdrop-filter: blur(8px);
}
.admin-bar .filter-bar { top: calc(72px + 32px); }
@media screen and (max-width: 782px) {
    .admin-bar .filter-bar { top: calc(72px + 46px); }
}
.filter-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.filter-bar__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-500);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 4px;
}

/* Filter Pills ─────────────────────────────────────────────────── */
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 99px;
    border: 1.5px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.filter-pill:hover {
    border-color: var(--fushia-600);
    color: var(--fushia-600);
    background: var(--fushia-50, #fdf4ff);
}
.filter-pill.is-active {
    background: var(--fushia-600);
    border-color: var(--fushia-600);
    color: #fff;
}
.filter-pill__count {
    font-size: 11px;
    opacity: .65;
}
.filter-pills-list { display: flex; flex-wrap: wrap; gap: 6px; }

/* Loop Empty ───────────────────────────────────────────────────── */
.loop-empty {
    text-align: center;
    padding-block: 80px;
    color: var(--color-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.loop-empty i { font-size: 56px; opacity: .3; line-height: 1; }
.loop-empty p { font-size: 18px; }

/* Pagination ───────────────────────────────────────────────────── */
.loop-pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 52px;
    flex-wrap: wrap;
}
.loop-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding-inline: 8px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
    background: var(--color-white);
    transition: all var(--transition);
    text-decoration: none;
}
.loop-pagination .page-numbers:hover,
.loop-pagination .page-numbers.current {
    background: var(--fushia-600);
    border-color: var(--fushia-600);
    color: #fff;
}
.loop-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    min-width: 24px;
    cursor: default;
}

/* ═══════════════════════════════════════════════════════════════════
   16. FORMATION CARDS
   ═══════════════════════════════════════════════════════════════════ */

.formation-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.formation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(26,30,60,0.13);
}
.formation-card__thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
    background: var(--slate-100);
}
.formation-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.formation-card:hover .formation-card__thumb img { transform: scale(1.04); }

.formation-card__thumb-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--slate-100), var(--fushia-100, #fae8ff));
}
.formation-card__thumb-placeholder i {
    font-size: 48px;
    color: var(--fushia-300, #f0abfc);
    line-height: 1;
}

.formation-card__duree {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--emerald-600);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.formation-card__body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.formation-card__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.formation-card__cat {
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue-600);
    background: var(--blue-50, #eff6ff);
    padding: 2px 8px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.formation-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}
.formation-card__title a { color: var(--slate-900); transition: color var(--transition); }
.formation-card__title a:hover { color: var(--fushia-600); }

.formation-card__excerpt {
    font-size: 14px;
    color: var(--color-muted);
    flex: 1;
    line-height: 1.65;
}
.formation-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}
.formation-card__public {
    font-size: 12px;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.formation-card__public i { font-size: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════
   16b. REALISATION CARD
   ═══════════════════════════════════════════════════════════════════ */

.realisation-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.realisation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(26,30,60,0.13);
}
.realisation-card__thumb {
    display: block;
    overflow: hidden;
    aspect-ratio: 3/2;
    position: relative;
    background: var(--slate-100);
}
.realisation-card__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.realisation-card:hover .realisation-card__thumb img { transform: scale(1.04); }

.realisation-card__thumb-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--slate-100), var(--fushia-100, #fae8ff));
}
.realisation-card__thumb-placeholder i {
    font-size: 48px;
    color: var(--fushia-300, #f0abfc);
    line-height: 1;
}
.realisation-card__badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.realisation-card__body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.realisation-card__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.realisation-card__cat {
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    color: var(--fushia-700, #a21caf);
    background: var(--fushia-50, #fdf4ff);
    padding: 2px 8px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.realisation-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
}
.realisation-card__title a { color: var(--slate-900); transition: color var(--transition); }
.realisation-card__title a:hover { color: var(--fushia-600); }

.realisation-card__excerpt {
    font-size: 14px;
    color: var(--color-muted);
    flex: 1;
    line-height: 1.65;
}
.realisation-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}
.realisation-card__client {
    font-size: 12px;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.realisation-card__client i { font-size: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════
   17. SINGLE ARTICLE
   ═══════════════════════════════════════════════════════════════════ */

.single-post__hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    background: var(--slate-900);
    overflow: hidden;
}
.single-post__hero--no-thumb {
    background: linear-gradient(135deg, var(--slate-800) 0%, #3b0764 100%);
    min-height: 340px;
}
.single-post__hero-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.single-post__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,25,.9) 0%, rgba(10,10,25,.4) 60%, transparent 100%);
}
.single-post__hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-block: 56px;
}

.single-post__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 18px;
}
.single-post__cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--fushia-300, #f0abfc);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1.5px solid rgba(240,171,252,.4);
    padding: 4px 10px;
    border-radius: 99px;
    transition: all var(--transition);
}
.single-post__cat:hover { background: rgba(240,171,252,.15); }
.single-post__date,
.single-post__read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgba(255,255,255,.65);
}
.single-post__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.22;
    margin-bottom: 14px;
    max-width: 820px;
}
.single-post__excerpt {
    color: rgba(255,255,255,.72);
    font-size: 17px;
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.single-post__author-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.65);
    font-size: 14px;
}
.single-post__author-inline strong { color: rgba(255,255,255,.9); }
.single-author__avatar--sm {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.3);
}

/* Body layout */
.single-post__body { padding-block: 64px; }
.single-post__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 296px;
    gap: 52px;
    align-items: start;
    max-width: var(--container-max);
    margin-inline: auto;
    width: 100%;
}

/* Entry content ────────────────────────────────────────────────── */
.entry-content {
    min-width: 0;
    overflow-wrap: anywhere;
}
.entry-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--slate-900);
    margin-top: 40px;
    margin-bottom: 14px;
}
.entry-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-top: 28px;
    margin-bottom: 10px;
}
.entry-content p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--slate-700);
    margin-bottom: 18px;
}
.entry-content ul,
.entry-content ol {
    margin-bottom: 18px;
    padding-left: 22px;
}
.entry-content li {
    font-size: 17px;
    line-height: 1.75;
    color: var(--slate-700);
    margin-bottom: 6px;
}
.entry-content ul li { list-style: disc; }
.entry-content ol li { list-style: decimal; }
.entry-content strong { font-weight: 700; color: var(--slate-900); }
.entry-content a {
    color: var(--fushia-600);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.entry-content a:hover { color: var(--fushia-700); }
.entry-content blockquote {
    border-left: 4px solid var(--fushia-600);
    margin-block: 24px;
    padding: 16px 20px;
    background: var(--fushia-50, #fdf4ff);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.entry-content blockquote p { color: var(--slate-800); margin-bottom: 0; font-style: italic; }
.entry-content img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-block: 24px;
}
.entry-content :first-child { margin-top: 0; }

/* Entry tags */
.entry-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid var(--color-border);
}
.entry-tags__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Entry prev/next nav */
.entry-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}
.entry-nav__link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    background: var(--color-white);
    text-decoration: none;
}
.entry-nav__link:hover {
    border-color: var(--fushia-600);
    background: var(--fushia-50, #fdf4ff);
}
.entry-nav__link--next { text-align: right; grid-column: 2; }
.entry-nav__dir {
    font-size: 12px;
    font-weight: 700;
    color: var(--fushia-600);
    display: flex;
    align-items: center;
    gap: 4px;
}
.entry-nav__link--next .entry-nav__dir { justify-content: flex-end; }
.entry-nav__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-800);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Single Aside Cards */
.single-post__sidebar,
.single-formation__sidebar,
.single-realisation__sidebar {
    position: sticky;
    top: calc(72px + 24px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 4px;
}
.admin-bar .single-post__sidebar,
.admin-bar .single-formation__sidebar,
.admin-bar .single-realisation__sidebar {
    top: calc(72px + 32px + 24px);
}
.single-aside {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}
.single-aside__title {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.single-aside__title i { color: var(--fushia-600); }
.single-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.single-author__avatar {
    width: 52px !important; height: 52px !important;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    flex-shrink: 0;
}
.single-author__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--slate-900);
    margin: 0;
}

/* Share buttons */
.share-list { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: opacity var(--transition);
}
.share-btn:hover { opacity: .82; color: #fff; }
.share-btn--linkedin { background: #0077b5; }
.share-btn--twitter  { background: #1da1f2; }

/* Full-width button utility */
.btn--full-width { width: 100%; justify-content: center; }

/* Related section */
.related-section {
    background: var(--slate-50, #f8fafc);
    border-top: 1px solid var(--color-border);
}

/* ═══════════════════════════════════════════════════════════════════
   18. SINGLE FORMATION
   ═══════════════════════════════════════════════════════════════════ */

.single-formation__hero {
    background: linear-gradient(135deg, var(--slate-900) 0%, #1e1448 100%);
    padding-block: 72px 60px;
    position: relative;
    overflow: hidden;
}
.single-formation__hero.has-thumb {
    min-height: 480px;
    display: flex;
    align-items: flex-end;
}
.single-formation__hero-img {
    position: absolute;
    inset: 0;
}
.single-formation__hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .25;
}
.single-formation__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,20,.95) 0%, rgba(5,5,20,.5) 60%, rgba(5,5,20,.25) 100%);
}
.single-formation__hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-block: 20px;
}

.single-breadcrumb {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.single-breadcrumb a  { color: rgba(255,255,255,.55); transition: color var(--transition); }
.single-breadcrumb a:hover { color: rgba(255,255,255,.9); }
.single-breadcrumb i  { font-size: 14px; opacity: .4; }

.single-formation__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.single-formation__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 860px;
}
.single-formation__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.72);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.single-formation__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.formation-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
}
.formation-chip--emerald {
    background: rgba(5,150,105,.3);
    border-color: rgba(52,211,153,.4);
    color: #6ee7b7;
}

/* Formation body layout */
.single-formation__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 324px;
    gap: 52px;
    align-items: start;
    max-width: var(--container-max);
    margin-inline: auto;
    width: 100%;
}

/* Formation content blocks */
.formation-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}
.formation-block:last-child { border-bottom: none; margin-bottom: 0; }

.formation-block__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--fushia-600);
}
.formation-block__title i {
    color: var(--fushia-600);
    font-size: 1.2rem;
}
.formation-block__content p,
.formation-block__content li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--slate-700);
}

/* Objectifs avec puces stylées */
.formation-objectifs p { margin-bottom: 8px; }
.formation-objectifs li::before { content: '✓ '; color: var(--emerald-600); font-weight: 700; }

/* Sidebar formation */
.formation-sidebar-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 32px rgba(26,30,60,.08);
    border: 1px solid var(--color-border);
    overflow: hidden;
    margin-bottom: 16px;
}
.formation-sidebar-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    padding: 18px 20px 0;
    margin-bottom: 16px;
}
.formation-info-list {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.formation-info-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-block: 12px;
    border-bottom: 1px solid var(--color-border);
}
.formation-info-list__item:last-child { border-bottom: none; }
.formation-info-list__icon {
    width: 32px; height: 32px;
    border-radius: var(--radius-sm);
    background: var(--fushia-50, #fdf4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.formation-info-list__icon i { color: var(--fushia-600); font-size: 16px; line-height: 1; }
.formation-info-list__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--slate-400);
    margin-bottom: 2px;
}
.formation-info-list__value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-800);
    line-height: 1.4;
}
.formation-sidebar-card__cta {
    padding: 0 20px 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   18b. SINGLE RÉALISATION
   ═══════════════════════════════════════════════════════════════════ */

.single-realisation__hero {
    background: linear-gradient(135deg, var(--slate-900) 0%, #1e1448 100%);
    padding-block: 72px 60px;
    position: relative;
    overflow: hidden;
}
.single-realisation__hero.has-thumb {
    min-height: 480px;
    display: flex;
    align-items: flex-end;
}
.single-realisation__hero-img {
    position: absolute;
    inset: 0;
}
.single-realisation__hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .25;
}
.single-realisation__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,20,.95) 0%, rgba(5,5,20,.5) 60%, rgba(5,5,20,.25) 100%);
}
.single-realisation__hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-block: 20px;
}
.single-realisation__cats {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.single-realisation__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 860px;
}
.single-realisation__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.72);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.single-realisation__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.formation-chip--link {
    background: rgba(162,28,175,.25);
    border-color: rgba(217,70,239,.35);
    color: #e879f9;
    text-decoration: none;
    transition: background var(--transition);
}
.formation-chip--link:hover {
    background: rgba(162,28,175,.4);
    color: #fff;
}

/* Layout body */
.single-realisation__body { padding-block: 64px; }
.single-realisation__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 324px;
    gap: 52px;
    align-items: start;
    max-width: var(--container-max);
    margin-inline: auto;
    width: 100%;
}

/* Galerie photos */
.realisation-galerie {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.realisation-galerie__item {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/2;
    transition: box-shadow var(--transition), transform var(--transition);
}
.realisation-galerie__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(26,30,60,.15);
}
.realisation-galerie__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.realisation-galerie__item:hover img { transform: scale(1.04); }

/* Tags technologies dans la sidebar */
.realisation-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

/* Info-cards dans la sidebar (client, catégorie, techs) */
.formation-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}
.formation-info-card__icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: var(--fushia-50, #fdf4ff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.formation-info-card__icon i { color: var(--fushia-600); font-size: 17px; line-height: 1; }
.formation-info-card__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--slate-400);
    margin-bottom: 3px;
}
.formation-info-card__value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-800);
    line-height: 1.45;
}

/* ═══════════════════════════════════════════════════════════════════
   19. RESPONSIVE — Loops & Singles
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .single-post__layout,
    .single-formation__layout,
    .single-realisation__layout {
        grid-template-columns: 1fr;
    }
    .single-post__sidebar,
    .single-formation__sidebar,
    .single-realisation__sidebar {
        position: static;
        border-left: none;
        border-top: 3px solid var(--fushia-100, #fae8ff);
        padding-left: 0;
        padding-top: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        flex-direction: unset;
    }
    .formation-sidebar-card { grid-column: 1 / -1; }
    .btn--full-width         { grid-column: 1 / -1; }
    .formations-cta__inner   { grid-template-columns: 1fr; }
    .formations-cta__actions { justify-content: flex-start; }
}
@media (max-width: 768px) {
    .loop-hero { padding-block: 56px 48px; }
    .loop-hero__stats { gap: 24px; padding-top: 28px; }
    .single-post__hero  { min-height: 300px; }
    .single-post__title { font-size: 1.75rem; }
    .single-formation__title { font-size: 1.75rem; }
    .single-post__sidebar,
    .single-formation__sidebar {
        grid-template-columns: 1fr;
        border-top-color: var(--color-border);
    }
    .entry-nav { grid-template-columns: 1fr; }
    .entry-nav__link--next { grid-column: 1; }
    .related-section .posts-grid { grid-template-columns: 1fr; }
    .filter-bar { top: 72px; }
    .loop-search { max-width: 100%; }
    .single-realisation__title { font-size: 1.75rem; }
    .single-realisation__sidebar {
        grid-template-columns: 1fr;
        border-top-color: var(--color-border);
    }
    .realisation-galerie { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE — Bento Services (home-services)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Bento grid : grande carte dark à gauche, 3 cartes blanches à droite */
.home-services__bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}
.home-services__bento .svc-card--featured {
    grid-row: 1 / 4;
}
@media (max-width: 768px) {
    .home-services__bento { grid-template-columns: 1fr; }
    .home-services__bento .svc-card--featured { grid-row: span 1; }
}

/* ─── Base card ──────────────────────────────────────────────────────────── */
.svc-card {
    border-radius: 16px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.svc-card:hover { transform: translateY(-5px); }

/* ─── Grande carte (dark navy) ───────────────────────────────────────────── */
.svc-card--featured {
    background: var(--slate-900);
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.svc-card--featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(37,99,235,.28) 0%, transparent 65%);
    pointer-events: none;
}
.svc-card--featured:hover { box-shadow: 0 20px 60px rgba(15,23,42,.45); }

/* ─── Petites cartes (fond blanc) ──────────────────────────────────────── */
.svc-card:not(.svc-card--featured) {
    background: var(--color-white);
    padding: 28px;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-card);
}
.svc-card:not(.svc-card--featured):hover { box-shadow: 0 10px 32px rgba(26,30,60,.12); }

/* Bandeau couleur en haut des petites cartes */
.svc-card--blue   { border-top: 3px solid var(--blue-600);   }
.svc-card--fushia  { border-top: 3px solid var(--fushia-600);  }
.svc-card--emerald { border-top: 3px solid var(--emerald-600); }

/* ─── Icône ──────────────────────────────────────────────────────────────── */
.svc-card__icon {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* Icône — grande carte */
.svc-card--featured .svc-card__icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,.10);
    border: 1.5px solid rgba(255,255,255,.14);
    margin-bottom: 24px;
}
.svc-card--featured .svc-card__icon i { font-size: 34px; color: rgba(255,255,255,.92); }
/* Icônes — petites cartes */
.svc-card:not(.svc-card--featured) .svc-card__icon { width: 52px; height: 52px; }
.svc-card--fushia  .svc-card__icon             { background: var(--fushia-50);  }
.svc-card--fushia  .svc-card__icon i           { font-size: 24px; color: var(--fushia-600); }
.svc-card--emerald .svc-card__icon             { background: var(--emerald-50); }
.svc-card--emerald .svc-card__icon i           { font-size: 24px; color: var(--emerald-600); }
.svc-card--blue    .svc-card__icon             { background: var(--blue-50); }
.svc-card--blue    .svc-card__icon i           { font-size: 24px; color: var(--blue-600); }

/* ─── Corps ──────────────────────────────────────────────────────────────── */
.svc-card__body { flex: 1; }
/* Corps — grande carte */
.svc-card--featured .svc-card__body h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 14px;
}
.svc-card--featured .svc-card__body p {
    font-size: 16px;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
}
/* Corps — petites cartes */
.svc-card:not(.svc-card--featured) .svc-card__body h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.svc-card:not(.svc-card--featured) .svc-card__body p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.65;
}

/* ─── Liste de features (grande carte) ──────────────────────────────────── */
.svc-card__list {
    margin: 20px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.svc-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255,255,255,.88);
}
.svc-card__list li i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}

/* ─── Lien CTA ───────────────────────────────────────────────────────────── */
.svc-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    transition: gap var(--transition), color var(--transition);
}
.svc-card--featured .svc-card__cta {
    color: rgba(255,255,255,.88);
    border-bottom: 1.5px solid rgba(255,255,255,.30);
    padding-bottom: 2px;
}
.svc-card:not(.svc-card--featured) .svc-card__cta {
    margin-top: 14px;
    color: var(--fushia-600);
}
.svc-card:hover .svc-card__cta { gap: 10px; }

/* ─── Badge « Populaire » (grande carte) ─────────────────────────────────── */
.svc-card__tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--fushia-600);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 99px;
    letter-spacing: .4px;
    z-index: 1;
}

/* ─── Icône décorative en fond (grande carte) ─────────────────────────────── */
.svc-card__deco {
    position: absolute;
    bottom: -24px;
    right: -16px;
    font-size: 200px;
    line-height: 1;
    color: rgba(255,255,255,.03);
    pointer-events: none;
    user-select: none;
}

/* empty state */
.empty-state { text-align: center; color: var(--color-muted); padding: 40px 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   BOUTONS supplémentaires
   ═══════════════════════════════════════════════════════════════════════════ */
.btn--ghost {
    background: transparent;
    color: var(--fushia-600);
    border: 2px solid var(--fushia-200);
}
.btn--ghost:hover {
    background: var(--fushia-50);
    border-color: var(--fushia-400);
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.4);
}
.btn--outline-light:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.8);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HERO — Toutes les pages statiques
   ═══════════════════════════════════════════════════════════════════════════ */
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; justify-content: center; }
.page-hero h1 em { font-style: normal; color: var(--fushia-600); }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE SERVICES — Grille de cartes listing (svc-cards-grid)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Liste à puces colorées (réutilisée dans les pages services individuelles) */
.svc-row__feats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.svc-row__feats li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--slate-700);
}
.svc-row__feats i { color: var(--emerald-600); font-size: 18px; flex-shrink: 0; }

/* Grille 2×2 de la page listing */
.svc-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
@media (max-width: 768px) { .svc-cards-grid { grid-template-columns: 1fr; } }

.svc-card-listing {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    border-top: 4px solid transparent;
}
.svc-card-listing:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26,30,60,.10);
}
.svc-card-listing--blue    { border-top-color: var(--blue-600);    }
.svc-card-listing--fushia  { border-top-color: var(--fushia-600);  }
.svc-card-listing--emerald { border-top-color: var(--emerald-600); }
.svc-card-listing--amber   { border-top-color: #D97706;            }

/* En-tête : icône + numéro décoratif */
.svc-card-listing__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 28px 28px 0;
}
.svc-card-listing__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.svc-card-listing--blue    .svc-card-listing__icon { background: var(--blue-50);    color: var(--blue-600);    }
.svc-card-listing--fushia  .svc-card-listing__icon { background: var(--fushia-50);  color: var(--fushia-600);  }
.svc-card-listing--emerald .svc-card-listing__icon { background: var(--emerald-50); color: var(--emerald-600); }
.svc-card-listing--amber   .svc-card-listing__icon { background: #FEF3C7;           color: #D97706;            }
.svc-card-listing__icon i { font-size: 28px; line-height: 1; }

.svc-card-listing__num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--slate-100);
    letter-spacing: -3px;
    user-select: none;
}

/* Corps */
.svc-card-listing__body {
    padding: 20px 28px;
    flex: 1;
}
.svc-card-listing__body h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}
.svc-card-listing__body > p {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Grille 2 colonnes pour les features */
.svc-card-listing__feats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px 16px;
}
.svc-card-listing__feats li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
    line-height: 1.6;
}
.svc-card-listing__feats i { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.svc-card-listing--blue    .svc-card-listing__feats i { color: var(--blue-600);    }
.svc-card-listing--fushia  .svc-card-listing__feats i { color: var(--fushia-600);  }
.svc-card-listing--emerald .svc-card-listing__feats i { color: var(--emerald-600); }
.svc-card-listing--amber   .svc-card-listing__feats i { color: #D97706;            }

/* Pied de carte */
.svc-card-listing__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 28px 28px;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}



/* ═══════════════════════════════════════════════════════════════════════════
   19. PAGES STATIQUES — Services, À propos (design system partagé)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Section de base ────────────────────────────────────────────── */
.page-section {
    background: var(--color-bg);
    padding-block: 56px 80px;
}

/* ── Grille features 3 colonnes ─────────────────────────────────── */
.svc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.svc-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 18px;
    background: var(--slate-50);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: box-shadow var(--transition), transform var(--transition);
}
.svc-feature-item:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,30,60,.07); }
.svc-feature-item__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.svc-feature-item__icon--blue    { background: var(--blue-50);    color: var(--blue-600); }
.svc-feature-item__icon--fushia  { background: var(--fushia-50);  color: var(--fushia-600); }
.svc-feature-item__icon--emerald { background: var(--emerald-50); color: var(--emerald-600); }
.svc-feature-item__icon i { font-size: 20px; line-height: 1; }
.svc-feature-item__text h3 { font-size: 14px; font-weight: 700; color: var(--color-dark); margin-bottom: 4px; line-height: 1.4; }
.svc-feature-item__text p  { font-size: 13px; color: var(--color-muted); line-height: 1.6; margin: 0; }

/* ── Types de sites / offres ────────────────────────────────────── */
.svc-offers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.svc-offer-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.svc-offer-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,30,60,.10); }
.svc-offer-card--featured {
    background: var(--color-dark);
    border-color: var(--fushia-600);
}
.svc-offer-card__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 99px;
    background: var(--fushia-600);
    color: #fff;
    margin-bottom: 12px;
}
.svc-offer-card__num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--slate-100); line-height: 1; margin-bottom: 8px; }
.svc-offer-card--featured .svc-offer-card__num { color: rgba(255,255,255,.15); }
.svc-offer-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-dark); margin-bottom: 10px; }
.svc-offer-card--featured h3 { color: var(--color-white); }
.svc-offer-card > p { font-size: 13px; color: var(--color-muted); line-height: 1.65; margin-bottom: 14px; }
.svc-offer-card--featured > p { color: var(--slate-400); }
.svc-offer-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.svc-offer-card ul li { font-size: 13px; font-weight: 600; color: var(--slate-700); display: flex; align-items: center; gap: 7px; }
.svc-offer-card ul li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--fushia-600);
    flex-shrink: 0;
}
.svc-offer-card--featured ul li { color: var(--slate-300); }

/* ── Processus étapes ───────────────────────────────────────────── */
.svc-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
}
.svc-step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}
.svc-step-item:last-child { border-bottom: none; padding-bottom: 0; }
.svc-step-item__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--fushia-600);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    flex-shrink: 0;
}
.svc-step-item__content h3 { font-size: 15px; font-weight: 700; color: var(--color-dark); margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
.svc-step-item__content h3 i { color: var(--fushia-600); font-size: 17px; }
.svc-step-item__content p { font-size: 14px; color: var(--color-muted); line-height: 1.7; margin: 0; }

/* ── Grille avantages (3 items) ─────────────────────────────────── */
.svc-adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.svc-adv-item {
    padding: 22px 20px;
    background: var(--slate-50);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}
.svc-adv-item > i { font-size: 2rem; color: var(--fushia-600); display: block; margin-bottom: 14px; line-height: 1; }
.svc-adv-item h3 { font-size: 1rem; font-weight: 700; color: var(--color-dark); margin-bottom: 8px; }
.svc-adv-item p  { font-size: 14px; color: var(--color-muted); line-height: 1.7; margin: 0; }

/* ── Livrables / liste items 2 colonnes ─────────────────────────── */
.svc-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 20px;
}
.svc-deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}
.svc-deliverable-item__icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-md);
    background: var(--emerald-50);
    color: var(--emerald-600);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.svc-deliverable-item__icon i { font-size: 18px; }
.svc-deliverable-item h3 { font-size: 13.5px; font-weight: 700; color: var(--color-dark); margin-bottom: 3px; }
.svc-deliverable-item p  { font-size: 13px; color: var(--color-muted); line-height: 1.6; margin: 0; }

/* ── Bloc CTA impression / accent ───────────────────────────────── */
.svc-accent-block {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1D2B6B 100%);
    border-radius: var(--radius-md);
    padding: 30px 34px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    margin-top: 20px;
}
.svc-accent-block h3 { font-size: 1.1rem; color: var(--color-white); margin-bottom: 8px; font-family: var(--font-heading); }
.svc-accent-block p  { font-size: 14px; color: var(--slate-400); line-height: 1.7; margin: 0; }
.svc-accent-block ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.svc-accent-block ul li { font-size: 14px; font-weight: 600; color: var(--slate-300); display: flex; align-items: center; gap: 8px; }
.svc-accent-block ul li i { color: var(--emerald-400); font-size: 16px; flex-shrink: 0; }
.svc-accent-block__cta { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; flex-shrink: 0; }
.svc-accent-block__cta i { font-size: 3rem; color: var(--fushia-400); line-height: 1; display: block; }
.svc-accent-block__cta p { font-size: 13px; color: var(--slate-400); margin: 0; }

/* ── À PROPOS — statistiques ────────────────────────────────────── */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.about-stat-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}
.about-stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(26,30,60,.08); }
.about-stat-card strong { display: block; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--fushia-600); line-height: 1; }
.about-stat-card span { display: block; font-size: 13px; font-weight: 600; color: var(--color-muted); margin-top: 8px; }

/* ── À PROPOS — valeurs ─────────────────────────────────────────── */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.about-value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}
.about-value-item:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,30,60,.08); }
.about-value-item__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--fushia-50);
    color: var(--fushia-600);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.about-value-item__icon i { font-size: 22px; }
.about-value-item h3 { font-size: 1rem; font-weight: 700; color: var(--color-dark); margin-bottom: 6px; }
.about-value-item p  { font-size: 13.5px; color: var(--color-muted); line-height: 1.7; margin: 0; }

/* ── Contact — refonte intro ───────────────────────────────────── */
.contact-intro-banner {
    background: linear-gradient(135deg, var(--fushia-50) 0%, var(--blue-50) 100%);
    border: 1px solid var(--fushia-200);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 36px;
}
.contact-intro-banner__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--fushia-600);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-intro-banner__icon i { font-size: 22px; color: #fff; }
.contact-intro-banner p { font-size: 14.5px; color: var(--slate-700); line-height: 1.75; margin: 0; }
.contact-intro-banner strong { color: var(--fushia-700); }

/* ── check-list (partagée : about + homepage) ───────────────────── */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.5;
}
.check-list li i { color: var(--fushia-600); font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ═══════════════════════════════════════════════════════════════════
   17. PAGES LÉGALES — CGU / Mentions légales / RGPD / Cookies
   ═══════════════════════════════════════════════════════════════════ */

.legal-section {
    background: var(--color-bg);
    padding-block: 56px 80px;
}

/* ── Layout sidebar + contenu ───────────────────────────────────── */
.legal-layout {
    display: grid;
    grid-template-columns: 256px 1fr;
    gap: 48px;
    align-items: start;
}

/* ── Sidebar : table des matières ───────────────────────────────── */
.legal-toc {
    position: sticky;
    top: 100px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    overflow: hidden;
}
.legal-toc__header {
    padding: 14px 20px;
    background: var(--fushia-50);
    border-bottom: 1px solid var(--fushia-200);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--fushia-700);
    display: flex;
    align-items: center;
    gap: 8px;
}
.legal-toc__header i { font-size: 15px; }
.legal-toc__list {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}
.legal-toc__list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    font-size: 13.5px;
    color: var(--color-text);
    font-weight: 500;
    transition: all var(--transition);
    border-left: 3px solid transparent;
    text-decoration: none;
    line-height: 1.4;
}
.legal-toc__list li a:hover,
.legal-toc__list li a.is-active {
    color: var(--fushia-600);
    border-left-color: var(--fushia-600);
    background: var(--fushia-50);
}
.legal-toc__list li a .toc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--slate-100);
    font-size: 10px;
    font-weight: 700;
    color: var(--slate-500);
    flex-shrink: 0;
    transition: all var(--transition);
}
.legal-toc__list li a:hover .toc-num,
.legal-toc__list li a.is-active .toc-num {
    background: var(--fushia-600);
    color: #fff;
}

/* ── Contenu principal ──────────────────────────────────────────── */
.legal-content { min-width: 0; }

/* Badge "Dernière mise à jour" */
.legal-update-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--slate-500);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 28px;
    font-weight: 500;
    box-shadow: var(--shadow-card);
}
.legal-update-badge i { color: var(--fushia-600); font-size: 14px; }

/* Boîte intro */
.legal-intro {
    background: linear-gradient(135deg, var(--fushia-50) 0%, var(--blue-50) 100%);
    border: 1px solid var(--fushia-200);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.legal-intro__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--fushia-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.legal-intro__icon i { font-size: 22px; color: #fff; }
.legal-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--slate-700);
}
.legal-intro strong { color: var(--fushia-700); }

/* Blocs sections */
.legal-block {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    padding: 30px 34px;
    margin-bottom: 20px;
    scroll-margin-top: 110px;
}
.legal-block h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.3;
}
.legal-block h2 .legal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--fushia-600);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.legal-block h2 i {
    color: var(--fushia-600);
    font-size: 20px;
    flex-shrink: 0;
}
.legal-block p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 12px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul,
.legal-block ol {
    padding-left: 0;
    list-style: none;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.legal-block ul li,
.legal-block ol li {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}
.legal-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fushia-600);
    opacity: 0.65;
}
.legal-block a {
    color: var(--fushia-600);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}
.legal-block a:hover { color: var(--fushia-700); }

/* Info highlight */
.legal-highlight {
    background: var(--blue-50);
    border-left: 3px solid var(--blue-500);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 13px 18px;
    margin-top: 16px;
    font-size: 14.5px;
    color: var(--slate-700);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.legal-highlight i { color: var(--blue-500); font-size: 17px; flex-shrink: 0; margin-top: 2px; }

/* Grille des droits */
.legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
}
.legal-right-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 15px;
    background: var(--slate-50);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
}
.legal-right-item i {
    color: var(--fushia-600);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.legal-right-item strong { display: block; color: var(--color-dark); font-size: 13px; margin-bottom: 2px; }

/* Tableau cookies */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--color-border);
}
.legal-table thead tr { background: var(--color-dark); color: var(--color-white); }
.legal-table thead th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.3px;
}
.legal-table tbody tr {
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition);
}
.legal-table tbody tr:last-child { border-bottom: none; }
.legal-table tbody tr:hover { background: var(--slate-50); }
.legal-table td {
    padding: 12px 16px;
    color: var(--color-text);
    vertical-align: middle;
    line-height: 1.5;
}
.legal-table td:first-child {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-800);
}
.legal-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.legal-badge--functional { background: var(--emerald-100); color: var(--emerald-700); }
.legal-badge--analytic   { background: var(--blue-100);    color: var(--blue-700); }
.legal-badge--necessary  { background: var(--slate-100);   color: var(--slate-600); }

/* Boîte de contact CTA en bas de page */
.legal-cta {
    background: linear-gradient(135deg, var(--color-dark) 0%, #2D1B69 100%);
    border-radius: var(--radius-md);
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.legal-cta__text h3 {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}
.legal-cta__text p { font-size: 14px; color: var(--slate-400); margin: 0; line-height: 1.6; }
.legal-cta .btn { flex-shrink: 0; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media screen and (max-width: 1024px) {
    .legal-layout { grid-template-columns: 1fr; }
    .legal-toc {
        position: static;
    }
    .legal-toc__list {
        display: flex;
        flex-wrap: wrap;
        padding: 10px 14px 14px;
        gap: 5px;
    }
    .legal-toc__list li a {
        padding: 6px 12px;
        border-left: none;
        border-radius: 99px;
        border: 1.5px solid var(--color-border);
        font-size: 13px;
        gap: 5px;
    }
    .legal-toc__list li a:hover,
    .legal-toc__list li a.is-active {
        border-color: var(--fushia-600);
        background: var(--fushia-600);
        color: #fff;
    }
    .legal-toc__list li a .toc-num { display: none; }
}
@media screen and (max-width: 668px) {
    .legal-block { padding: 20px 18px; }
    .legal-rights-grid { grid-template-columns: 1fr; }
    .legal-cta { flex-direction: column; text-align: center; }
    .legal-table { font-size: 13px; }
    .legal-table th,
    .legal-table td { padding: 10px 12px; }
}

/* ── Responsive pages statiques ─────────────────────────────────── */
@media screen and (max-width: 1024px) {
    .svc-features-grid    { grid-template-columns: repeat(2, 1fr); }
    .svc-offers-grid      { grid-template-columns: repeat(2, 1fr); }
    .svc-adv-grid         { grid-template-columns: repeat(2, 1fr); }
    .svc-deliverables-grid{ grid-template-columns: 1fr; }
    .about-values-grid    { grid-template-columns: 1fr; }
    .about-stats-grid     { grid-template-columns: repeat(4, 1fr); }
    .contact-container    { grid-template-columns: 1fr; }
    .contact-info-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
    .svc-accent-block     { grid-template-columns: 1fr; }
}
@media screen and (max-width: 668px) {
    .svc-features-grid    { grid-template-columns: 1fr; }
    .svc-offers-grid      { grid-template-columns: 1fr; }
    .svc-adv-grid         { grid-template-columns: 1fr; }
    .about-stats-grid     { grid-template-columns: repeat(2, 1fr); }
    .about-values-grid    { grid-template-columns: 1fr; }
    .contact-row          { grid-template-columns: 1fr; }
    .contact-type-cards   { grid-template-columns: 1fr 1fr; }
    .contact-checkboxes   { grid-template-columns: 1fr; }
    .contact-info-sidebar { grid-template-columns: 1fr; }
    .admin-bar .header-nav.is-open { top: calc(72px + 46px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   20. PAGE CONTACT
   ═══════════════════════════════════════════════════════════════════════════ */

.contact-section { padding-block: 72px 96px; }
.contact-container { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }

/* Form header */
.contact-form-header { margin-bottom: 40px; }
.contact-form-header .section-label { display: block; margin-bottom: 10px; }
.contact-form-header h2 { margin-bottom: 10px; font-size: clamp(1.6rem, 3vw, 2rem); }
.contact-form-header p { color: var(--color-muted); font-size: 15px; }

/* Section divider */
.contact-section-divider {
    display: flex; align-items: center; gap: 10px;
    margin-block: 28px 18px; padding-bottom: 10px;
    border-bottom: 1.5px solid var(--color-border);
    font-size: 12px; font-weight: 700; font-family: var(--font-body);
    color: var(--slate-600); text-transform: uppercase; letter-spacing: 0.06em;
}
.contact-section-divider:first-child { margin-top: 0; }
.contact-section-divider i { font-size: 16px; color: var(--fushia-600); line-height: 1; }

/* Row */
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

/* Field */
.contact-field { margin-bottom: 16px; }
.contact-row .contact-field { margin-bottom: 0; }
.contact-label { display: block; font-size: 13px; font-weight: 700; color: var(--slate-800); margin-bottom: 6px; }
.contact-required { color: var(--fushia-600); margin-left: 2px; }
.contact-hint { display: block; font-size: 12px; color: var(--color-muted); margin-top: 5px; }

/* Inputs */
.contact-input, .contact-select, .contact-textarea {
    width: 100%; font-family: var(--font-body); font-size: 14px;
    color: var(--slate-900); background: var(--color-white);
    border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
    outline: none; transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-input, .contact-select { height: 44px; padding: 0 14px; }
.contact-select { cursor: pointer; }
.contact-textarea { padding: 12px 14px; resize: vertical; }
.contact-input:focus, .contact-select:focus, .contact-textarea:focus {
    border-color: var(--fushia-500);
    box-shadow: 0 0 0 3px rgba(212, 70, 239, 0.10);
}

/* Radio chips */
.contact-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.contact-chip-label { cursor: pointer; }
.contact-chip-label input { position: absolute; opacity: 0; width: 0; height: 0; }
.contact-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; border: 1.5px solid var(--color-border); border-radius: 99px;
    font-size: 13px; font-weight: 600; font-family: var(--font-body);
    color: var(--color-muted); background: var(--color-white);
    transition: all var(--transition); line-height: 1;
}
.contact-chip i { font-size: 14px; }
.contact-chip-label:hover .contact-chip,
.contact-chip-label input:checked + .contact-chip {
    border-color: var(--fushia-500); background: var(--fushia-50); color: var(--fushia-700);
}

/* Type demand cards */
.contact-type-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 4px; }
.contact-type-card { cursor: pointer; }
.contact-type-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.contact-type-card span {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    padding: 20px 16px; border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
    background: var(--color-white); text-align: center; transition: all var(--transition); min-height: 100px;
}
.contact-type-card span i { font-size: 1.6rem; color: var(--color-muted); line-height: 1; transition: color var(--transition); }
.contact-type-card span strong { font-size: 14px; font-weight: 700; color: var(--color-dark); display: block; }
.contact-type-card span small { font-size: 12px; color: var(--color-muted); display: block; }
.contact-type-card:hover span,
.contact-type-card input:checked + span {
    border-color: var(--fushia-500); background: var(--fushia-50);
    box-shadow: 0 0 0 3px rgba(212,70,239,0.08);
}
.contact-type-card input:checked + span i { color: var(--fushia-600); }

/* Checkboxes */
.contact-checkboxes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 4px; }
.contact-check-label { cursor: pointer; }
.contact-check-label input { position: absolute; opacity: 0; width: 0; height: 0; }
.contact-check {
    display: flex; align-items: center; gap: 8px; padding: 8px 12px;
    border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 600; color: var(--color-muted);
    background: var(--color-white); transition: all var(--transition);
}
.contact-check i { font-size: 15px; }
.contact-check-label:hover .contact-check,
.contact-check-label input:checked + .contact-check {
    border-color: var(--fushia-500); background: var(--fushia-50); color: var(--fushia-700);
}

/* RGPD consent */
.contact-consent { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--color-muted); line-height: 1.6; }
.contact-consent input[type="checkbox"] { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--fushia-600); cursor: pointer; }
.contact-consent a { color: var(--fushia-600); text-decoration: underline; }

/* Feedback */
.contact-feedback {
    display: flex; align-items: flex-start; gap: 8px;
    padding: 12px 16px; border-radius: var(--radius-md);
    font-size: 14px; font-weight: 600; margin-bottom: 16px; line-height: 1.5;
}
.contact-feedback--success { background: var(--emerald-50); color: #065f46; border: 1px solid var(--emerald-200); }
.contact-feedback--error { background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }
.contact-feedback i { font-size: 16px; flex-shrink: 0; line-height: 1; margin-top: 1px; }

/* Info sidebar */
.contact-info-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-info-block {
    background: var(--color-white); border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-card);
}
.contact-info-block h3 { font-size: 15px; font-weight: 700; color: var(--color-dark); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.contact-info-block h3 i { color: var(--fushia-600); font-size: 17px; line-height: 1; }
.contact-info-block--accent {
    background: linear-gradient(135deg, var(--fushia-50) 0%, var(--color-white) 100%);
    border-color: var(--fushia-200); text-align: center;
}
.contact-info-block__icon { font-size: 2.4rem; color: var(--fushia-500); display: block; margin-bottom: 12px; line-height: 1; }
.contact-info-block--accent h3 { justify-content: center; margin-bottom: 8px; font-size: 16px; }
.contact-info-block--accent p { font-size: 13px; color: var(--color-muted); margin-bottom: 0; }

/* Info list */
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 12px; }
.contact-info-list li > i { font-size: 18px; color: var(--fushia-600); flex-shrink: 0; margin-top: 1px; line-height: 1; }
.contact-info-list li div { display: flex; flex-direction: column; gap: 2px; }
.contact-info-list li strong { font-size: 12px; font-weight: 700; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.contact-info-list li a, .contact-info-list li span { font-size: 14px; font-weight: 600; color: var(--color-dark); }
.contact-info-list li a:hover { color: var(--fushia-600); }

/* Reassurance */
.contact-reassurance { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.contact-reassurance li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--color-dark); }
.contact-reassurance li i { color: var(--emerald-500); font-size: 16px; flex-shrink: 0; line-height: 1; }

/* ── Responsive about + contact ─────────────────────────────── */
@media screen and (max-width: 1024px) {
    .about-story .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid__visual { order: -1; }
    .about-stats { grid-template-columns: repeat(4, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-container { grid-template-columns: 1fr; }
    .contact-info-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 668px) {
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .contact-row { grid-template-columns: 1fr; }
    .contact-type-cards { grid-template-columns: 1fr 1fr; }
    .contact-checkboxes { grid-template-columns: 1fr; }
    .contact-info-sidebar { grid-template-columns: 1fr; }
    .admin-bar .header-nav.is-open { top: calc(72px + 46px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   21. UTILITAIRES TRANSVERSAUX — section--alt · grids · loop-intro · loop-cta
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Fond alternatif (related sections, etc.) ────────────────────── */
.section--alt { background: var(--slate-50, #f8fafc); }

/* ── Grilles variantes (héritent cards-grid) ─────────────────────── */
.formations-grid { }    /* classe identifiante — styles partagés avec cards-grid */
.realisations-grid { }  /* classe identifiante — styles partagés avec cards-grid */

/* ── Related sections (singles) ─────────────────────────────────── */
.single-related { padding-block: 60px 80px; }
.single-related .section-label { display: block; margin-bottom: 8px; }
.single-related h2 { margin-bottom: 32px; font-size: clamp(1.4rem, 3vw, 1.9rem); }

/* ── Loop Intro Banner ───────────────────────────────────────────── */
.loop-intro {
    background: linear-gradient(135deg, var(--fushia-50, #fdf4ff) 0%, var(--blue-50, #eff6ff) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-bottom: 40px;
    font-size: 15px;
    color: var(--slate-700);
    line-height: 1.75;
}
.loop-intro strong { color: var(--slate-900); }
.loop-intro a { color: var(--fushia-600); font-weight: 600; text-decoration: none; }
.loop-intro a:hover { text-decoration: underline; }

/* ── Loop CTA ────────────────────────────────────────────────────── */
.loop-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, var(--color-dark, #0f172a) 0%, #2d1b69 100%);
    border-radius: var(--radius-lg);
    padding: 36px 44px;
    margin-top: 64px;
    flex-wrap: wrap;
}
.loop-cta__text h3 {
    color: #fff;
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    margin-bottom: 6px;
    line-height: 1.3;
}
.loop-cta__text p {
    color: rgba(255,255,255,.65);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
}

/* ── Contact Intro Banner — variante chips ───────────────────────── */
.contact-intro-banner--chips {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 24px;
    padding: 18px 28px;
    margin-bottom: 0;
}
.contact-intro-banner__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
    white-space: nowrap;
}
.contact-intro-banner__item i { font-size: 18px; color: var(--fushia-600); flex-shrink: 0; line-height: 1; }
.contact-intro-banner__item a { color: var(--slate-700); text-decoration: none; }
.contact-intro-banner__item a:hover { color: var(--fushia-600); }

/* ── Responsive Section 21 ───────────────────────────────────────── */
@media (max-width: 768px) {
    .loop-cta { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
    .loop-intro { padding: 20px 20px; }
    .single-related { padding-block: 40px 60px; }
    .contact-intro-banner--chips { justify-content: flex-start; }
}
