/* =============================================
   CRÉATIF-WEB — Feuille de styles principale
   Palette navy premium · Gold · Violet
   Full Responsive — Martigues, PACA
   ============================================= */

/* -------------------------------------------------------
   VARIABLES DE DESIGN
------------------------------------------------------- */
:root {
    /* Couleurs de base — navy profond plutôt que noir pur */
    --black:       #090E1B;
    --dark:        #0E1729;
    --dark-2:      #141F3D;
    --dark-3:      #1B2850;
    --navy-mid:    #0A1120;

    /* Or — teinte plus chaude pour davantage de prestige */
    --gold:        #D4A843;
    --gold-light:  #E8C26A;
    --gold-dim:    rgba(212,168,67,0.12);
    --gold-border: rgba(212,168,67,0.22);

    /* Violet */
    --purple:      #7C3AED;
    --purple-light:#A78BFA;
    --purple-dim:  rgba(124,58,237,0.12);

    /* Neutres */
    --white:       #ffffff;
    --gray:        #a8b3c7;
    --gray-light:  #d1d5db;
    --border:      rgba(255,255,255,0.07);

    /* Typographie — polices système au premier paint, webfonts après chargement */
    --font-serif:  Georgia, 'Times New Roman', serif;
    --font-sans:   system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Globaux */
    --nav-h:       80px;
    --r:           6px;
    --ease:        cubic-bezier(0.4,0,0.2,1);
    --t:           0.35s;

    /* Hero / page-hero — Pexels (bureau & code, cohérent avec Nos offres) */
    --hero-bg: url('https://images.pexels.com/photos/574077/pexels-photo-574077.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&dpr=1');
}
@media (max-width: 767px) {
    :root {
        --hero-bg: url('https://images.pexels.com/photos/574077/pexels-photo-574077.jpeg?auto=compress&cs=tinysrgb&w=640&h=427&dpr=1');
    }
    /* Mobile LCP = texte hero : photo Pexels après chargement (classe .cw-hero-photo) */
    .hero-bg-img {
        background:
            linear-gradient(180deg, rgba(9,14,27,.72) 0%, rgba(9,14,27,.88) 55%, var(--black) 100%),
            radial-gradient(ellipse 90% 70% at 50% 0%, rgba(124,58,237,.22) 0%, transparent 55%),
            radial-gradient(ellipse 50% 40% at 85% 90%, rgba(212,168,67,.1) 0%, transparent 50%),
            var(--black);
    }
    .page-hero::before {
        background:
            linear-gradient(180deg, rgba(9,14,27,.78) 0%, rgba(9,14,27,.92) 100%),
            radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,.15) 0%, transparent 70%);
    }
}
html.cw-hero-photo .hero-bg-img {
    background:
        linear-gradient(180deg, rgba(9,14,27,.72) 0%, rgba(9,14,27,.88) 55%, var(--black) 100%),
        radial-gradient(ellipse 90% 70% at 50% 0%, rgba(124,58,237,.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 90%, rgba(212,168,67,.1) 0%, transparent 50%),
        var(--hero-bg) center center / cover no-repeat,
        var(--black);
}
html.cw-hero-photo .page-hero::before {
    background:
        linear-gradient(180deg, rgba(9,14,27,.78) 0%, rgba(9,14,27,.92) 100%),
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,.15) 0%, transparent 70%),
        var(--hero-bg) center center / cover no-repeat;
}

/* -------------------------------------------------------
   RESET
------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body {
    background: var(--black); color: var(--white);
    font-family: var(--font-sans); font-weight: 400;
    line-height: 1.65;
    width: 100%;
    min-height: 100vh;
    overflow-x: clip;
    cursor: none;
}
main, section { width: 100%; max-width: 100%; }
a { text-decoration: none; color: inherit; }
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.faq-q:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
}
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; font: inherit; cursor: none; }
input, select, textarea { outline: none; }

/* Scrollbar fine dorée */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* =============================================
   CURSEUR PERSONNALISÉ
   ============================================= */
.cursor {
    position: fixed; width: 8px; height: 8px;
    background: var(--gold); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .2s, height .2s, background .2s;
    will-change: transform;
}
.cursor-follower {
    position: fixed; width: 38px; height: 38px;
    border: 1.5px solid rgba(212,168,67,.45); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width .3s, height .3s, border-color .3s;
    will-change: transform;
}
.cursor.is-hover { width: 5px; height: 5px; background: var(--purple-light); }
.cursor-follower.is-hover { width: 56px; height: 56px; border-color: var(--purple-light); }

/* =============================================
   TRANSITION DE PAGE — fondu doux (sans 3D, sans à-coups)
   Courbe ease fluide ; entrée / sortie symétriques
   ============================================= */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    background: var(--black);
    opacity: 0;
    visibility: hidden;
}

body.pt-exit .page-transition,
body.pt-enter .page-transition {
    visibility: visible;
}

/* Sortie : voile opaque progressif avant chargement de la page suivante */
body.pt-exit .page-transition {
    animation: pt-soft-cover 0.48s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

/* Entrée : voile qui se dissipe en douceur */
body.pt-enter .page-transition {
    animation: pt-soft-reveal 0.52s cubic-bezier(0.45, 0, 0.2, 1) both;
}

body:not(.pt-enter):not(.pt-exit) .page-transition {
    opacity: 0 !important;
    visibility: hidden !important;
}

@keyframes pt-soft-cover {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pt-soft-reveal {
    from { opacity: 1; }
    to { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    body.pt-exit .page-transition {
        animation: pt-soft-cover 0.2s ease-out forwards;
    }
    body.pt-enter .page-transition {
        animation: pt-soft-reveal 0.22s ease-out both;
    }
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-h); z-index: 1000; padding: 0 2rem;
    transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.navbar.scrolled {
    background: rgba(9,14,27,.96); backdrop-filter: blur(16px) saturate(1.4);
    box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0,0,0,.6);
}
.nav-container {
    max-width: 1400px; margin: 0 auto; height: 100%;
    display: flex; align-items: center; gap: 1.5rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    line-height: 0;
}
.nav-logo picture { display: block; background: transparent; }
.logo-img {
    height: 78px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    display: block;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}
.navbar .logo-img {
    mix-blend-mode: lighten;
}
.footer-brand .logo-img {
    mix-blend-mode: lighten;
}
.nav-phone {
    font-size: .78rem; font-weight: 500; letter-spacing: .06em;
    color: var(--gray); transition: color var(--t);
    margin-left: .5rem; white-space: nowrap;
}
.nav-phone:hover { color: var(--gold); }
.nav-links {
    display: flex; gap: 1.8rem; margin-left: auto; align-items: center;
}
.nav-link {
    font-size: .8rem; font-weight: 400; letter-spacing: .07em;
    text-transform: uppercase; color: var(--gray-light);
    transition: color var(--t); position: relative; white-space: nowrap;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width var(--t) var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
    font-size: .75rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: var(--black);
    background: var(--gold); padding: .55rem 1.4rem;
    border-radius: var(--r); transition: background var(--t), transform var(--t);
    white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: transform var(--t), opacity var(--t); }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* =============================================
   BOUTONS
   ============================================= */
.btn {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--font-sans); font-size: .82rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    padding: .9rem 2.2rem; border-radius: var(--r);
    transition: all var(--t) var(--ease); white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--t); }
.btn:hover svg { transform: translateX(4px); }
.btn-gold { background: var(--gold); color: var(--black); border: 1.5px solid var(--gold); }
.btn-gold:hover {
    background: var(--gold-light); border-color: var(--gold-light);
    transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,168,67,.3);
}
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.2); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-purple { background: var(--purple); color: var(--white); border: 1.5px solid var(--purple); }
.btn-purple:hover { background: #6d28d9; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,.3); }
.btn--full { width: 100%; justify-content: center; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: .88rem; }
/* hidden sur .btn : inline-flex du composant l’emportait → bouton vide visible */
.btn[hidden],
.funnel-nav[hidden] {
    display: none !important;
}

/* =============================================
   MISE EN PAGE
   ============================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}
.container--wide {
    width: 100%;
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

/* Séparation visuelle entre les blocs principaux — toutes les pages */
main > section + section {
    border-top: 1px solid var(--border);
}

/* =============================================
   UTILITAIRES DE SECTION (évite les inline styles)
   ============================================= */
.slab {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
}
.slab--dark { background: var(--dark); }
.slab--tight { padding: 4.5rem 0; }
.slab--border-b { border-bottom: 1px solid var(--border); }
.slab--border-t { border-top: 1px solid var(--border); }
.slab--center { text-align: center; }
.mt-xxl { margin-top: 3.5rem; }

.stat-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.stat-tile {
    background: rgba(255,255,255,.02);
    padding: 2.25rem 1.75rem;
    text-align: center;
}
.stat-big {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: .5rem;
    line-height: 1;
}
.stat-big .unit { font-size: 1.4rem; }
.stat-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.stat-sub { font-size: .85rem; color: var(--gray); line-height: 1.6; word-wrap: break-word; overflow-wrap: anywhere; }

.section-eyebrow {
    display: inline-flex; align-items: center; gap: .6rem;
    font-size: .7rem; font-weight: 600; letter-spacing: .2em;
    text-transform: uppercase; color: var(--gold); margin-bottom: .8rem;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.2rem;
    overflow-wrap: break-word;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title span.purple { color: var(--purple-light); }

.section-lead {
    font-size: 1.05rem; color: var(--gray); line-height: 1.8; max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-eyebrow { justify-content: center; }
.text-center .section-lead { margin: 0 auto; }
.section-header { margin-bottom: 5rem; }

.divider-gold {
    display: block; width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.5rem 0;
}
.divider-gold.center { margin: 1.5rem auto; }

html.fonts-loaded {
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
}

/* Révélation au scroll — desktop GSAP ; hero / mobile toujours visible */
.hero .hero-badge,
.hero .hero-title,
.hero .hero-subtitle,
.hero .hero-actions,
.hero .hero-stats,
.page-hero .page-hero-title,
.page-hero .page-hero-desc,
.page-hero .sr {
    opacity: 1 !important;
    transform: none !important;
}

.sr { opacity: 0; transform: translateY(36px); }

html.cw-revealed .sr {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

@media (max-width: 767px) {
    .sr { opacity: 1; transform: none; }
}
.sci-card-bg[data-bg] { background-image: none; }
.sr.delay-1 { transition-delay: .1s; }
.sr.delay-2 { transition-delay: .2s; }
.sr.delay-3 { transition-delay: .3s; }
.sr.delay-4 { transition-delay: .4s; }

/* =============================================
   HERO — PAGE D'ACCUEIL
   ============================================= */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden; padding: var(--nav-h) 2rem 4rem;
    background: var(--black);
}
#particles-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
@media (max-width: 767px) {
    #particles-canvas { display: none !important; }
}
.hero-bg-img {
    position: absolute; inset: 0;
    opacity: 1;
}
@media (min-width: 768px) {
    .hero-bg-img {
        background:
            linear-gradient(180deg, rgba(9,14,27,.72) 0%, rgba(9,14,27,.88) 55%, var(--black) 100%),
            radial-gradient(ellipse 90% 70% at 50% 0%, rgba(124,58,237,.22) 0%, transparent 55%),
            radial-gradient(ellipse 50% 40% at 85% 90%, rgba(212,168,67,.1) 0%, transparent 50%),
            var(--hero-bg) center center / cover no-repeat,
            var(--black);
    }
}
.hero-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212,168,67,.08) 0%, transparent 60%),
        linear-gradient(to bottom, transparent 50%, var(--black) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 920px; margin: 0 auto; }

.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.35);
    border-radius: 100px; padding: .4rem 1rem .4rem .7rem;
    font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
    color: var(--purple-light); margin-bottom: 1.75rem;
}
.hero-badge-dot {
    width: 6px; height: 6px; background: var(--purple-light);
    border-radius: 50%; flex-shrink: 0; animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(.7); }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem,6vw,5rem);
    font-weight: 700; line-height: 1.08; margin-bottom: 1.5rem; color: var(--white);
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-title .highlight {
    position: relative; display: inline-block;
    background: linear-gradient(90deg, var(--gold), var(--purple-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem,1.5vw,1.15rem); color: var(--gray);
    max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.85;
}
.hero-actions {
    display: flex; gap: 1rem; justify-content: center;
    flex-wrap: wrap; margin-bottom: 4rem;
}
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    min-height: 4.5rem;
    gap: 0; flex-wrap: wrap;
    border: 1px solid var(--border); border-radius: var(--r);
    background: rgba(255,255,255,.02); backdrop-filter: blur(8px);
    max-width: 680px; margin: 0 auto; overflow: hidden;
}
.hero-stat {
    flex: 1; min-width: 120px; padding: 1.25rem 1rem;
    text-align: center; border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.stat-num {
    display: block; font-family: var(--font-serif);
    font-size: 1.8rem; font-weight: 700; color: var(--gold);
    line-height: 1; margin-bottom: .2rem;
}
.stat-num .unit { font-size: 1rem; }
.stat-lbl { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); }

/* Indicateur de défilement — barre uniquement, sans texte */
.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center;
}
.scroll-bar {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-anim 2.2s ease-in-out infinite;
}
@keyframes scroll-anim {
    0%,100% { opacity: .3; transform: scaleY(.8); }
    50%      { opacity: 1;  transform: scaleY(1.2); }
}

/* =============================================
   BANDEAU IMAGE (accueil + pages internes)
   ============================================= */
.banner-strip,
.page-banner-strip {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.banner-strip img,
.page-banner-strip img {
    width: 100%; max-height: 220px;
    object-fit: cover; object-position: center; opacity: .85;
}

/* =============================================
   PILIERS / ENGAGEMENTS
   ============================================= */
.pillars { padding: 7rem 0; background: var(--dark); }
.pillars-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.pillar-item {
    background: var(--dark-2); padding: 2.5rem 2rem;
    transition: background var(--t); position: relative; overflow: hidden;
}
.pillar-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, var(--purple), var(--gold));
    transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease);
}
.pillar-item:hover { background: var(--dark-3); }
.pillar-item:hover::before { transform: scaleX(1); }
.pillar-icon { width: 48px; height: 48px; margin-bottom: 1.25rem; color: var(--gold); }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: .6rem; }
.pillar-text { font-size: .875rem; color: var(--gray); line-height: 1.7; }

/* =============================================
   APERÇU DES OFFRES (page d'accueil)
   ============================================= */
.services-preview { padding: 8rem 0; background: var(--black); }
.services-preview-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1.5rem; margin-top: 4rem;
}
.service-card {
    background: var(--dark-2); border: 1px solid var(--border);
    border-radius: var(--r); padding: 2rem 1.75rem;
    position: relative; overflow: hidden;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
    display: flex; flex-direction: column;
}
.service-card::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 0% 0%, var(--purple-dim), transparent 60%);
    opacity: 0; transition: opacity var(--t);
}
.service-card:hover { border-color: var(--gold-border); transform: translateY(-6px); box-shadow: 0 24px 80px rgba(212,168,67,.08); }
.service-card:hover::after { opacity: 1; }
.service-card.featured { border-color: var(--gold-border); background: linear-gradient(135deg, var(--dark-2), rgba(212,168,67,.04)); }
.service-card.premium::after { background: radial-gradient(ellipse at 0% 0%, rgba(212,168,67,.08), transparent 60%); opacity: 1; }

.service-card-badge {
    position: absolute; top: -1px; right: 2rem;
    background: var(--gold); color: var(--black);
    font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: .25rem .8rem; border-radius: 0 0 var(--r) var(--r);
}
.service-card-icon { width: 42px; height: 42px; color: var(--gold); margin-bottom: 1.25rem; position: relative; z-index: 1; }
.service-card-icon svg { width: 100%; height: 100%; }
.service-card-tag { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-light); margin-bottom: .5rem; position: relative; z-index: 1; }
.service-card-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: .75rem; line-height: 1.3; position: relative; z-index: 1; }
.service-card-desc { font-size: .875rem; color: var(--gray); line-height: 1.75; margin-bottom: 1.5rem; flex: 1; position: relative; z-index: 1; }
.service-card-price {
    position: relative; z-index: 1; padding: 1rem 0;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem; display: flex; align-items: baseline; gap: .4rem;
}
.price-from { font-size: .7rem; color: var(--gray); text-transform: uppercase; letter-spacing: .05em; }
.price-amount { font-family: var(--font-serif); font-size: 1.85rem; font-weight: 700; color: var(--gold); }
.price-tax { font-size: .75rem; color: var(--gray); }
.service-card-link {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: var(--gold); border: 1px solid var(--gold-border);
    padding: .75rem; border-radius: var(--r);
    transition: background var(--t), color var(--t); margin-top: auto;
}
.service-card-link:hover { background: var(--gold); color: var(--black); }
.service-card-link svg { width: 14px; height: 14px; }

/* =============================================
   ÉTAPES DU PROCESSUS
   ============================================= */
.process { padding: 8rem 0; background: var(--dark); position: relative; overflow: hidden; }
.process::before {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(124,58,237,.06) 0%, transparent 70%);
    pointer-events: none;
}
.process-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 2rem; margin-top: 4rem; position: relative;
}
.process-grid::before {
    content: ''; position: absolute; top: 32px;
    left: calc(12.5% + 1rem); right: calc(12.5% + 1rem);
    height: 1px; background: linear-gradient(90deg, var(--purple-dim), var(--gold-border), var(--purple-dim));
    z-index: 0;
}
.process-item { text-align: center; position: relative; z-index: 1; }
.process-num-wrap { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.process-num {
    width: 64px; height: 64px; border-radius: 50%;
    border: 1.5px solid var(--gold-border); background: var(--dark-2);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--gold);
    position: relative; transition: background var(--t), border-color var(--t);
}
.process-num::before {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    background: var(--gold-dim); opacity: 0; transition: opacity var(--t);
}
.process-item:hover .process-num { background: var(--gold); color: var(--black); border-color: var(--gold); }
.process-item:hover .process-num::before { opacity: 1; }
.process-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: .6rem; }
.process-text { font-size: .875rem; color: var(--gray); line-height: 1.7; }

/* =============================================
   TÉMOIGNAGES
   ============================================= */
.testimonials { padding: 8rem 0; background: var(--black); }
.rating-summary { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
.stars-lg { color: var(--gold); font-size: 1.2rem; letter-spacing: 3px; }
.rating-val { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.rating-src { font-size: .82rem; color: var(--gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
.testi-card {
    background: var(--dark-2); border: 1px solid var(--border);
    border-radius: var(--r); padding: 2rem;
    transition: border-color var(--t), transform var(--t);
    position: relative; overflow: hidden;
}
.testi-card::before {
    content: '"'; position: absolute; top: -.5rem; left: 1.25rem;
    font-family: var(--font-serif); font-size: 8rem; line-height: 1;
    color: var(--gold); opacity: .04; pointer-events: none;
}
.testi-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-text { font-size: .925rem; color: var(--gray-light); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.author-av {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--gold-dim); border: 1px solid var(--gold-border);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); flex-shrink: 0;
}
.author-name { font-size: .9rem; font-weight: 600; color: var(--white); }
.author-role { font-size: .75rem; color: var(--gray); }

/* =============================================
   LOGOS CLIENTS
   ============================================= */
.clients {
    padding: 5rem 0 6rem;
    background: var(--black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.clients-header { margin-bottom: 3rem; }
.clients-title { margin-top: 0; }
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}
.client-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    text-align: center;
    transition: transform var(--t), opacity var(--t);
}
.client-logo-item:hover {
    transform: translateY(-4px);
    opacity: 1;
}
.client-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}
.client-logo-frame img {
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    object-position: center;
    display: block;
}
.client-logo-name {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--gray-light);
}

/* =============================================
   APPEL À L'ACTION
   ============================================= */
.cta-section { padding: 7rem 0; background: var(--dark); position: relative; overflow: hidden; }
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(124,58,237,.1) 0%, transparent 65%);
    pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,3.5vw,3rem); font-weight: 700; margin-bottom: 1rem; }
.cta-inner p { font-size: 1rem; color: var(--gray); margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-badge {
    display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem;
    background: var(--gold-dim); border: 1px solid var(--gold-border);
    border-radius: 100px; padding: .4rem 1.2rem;
    font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
}

/* =============================================
   HERO DES PAGES INTERNES
   La même image de fond que le hero d'accueil pour une cohérence visuelle
   ============================================= */
.page-hero {
    position: relative; padding: calc(var(--nav-h) + 5rem) 0 5rem;
    background: var(--dark); overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    opacity: 1;
}
@media (min-width: 768px) {
    .page-hero::before {
        background:
            linear-gradient(180deg, rgba(9,14,27,.78) 0%, rgba(9,14,27,.92) 100%),
            radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,.15) 0%, transparent 70%),
            var(--hero-bg) center center / cover no-repeat;
    }
}
.page-hero-glow {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,58,237,.18) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 2; text-align: center; max-width: 780px; margin: 0 auto; }
.page-hero-title { font-family: var(--font-serif); font-size: clamp(2.5rem,5vw,4.2rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.2rem; }
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-desc { font-size: 1.05rem; color: var(--gray); line-height: 1.85; max-width: 600px; margin: 0 auto; }

/* =============================================
   PAGE NOS OFFRES
   ============================================= */
.offres-section { padding: 6rem 0 8rem; background: var(--black); }
.offres-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.offre-card {
    background: var(--dark-2); border: 1px solid var(--border);
    border-radius: var(--r); padding: 2.5rem 2rem;
    position: relative; overflow: hidden; display: flex; flex-direction: column;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.offre-card:hover { border-color: var(--gold-border); transform: translateY(-6px); box-shadow: 0 24px 80px rgba(212,168,67,.1); }
.offre-card.featured { border-color: var(--gold); background: linear-gradient(135deg, var(--dark-2), rgba(212,168,67,.04)); }
.offre-card.flagship { border-color: var(--purple); background: linear-gradient(135deg, var(--dark-2), rgba(124,58,237,.06)); }
.offre-card--full { grid-column: span 3; display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; align-items: start; }
.offre-badge {
    position: absolute; top: -1px; right: 1.5rem;
    font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    padding: .3rem 1rem; border-radius: 0 0 var(--r) var(--r);
}
.offre-badge.gold { background: var(--gold); color: var(--black); }
.offre-badge.purple { background: var(--purple); color: var(--white); }
.offre-icon { width: 46px; height: 46px; color: var(--gold); margin-bottom: 1.25rem; }
.offre-icon.purple-icon { color: var(--purple-light); }
.offre-icon svg { width: 100%; height: 100%; }
.offre-tag { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-light); margin-bottom: .5rem; }
.offre-title { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 600; color: var(--white); margin-bottom: .75rem; line-height: 1.3; }
.offre-desc { font-size: .875rem; color: var(--gray); line-height: 1.75; margin-bottom: 1.5rem; flex: 1; }
.offre-price {
    padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem; display: flex; align-items: baseline; gap: .4rem; flex-wrap: wrap;
}
.offre-features { list-style: none; margin-bottom: 1.75rem; }
.offre-features li {
    font-size: .875rem; color: var(--gray-light); padding: .4rem 0;
    padding-left: 1.25rem; position: relative;
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.offre-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: .8rem; font-weight: 700; }
.offre-cta {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    text-align: center; padding: .8rem; border: 1px solid var(--gold-border);
    border-radius: var(--r); font-size: .78rem; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: var(--gold);
    transition: background var(--t), color var(--t); margin-top: auto;
}
.offre-cta:hover { background: var(--gold); color: var(--black); }
.offre-cta.purple-cta { color: var(--purple-light); border-color: rgba(124,58,237,.3); }
.offre-cta.purple-cta:hover { background: var(--purple); color: var(--white); }

/* Garanties */
.garanties { padding: 6rem 0; background: var(--dark); }
.garanties-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 4rem; }
.garantie {
    text-align: center; padding: 2rem 1.5rem;
    border: 1px solid var(--border); border-radius: var(--r);
    transition: border-color var(--t), background var(--t);
}
.garantie:hover { border-color: var(--gold-border); background: var(--dark-2); }
.garantie-icon { width: 44px; height: 44px; margin: 0 auto 1rem; color: var(--gold); }
.garantie-icon svg { width: 100%; height: 100%; }
.garantie h4 { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.garantie p { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* =============================================
   PAGE PORTFOLIO
   ============================================= */
.portfolio-filter { padding: 3rem 0 1rem; background: var(--black); }
.filter-row { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
.filter-btn {
    font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: var(--gray); border: 1px solid var(--border);
    padding: .5rem 1.25rem; border-radius: 100px;
    transition: all var(--t); cursor: none;
}
.filter-btn:hover, .filter-btn.active { color: var(--gold); border-color: var(--gold-border); background: var(--gold-dim); }

.portfolio-grid-section { padding: 3rem 0 8rem; background: var(--black); }
.porto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}
.porto-item {
    display: flex;
    flex-direction: column;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--dark-2);
    transition: border-color var(--t), transform var(--t);
}
.porto-item:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.porto-item.hidden { display: none; }
.porto-thumb {
    position: relative;
    flex-shrink: 0;
    height: 220px;
    overflow: hidden;
    background: var(--dark-3);
}
.porto-thumb-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--t) var(--ease);
}
.porto-item:hover .porto-thumb-inner { transform: scale(1.04); }
.porto-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 1.75rem;
    display: block;
}
.porto-thumb-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124,58,237,.1) 0%, rgba(212,168,67,.05) 100%);
    pointer-events: none;
}
.porto-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9,14,27,.82);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--t);
}
.porto-item:hover .porto-overlay { opacity: 1; }
.porto-overlay-btn {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: .6rem 1.5rem;
    border-radius: var(--r);
    transition: background var(--t), color var(--t);
}
.porto-overlay-btn:hover { background: var(--gold); color: var(--black); }
.porto-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    min-height: 11.5rem;
}
.porto-tags {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
    min-height: 1.65rem;
}
.porto-tag {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--purple-light);
    background: var(--purple-dim);
    padding: .2rem .6rem;
    border-radius: 2px;
}
.porto-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .5rem;
    line-height: 1.35;
}
.porto-desc {
    font-size: .82rem;
    color: var(--gray);
    line-height: 1.65;
    flex: 1;
    margin: 0;
}
.feature-logo[src$=".avif"] { object-fit: contain; }

/* Portfolio — metrics */
.portfolio-metrics {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(9,14,27,0) 100%);
    border-bottom: 1px solid var(--border);
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.metric-card {
    background: rgba(255,255,255,.02);
    padding: 1.8rem 1.4rem;
    position: relative;
    overflow: hidden;
}
.metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(124,58,237,.14) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(212,168,67,.10) 0%, transparent 55%);
    opacity: .7;
    pointer-events: none;
}
.metric-card > * { position: relative; z-index: 1; }
.metric-num {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .55rem;
}
.metric-unit { font-size: 1.05rem; color: rgba(232,194,106,.85); }
.metric-lbl {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: .35rem;
}
.metric-sub { font-size: .86rem; color: var(--gray); line-height: 1.55; }

/* Portfolio — featured case study */
.portfolio-feature {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}
.portfolio-feature::before{
    content:'';
    position:absolute; inset:0;
    background:
        radial-gradient(ellipse 60% 40% at 30% 10%, rgba(124,58,237,.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(212,168,67,.08) 0%, transparent 60%);
    pointer-events:none;
}
.feature-grid{
    display:grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.feature-frame{
    position: relative;
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    min-height: 360px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(255,255,255,.02);
}
.feature-frame-bg{
    position:absolute; inset:0;
    background:
        linear-gradient(135deg, rgba(124,58,237,.22) 0%, rgba(212,168,67,.10) 55%, rgba(9,14,27,.0) 100%),
        radial-gradient(circle at 30% 20%, rgba(212,168,67,.18) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(124,58,237,.18) 0%, transparent 55%);
    opacity: .55;
}
.feature-logo{
    width: min(320px, 72%);
    height: auto;
    filter: drop-shadow(0 24px 60px rgba(0,0,0,.55));
    transform: translateY(-6px);
    position: relative;
    z-index: 1;
}
.feature-glow{
    position:absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.20) 0%, rgba(212,168,67,.12) 35%, transparent 70%);
    filter: blur(18px);
    opacity: .9;
    pointer-events: none;
}
.feature-facts{
    margin-top: 1.8rem;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}
.fact{
    background: rgba(255,255,255,.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .9rem .95rem;
}
.fact-k{
    display:block;
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: .35rem;
}
.fact-v{
    display:block;
    font-size: .9rem;
    color: var(--gray-light);
    line-height: 1.35;
}
.feature-actions{ display:flex; gap: 1rem; flex-wrap:wrap; margin-top: 1.9rem; }

/* =============================================
   PAGE NOTRE AGENCE
   ============================================= */
.agence-hero-section { padding: 6rem 0 8rem; background: var(--black); }
.agence-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.agence-photo-wrap { position: relative; }
.agence-photo {
    border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); position: relative;
}
.agence-photo img { width: 100%; display: block; }
.agence-photo-glow {
    position: absolute; inset: -1px; border-radius: var(--r);
    background: linear-gradient(135deg, rgba(124,58,237,.3) 0%, rgba(212,168,67,.3) 100%);
    z-index: -1; filter: blur(20px); opacity: .6;
}
.agence-photo-badge {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--dark-2); border: 1px solid var(--gold-border);
    border-radius: var(--r); padding: 1rem 1.25rem;
}
.badge-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.badge-lbl { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); }
.agence-name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--gold); margin-bottom: .25rem; }
.agence-role { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); margin-bottom: 2rem; }
.agence-bio { font-size: 1rem; color: var(--gray-light); line-height: 1.9; margin-bottom: 2rem; }
.agence-bio p + p { margin-top: 1rem; }
.agence-socials { display: flex; gap: 1rem; margin-bottom: 2rem; }
.social-link {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
    transition: border-color var(--t), background var(--t);
}
.social-link img { width: 20px; height: 20px; object-fit: contain; filter: brightness(1.2); }
.social-link:hover { border-color: var(--gold-border); background: var(--gold-dim); }

/* Stack technique — Full Stack */
.stack-section { padding: 6rem 0; background: var(--dark); }
.stack-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 3rem;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.stack-pillar {
    background: var(--dark-2);
    padding: 1.75rem 1.5rem;
    text-align: center;
}
.stack-pillar-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(212,168,67,.35);
    margin-bottom: .5rem;
    line-height: 1;
}
.stack-pillar-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: .5rem;
}
.stack-pillar-text {
    font-size: .8rem;
    color: var(--gray);
    line-height: 1.6;
}
.stack-grid-label {
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    text-align: center;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--purple-light);
}
.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 1rem;
}
.stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.15rem .85rem;
    text-align: center;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.stack-item:hover {
    border-color: var(--gold-border);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212,168,67,.08);
}
.stack-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: .55rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    font-family: var(--font-sans);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
}
.stack-mark--fe { color: var(--gold); border-color: rgba(212,168,67,.22); }
.stack-mark--be { color: var(--purple-light); border-color: rgba(124,58,237,.25); }
.stack-mark--db { color: #7eb8e8; border-color: rgba(126,184,232,.22); }
.stack-mark--ar { color: var(--gray-light); border-color: rgba(255,255,255,.12); }
.stack-mark--ops { color: rgba(232,194,106,.85); border-color: var(--gold-border); }
.stack-item:hover .stack-mark {
    border-color: var(--gold-border);
    background: rgba(212,168,67,.08);
}
.stack-name {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--white);
    line-height: 1.3;
}
.stack-meta {
    margin-top: .35rem;
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray);
}

/* Valeurs */
.valeurs-section { padding: 6rem 0; background: var(--black); }
.valeurs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
.valeur-card {
    background: var(--dark-2); border: 1px solid var(--border);
    border-radius: var(--r); padding: 2rem;
    transition: border-color var(--t), transform var(--t);
}
.valeur-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.valeur-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--gold); opacity: .2; margin-bottom: .5rem; line-height: 1; }
.valeur-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: .6rem; }
.valeur-text { font-size: .875rem; color: var(--gray); line-height: 1.7; }

/* =============================================
   PAGE NOTRE MÉTHODE
   ============================================= */
.methode-section { padding: 6rem 0 8rem; background: var(--black); }
.methode-steps { display: flex; flex-direction: column; gap: 4rem; margin-top: 5rem; }
.methode-step {
    display: grid; grid-template-columns: 80px 1fr; gap: 2.5rem; align-items: start;
    padding-bottom: 4rem; border-bottom: 1px solid var(--border);
}
.methode-step:last-child { border-bottom: none; padding-bottom: 0; }
.methode-step-num {
    width: 80px; height: 80px; border-radius: 50%;
    border: 1.5px solid var(--gold-border); background: var(--dark-2);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--gold);
    flex-shrink: 0; position: relative;
}
.methode-step-num::after {
    content: ''; position: absolute; bottom: -4rem; left: 50%;
    transform: translateX(-50%); width: 1px; height: 4rem;
    background: linear-gradient(to bottom, var(--gold-border), transparent);
}
.methode-step:last-child .methode-step-num::after { display: none; }
.methode-step-body { padding-top: 1rem; }
.methode-step-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: .75rem; }
.methode-step-desc { font-size: .95rem; color: var(--gray); line-height: 1.85; margin-bottom: 1.25rem; }
.methode-step-features { display: flex; flex-wrap: wrap; gap: .5rem; }
.step-feat {
    font-size: .72rem; font-weight: 500; letter-spacing: .06em; color: var(--gray-light);
    background: var(--dark-3); border: 1px solid var(--border);
    padding: .3rem .8rem; border-radius: 100px;
}

/* =============================================
   PAGE SECTEURS
   ============================================= */
.secteurs-section { padding: 6rem 0 8rem; background: var(--black); }
.secteur-block {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center; margin-bottom: 7rem;
}
.secteur-block.reverse { direction: rtl; }
.secteur-block.reverse > * { direction: ltr; }
.secteur-img {
    border-radius: var(--r); overflow: hidden;
    position: relative; aspect-ratio: 16/10;
}
.secteur-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.secteur-block:hover .secteur-img img { transform: scale(1.04); }
.secteur-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(124,58,237,.2) 0%, rgba(212,168,67,.1) 100%);
}
.secteur-list { margin: 1.5rem 0; }
.secteur-list li {
    display: flex; align-items: flex-start; gap: .75rem;
    padding: .6rem 0; font-size: .9rem; color: var(--gray-light);
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.secteur-list li .dot { color: var(--gold); flex-shrink: 0; font-size: .6rem; margin-top: .35rem; }
.secteur-all-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 4rem; }
.secteur-all-card {
    background: var(--dark-2); border: 1px solid var(--border);
    border-radius: var(--r); padding: 1.75rem;
    transition: border-color var(--t), transform var(--t);
}
.secteur-all-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.secteur-all-icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 1rem; }
.secteur-all-icon svg { width: 100%; height: 100%; }
.secteur-all-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .5rem; }
.secteur-all-text { font-size: .82rem; color: var(--gray); line-height: 1.65; }

/* =============================================
   PAGE BLOG
   ============================================= */
.blog-section { padding: 6rem 0 8rem; background: var(--black); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 4rem; }
.blog-card {
    background: var(--dark-2); border: 1px solid var(--border);
    border-radius: var(--r); overflow: hidden;
    transition: border-color var(--t), transform var(--t);
    cursor: pointer;
}
.blog-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.blog-thumb { height: 200px; overflow: hidden; position: relative; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t) var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-cat {
    position: absolute; top: 1rem; left: 1rem;
    font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    background: var(--gold); color: var(--black); padding: .25rem .7rem; border-radius: 2px;
}
.blog-body { padding: 1.5rem; }
.blog-meta { font-size: .72rem; color: var(--gray); margin-bottom: .75rem; letter-spacing: .05em; }
.blog-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: .6rem; line-height: 1.35; }
.blog-excerpt { font-size: .85rem; color: var(--gray); line-height: 1.65; margin-bottom: 1.25rem; }
.blog-link {
    font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: var(--gold); transition: opacity var(--t);
    background: none; border: none; padding: 0; cursor: pointer; font-family: var(--font-sans);
}
.blog-link:hover { opacity: .7; }

/* =============================================
   MODAL ARTICLE DE BLOG — Effet de retournement 3D
   ============================================= */
.blog-modal-overlay {
    position: fixed; inset: 0; z-index: 9970;
    background: rgba(9,14,27,.93); backdrop-filter: blur(14px);
    display: flex; align-items: center; justify-content: center;
    padding: 2rem; opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
}
.blog-modal-overlay.open { opacity: 1; pointer-events: all; }

/* Conteneur avec perspective pour l'effet 3D */
.modal-perspective {
    perspective: 1200px; width: 100%; max-width: 880px;
}
.modal-card {
    background: var(--dark-2); border: 1px solid var(--gold-border);
    border-radius: 10px; max-height: 88vh; overflow-y: auto;
    transform: rotateY(90deg) scale(.9);
    transition: transform .5s cubic-bezier(0.23,1,0.32,1);
    position: relative;
}
.blog-modal-overlay.open .modal-card { transform: rotateY(0deg) scale(1); }

.modal-close {
    position: absolute; top: 1.25rem; right: 1.25rem; z-index: 10;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.07); border: 1px solid var(--border);
    color: var(--white); font-size: 1rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--t), color var(--t); cursor: pointer;
}
.modal-close:hover { background: var(--gold); color: var(--black); }

.modal-content { display: grid; grid-template-columns: 1fr 1.4fr; }

.modal-img-wrap { position: relative; min-height: 280px; overflow: hidden; }
.modal-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 10px 0 0 10px;
}
.modal-img-cat {
    position: absolute; top: 1rem; left: 1rem;
    font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    background: var(--gold); color: var(--black); padding: .25rem .7rem; border-radius: 2px;
}

.modal-body { padding: 2.5rem; overflow-y: auto; }
.modal-meta { font-size: .72rem; color: var(--gray); margin-bottom: .75rem; }
.modal-title {
    font-family: var(--font-serif); font-size: clamp(1.2rem,2.5vw,1.6rem);
    font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 1.5rem;
}
.modal-article h3 {
    font-family: var(--font-serif); font-size: 1rem; font-weight: 600;
    color: var(--gold); margin: 1.4rem 0 .5rem;
}
.modal-article p {
    font-size: .9rem; color: var(--gray-light); line-height: 1.8; margin-bottom: .75rem;
}
.modal-cta { margin-top: 2rem; }

/* =============================================
   PAGE CONTACT
   ============================================= */
.contact-section { padding: 6rem 0 8rem; background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.contact-discount {
    display: flex; align-items: center; gap: 1rem;
    background: var(--gold-dim); border: 1px solid var(--gold-border);
    border-radius: var(--r); padding: 1.25rem; margin-bottom: 2.5rem;
}
.discount-big { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--gold); white-space: nowrap; line-height: 1; }
.discount-desc { font-size: .85rem; color: var(--gray-light); line-height: 1.55; }
.contact-coords { margin-bottom: 2rem; }
.contact-coords h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--white); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.c-item { display: flex; align-items: center; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.04); transition: color var(--t); }
.c-item:hover { color: var(--gold); }
.c-icon-wrap {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gold-dim); border: 1px solid var(--gold-border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.c-icon-wrap svg { width: 15px; height: 15px; color: var(--gold); }
.c-lbl { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); display: block; }
.c-val { font-size: .92rem; color: var(--white); font-weight: 400; display: block; }
.contact-engages h3 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--white); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.contact-engages ul { list-style: none; }
.contact-engages li { display: flex; align-items: center; gap: .75rem; padding: .45rem 0; font-size: .875rem; color: var(--gray-light); }
.check-icon { color: var(--gold); font-weight: 700; font-size: .9rem; }

/* Formulaire */
.c-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-light); }
.form-group .req { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
    background: var(--dark-2); border: 1px solid var(--border);
    border-radius: var(--r); color: var(--white);
    font-family: var(--font-sans); font-size: .92rem;
    padding: .85rem 1rem; transition: border-color var(--t); width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(156,163,175,.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A843' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: none;
}
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-notice { font-size: .72rem; color: var(--gray); text-align: center; letter-spacing: .04em; margin-top: .25rem; }

.cw-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.form-success { display: none; text-align: center; padding: 4rem 2rem; }
.form-success.show { display: block; }
.success-check {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--gold-dim); border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem; font-size: 1.8rem; color: var(--gold);
}
.form-success h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin-bottom: .6rem; }
.form-success p { font-size: .92rem; color: var(--gray); margin-bottom: 1.5rem; }
.form-success .btn { margin-top: .5rem; }

/* Calendly — page contact (sans encadré sombre : aligné sur le fond contact) */
.calendly-section {
    padding: 4rem 0 6rem;
    background: var(--black);
}
.calendly-intro {
    max-width: 620px;
    margin: 0 auto 2rem;
    font-size: 1.02rem;
    color: var(--gray);
    line-height: 1.8;
}
.text-center .calendly-intro { text-align: center; }
.calendly-wrap {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    margin-top: 0;
}
.calendly-inline-widget {
    width: 100%;
    min-width: 320px;
    height: 700px;
}
.calendly-footnote {
    font-size: .72rem;
    color: var(--gray);
    letter-spacing: .04em;
    margin-top: 1.25rem;
}

/* FAQ */
.faq-section { padding: 6rem 0; background: var(--dark); }
.faq-list { max-width: 900px; margin: 3rem auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: .75rem; overflow: hidden; transition: border-color var(--t); }
.faq-item.open, .faq-item:hover { border-color: var(--gold-border); }
.faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; padding: 1.25rem 1.5rem; font-size: .92rem; font-weight: 500;
    color: var(--white); text-align: left; transition: color var(--t); cursor: pointer;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow { flex-shrink: 0; color: var(--gold); transition: transform var(--t); font-size: .9rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.25rem; }
.faq-a p { font-size: .875rem; color: var(--gray); line-height: 1.75; }

/* =============================================
   OFFRES — Mise en page « catalogue / chapitres »
   Bandeau visuel horizontal + texte en colonne (plus de split 50/50)
   ============================================= */
.offres-magazine {
    padding: 0 0 5rem;
    background: var(--dark);
}

.offres-lede {
    padding: 3rem 0 3.5rem;
    background: var(--black);
    border-bottom: 1px solid var(--border);
}
.offres-lede-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.25rem;
}
.offres-lede-card {
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.35rem 1.5rem;
    background: var(--dark-2);
    transition: border-color var(--t), transform var(--t);
}
.offres-lede-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-3px);
}
.offres-lede-card strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--gold);
    margin-bottom: .35rem;
}
.offres-lede-card span {
    font-size: .82rem;
    color: var(--gray);
    line-height: 1.55;
}

.offre-chapter {
    position: relative;
    border-bottom: 1px solid var(--border);
    background: var(--dark);
}
.offre-chapter:nth-child(even) { background: var(--black); }

.offre-chapter-media {
    position: relative;
    height: clamp(160px, 22vw, 240px);
    overflow: hidden;
}
.offre-chapter-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s var(--ease);
    opacity: .88;
}
.offre-chapter:hover .offre-chapter-media img {
    transform: scale(1.04);
    opacity: 1;
}
.offre-chapter-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark) 0%, transparent 55%);
    pointer-events: none;
}

.offre-chapter-inner {
    padding: clamp(2.25rem, 4vw, 3.5rem) 0 3.25rem;
    position: relative;
}

.offre-chapter-kicker {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    margin-bottom: 1rem;
}
.offre-chapter-num {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(212,168,67,.12);
    letter-spacing: -.04em;
    user-select: none;
}
.offre-chapter-eyebrow {
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}
.offre-chapter-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.offre-chapter-badge {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .28rem .75rem;
    border-radius: 2px;
    background: var(--gold);
    color: var(--black);
}
.offre-chapter-badge--purple {
    background: var(--purple);
    color: var(--white);
}

.offre-chapter-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 2.8vw, 2.55rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.1rem;
    max-width: 18ch;
}
.offre-chapter-title em {
    color: var(--gold);
    font-style: italic;
}

.offre-chapter-desc {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.78;
    max-width: 52rem;
    margin-bottom: 1.5rem;
}

.offre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 2rem;
}
.offre-pill {
    background: rgba(212,168,67,.07);
    border: 1px solid rgba(212,168,67,.18);
    color: rgba(232,194,106,.92);
    font-size: .65rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .26rem .7rem;
    border-radius: 50px;
}

.offre-chapter-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
}
.offre-chapter-foot--erp {
    margin-top: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
}
.offre-chapter-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.offre-pricebox {
    display: flex;
    align-items: baseline;
    gap: .55rem;
    padding: 1rem 1.4rem;
    background: rgba(9,14,27,.75);
    border-left: 3px solid var(--gold);
}
.offre-pricebox-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gray);
}
.offre-pricebox-amount {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.offre-pricebox-tax {
    font-size: .75rem;
    color: var(--gray);
}

.offre-chapter--erp .offre-chapter-media::after {
    background: linear-gradient(to top, rgba(14,23,41,.95) 0%, transparent 60%);
}
.offre-chapter--erp .offre-chapter-eyebrow { color: var(--purple-light); }
.offre-chapter--erp .offre-chapter-eyebrow::before { background: var(--purple-light); }
.offre-chapter--erp .offre-pricebox { border-left-color: var(--purple); }
.offre-chapter--erp .offre-pricebox-amount { color: var(--purple-light); }

.offre-chapter-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-top: .5rem;
}
.offre-chapter-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem 1.75rem;
}
.offre-chapter-feat {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .87rem;
    color: var(--gray-light);
    line-height: 1.45;
}
.offre-chapter-feat::before {
    content: '◆';
    color: var(--purple-light);
    font-size: .5rem;
    margin-top: .42rem;
    flex-shrink: 0;
}

.offre-chapter--gmb {
    background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark) 100%);
}
.offre-chapter--gmb .offre-chapter-media { height: clamp(120px, 16vw, 180px); }
.offre-gmb-layout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}
.offre-gmb-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.offre-gmb-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold);
}
.offre-gmb-title {
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2.4vw, 2.05rem);
    font-weight: 700;
    margin-bottom: .65rem;
    line-height: 1.2;
}
.offre-gmb-title em {
    color: var(--gold);
    font-style: italic;
}
.offre-gmb-desc {
    color: var(--gray);
    font-size: .91rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
    max-width: 40rem;
}
.offre-gmb-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}
.offre-gmb-pill {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    color: var(--gray-light);
    font-size: .68rem;
    letter-spacing: .05em;
    padding: .26rem .65rem;
    border-radius: 50px;
}
.offre-gmb-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    flex-shrink: 0;
    text-align: right;
}
.offre-gmb-eyebrow { margin-bottom: .75rem; }
.offre-gmb-price-label {
    font-size: .64rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gray);
    margin-bottom: .3rem;
}
.offre-gmb-price-num {
    font-family: var(--font-serif);
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.offre-gmb-price-sub {
    font-size: .75rem;
    color: var(--gray);
}

/* =============================================
   INDEX — Cartes cinématiques services
   ============================================= */
.sci-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px; margin-top: 3.5rem;
}

.sci-card { position: relative; overflow: hidden; min-height: 420px; cursor: none; }
.sci-card.wide { grid-column: span 2; min-height: 300px; }

.sci-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.8s var(--ease);
}

.sci-card:hover .sci-card-bg { transform: scale(1.08); }

.sci-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(9,14,27,.97) 0%, rgba(9,14,27,.52) 55%, rgba(9,14,27,.12) 100%);
    transition: background .5s;
}

.sci-card:hover .sci-card-overlay {
    background: linear-gradient(to top, rgba(9,14,27,.99) 0%, rgba(9,14,27,.72) 65%, rgba(9,14,27,.28) 100%);
}

.sci-card-inner {
    position: relative; z-index: 2;
    height: 100%; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 2.5rem;
}

.sci-card-eyebrow {
    font-size: .63rem; letter-spacing: .15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: .6rem;
    opacity: 0; transform: translateY(8px);
    transition: opacity .35s, transform .35s;
}

.sci-card:hover .sci-card-eyebrow { opacity: 1; transform: translateY(0); }

.sci-card-title {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: .6rem;
}

.sci-card-price {
    font-family: var(--font-serif); font-size: 1.5rem;
    font-weight: 700; color: var(--gold); margin-bottom: .9rem;
    opacity: 0; transform: translateY(10px);
    transition: opacity .4s .04s, transform .4s .04s;
}

.sci-card:hover .sci-card-price { opacity: 1; transform: translateY(0); }

.sci-card-desc {
    font-size: .86rem; color: var(--gray); line-height: 1.6;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .5s var(--ease), opacity .4s, margin .4s;
    margin-bottom: 0;
}

.sci-card:hover .sci-card-desc { max-height: 100px; opacity: 1; margin-bottom: 1.25rem; }

.sci-card-link {
    display: inline-flex; align-items: center; gap: .45rem;
    font-size: .73rem; font-weight: 600; letter-spacing: .1em;
    text-transform: uppercase; color: var(--gold);
    opacity: 0; transform: translateY(6px);
    transition: opacity .4s .08s, transform .4s .08s;
}

.sci-card:hover .sci-card-link { opacity: 1; transform: translateY(0); }
.sci-card-link svg { width: 13px; height: 13px; transition: transform .3s; }
.sci-card:hover .sci-card-link svg { transform: translateX(4px); }

.sci-card-badge {
    position: absolute; top: 1.5rem; left: 1.5rem;
    background: var(--gold); color: var(--black);
    font-size: .62rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
    padding: .28rem .72rem; border-radius: 2px; z-index: 3;
}

.sci-card.erp .sci-card-badge { background: var(--purple); color: var(--white); }
.sci-card.erp .sci-card-price { color: var(--purple-light); }
.sci-card.erp .sci-card-eyebrow { color: var(--purple-light); }
.sci-card.erp .sci-card-link { color: var(--purple-light); }

/* =============================================
   CONVERSION — tunnel · parcours · barre sticky
   ============================================= */
.container--narrow { max-width: 720px; margin-inline: auto; }

body.has-conv-sticky { padding-bottom: 72px; }
body.has-cookie-banner { padding-bottom: var(--cookie-banner-h, 0px); }
body.has-cookie-banner.has-conv-sticky { padding-bottom: calc(var(--cookie-banner-h, 0px) + 72px); }
@media (max-width: 767px) {
    body.has-conv-sticky .footer {
        scroll-margin-bottom: 88px;
    }
}

/* =============================================
   BANNIÈRE COOKIES — RGPD
   ============================================= */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s var(--ease), opacity 0.4s var(--ease), visibility 0.4s;
    pointer-events: none;
}
.cookie-consent.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.cookie-consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem clamp(1rem, 4vw, 2rem);
    background: rgba(9, 14, 27, 0.98);
    border-top: 1px solid var(--gold-border);
    backdrop-filter: blur(16px);
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.5);
}
.cookie-consent-inner {
    position: relative;
}
.cookie-consent-inner::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    pointer-events: none;
}
.cookie-consent-kicker {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .35rem;
}
.cookie-consent-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .5rem;
    line-height: 1.2;
}
.cookie-consent-desc {
    font-size: .82rem;
    color: var(--gray-light);
    line-height: 1.65;
    max-width: 640px;
    margin: 0 0 .5rem;
}
.cookie-consent-link {
    font-size: .75rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cookie-consent-link:hover { color: var(--gold-light); }
.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.cookie-consent-btn {
    padding: .7rem 1.35rem;
    font-size: .72rem;
    white-space: nowrap;
}
body.has-cookie-banner .conv-sticky.is-visible {
    bottom: var(--cookie-banner-h, 0px);
}

/* =============================================
   EXIT INTENT — social proof sortie
   ============================================= */
body.exit-intent-open { overflow: hidden; }
.exit-intent {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    pointer-events: none;
}
.exit-intent.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.exit-intent-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 18, 0.82);
    backdrop-filter: blur(6px);
}
.exit-intent-modal {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    max-height: min(90vh, 640px);
    overflow-y: auto;
    padding: 2rem 1.75rem 1.5rem;
    background: var(--dark-2);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
    text-align: center;
    transform: scale(0.94) translateY(16px);
    transition: transform 0.45s var(--ease);
}
.exit-intent.is-visible .exit-intent-modal {
    transform: scale(1) translateY(0);
}
.exit-intent-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--gray);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color var(--t), color var(--t);
}
.exit-intent-close:hover {
    border-color: var(--gold-border);
    color: var(--gold);
}
.exit-intent-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
}
.exit-intent-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
}
.exit-intent-rating {
    font-size: 0.78rem;
    color: var(--gray-light);
}
.exit-intent-rating strong { color: var(--gold); }
.exit-intent-kicker {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.exit-intent-title {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 4vw, 1.65rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.exit-intent-title em { color: var(--gold); font-style: italic; }
.exit-intent-desc {
    font-size: 0.88rem;
    color: var(--gray-light);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.exit-intent-desc strong { color: var(--gold); }
.exit-intent-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    display: inline-block;
}
.exit-intent-list li {
    font-size: 0.82rem;
    color: var(--gray);
    padding: 0.35rem 0 0.35rem 1.1rem;
    position: relative;
    line-height: 1.5;
}
.exit-intent-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}
.exit-intent-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
}
.exit-intent-dismiss {
    font-size: 0.72rem;
    color: var(--gray);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 0.25rem;
}
.exit-intent-dismiss:hover { color: var(--gray-light); }

.conv-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    transform: translateY(110%);
    transition: transform .4s var(--ease);
    pointer-events: none;
}
.conv-sticky.is-visible {
    transform: translateY(0);
    pointer-events: auto;
}
.conv-sticky.is-footer-visible {
    transform: translateY(110%);
    pointer-events: none;
}
.conv-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: .75rem clamp(1rem, 4vw, 2rem);
    background: rgba(9,14,27,.97);
    border-top: 1px solid var(--gold-border);
    backdrop-filter: blur(12px);
    box-shadow: 0 -8px 32px rgba(0,0,0,.45);
}
.conv-sticky-text {
    font-size: .78rem;
    color: var(--gray-light);
    margin: 0;
}
.conv-sticky-text strong { color: var(--gold); }
.conv-sticky-btns {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}
.conv-sticky-cta {
    padding: .55rem 1.25rem;
    font-size: .72rem;
}
.conv-sticky-tel {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}
.conv-sticky-tel:hover { color: var(--gold-light); }

/* Parcours conversion — accueil */
.conv-path {
    padding: 5rem 0;
    background: var(--black);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.conv-path-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}
.conv-path-grid::before {
    content: '';
    position: absolute;
    top: 2.1rem;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    pointer-events: none;
}
.conv-path-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.conv-path-num {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    background: var(--dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
}
.conv-path-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .5rem;
}
.conv-path-text {
    font-size: .82rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.conv-path-cta {
    display: inline-flex;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
}
.conv-path-cta:hover { text-decoration: underline; }
.conv-path-banner {
    margin-top: 3rem;
    padding: 2rem 2.5rem;
    border: 1px solid var(--gold-border);
    border-radius: var(--r);
    background: linear-gradient(135deg, rgba(212,168,67,.08), rgba(124,58,237,.06));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.conv-path-banner h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: .35rem;
}
.conv-path-banner p {
    font-size: .88rem;
    color: var(--gray);
    margin: 0;
}

/* Tunnel estimation */
.funnel-trust-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
    margin-top: 1.75rem;
}
.funnel-trust-pill {
    font-size: .72rem;
    letter-spacing: .04em;
    color: var(--gray-light);
    padding: .45rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: rgba(255,255,255,.04);
}
.funnel-trust-pill strong { color: var(--gold); font-weight: 600; }

.funnel-workspace {
    padding: 4rem 0 6rem;
    background: var(--black);
    border-top: 1px solid var(--border);
}
.funnel-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2.5rem;
    align-items: start;
    max-width: 1180px;
    margin-inline: auto;
}
.funnel-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 24px 64px rgba(0,0,0,.35);
    overflow: hidden;
}
.funnel-card-head {
    padding: 1.75rem 2rem 1.25rem;
    background: rgba(255,255,255,.02);
    border-bottom: 1px solid var(--border);
}
.funnel-stepper {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    position: relative;
}
.funnel-stepper::before {
    content: '';
    position: absolute;
    top: 1.1rem;
    left: 12%;
    right: 12%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}
.funnel-stepper li {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.funnel-stepper-num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: .9rem;
    font-weight: 700;
    color: var(--gray);
    transition: border-color var(--t), background var(--t), color var(--t), box-shadow var(--t);
}
.funnel-stepper-label {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray);
    transition: color var(--t);
}
.funnel-stepper li.active .funnel-stepper-num {
    border-color: var(--gold);
    background: var(--gold-dim);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(212,168,67,.2);
}
.funnel-stepper li.active .funnel-stepper-label { color: var(--gold); }
.funnel-stepper li.done .funnel-stepper-num {
    border-color: var(--gold-border);
    color: var(--gold);
    background: rgba(212,168,67,.12);
}
.funnel-stepper li.done .funnel-stepper-label { color: var(--gray-light); }

.funnel-progress { margin: 0; }
.funnel-progress-track {
    height: 2px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}
.funnel-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--purple-light));
    transition: width .45s var(--ease);
}

#funnel-form {
    padding: 2rem 2rem 0;
}
.funnel-step-head {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.funnel-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.form-group label .opt {
    font-weight: 400;
    color: var(--gray);
    font-size: .75rem;
}

.funnel-step { display: none; }
.funnel-step.active { display: block; animation: funnel-in .35s var(--ease); }
@keyframes funnel-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.funnel-step-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .5rem;
}
.funnel-step-desc {
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.funnel-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.funnel-options.is-invalid .funnel-option-inner { border-color: rgba(220,80,80,.5); }
.funnel-option { cursor: pointer; }
.funnel-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.funnel-option-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 88px;
    padding: 1.15rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: rgba(255,255,255,.02);
    transition: border-color var(--t), background var(--t), transform var(--t), box-shadow var(--t);
    height: 100%;
}
.funnel-option.is-selected .funnel-option-inner {
    box-shadow: 0 8px 24px rgba(212,168,67,.12);
}
.funnel-option:hover .funnel-option-inner,
.funnel-option.is-selected .funnel-option-inner {
    border-color: var(--gold-border);
    background: var(--gold-dim);
    transform: translateY(-2px);
}
.funnel-option-title {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: .25rem;
}
.funnel-option-meta {
    font-size: .68rem;
    color: var(--gray);
}

.funnel-consent {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .78rem;
    color: var(--gray);
    line-height: 1.6;
    cursor: pointer;
}
.funnel-consent.is-invalid { color: #f87171; }
.funnel-consent input { margin-top: .2rem; flex-shrink: 0; accent-color: var(--gold); }

.funnel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,.15);
}
.funnel-nav .btn { min-width: 140px; }
.funnel-nav--success-only {
    justify-content: flex-start;
}
.funnel-nav--success-only #funnel-next {
    display: none !important;
}
.funnel-step--success { text-align: center; }
.funnel-success-header { margin-bottom: 2rem; }
.funnel-step--success .funnel-step-desc strong { color: var(--gold); font-weight: 600; }
.funnel-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    border: 2px solid var(--gold);
    position: relative;
}
.funnel-success-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 45%;
    width: 10px;
    height: 18px;
    border: solid var(--gold);
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}
.funnel-recap {
    text-align: left;
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: var(--r);
}
.funnel-recap-list { margin: 0; }
.funnel-recap-list > div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: .75rem;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border);
}
.funnel-recap-list > div:last-child { border-bottom: none; }
.funnel-recap-list dt {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray);
}
.funnel-recap-list dd {
    font-size: .88rem;
    color: var(--white);
    margin: 0;
}
.funnel-what-next {
    text-align: left;
    margin-bottom: 1.75rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: rgba(255,255,255,.02);
}
.funnel-what-next-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}
.funnel-what-next-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.funnel-what-next-list li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    font-size: .86rem;
    color: var(--gray-light);
    line-height: 1.55;
}
.funnel-what-next-list strong { color: var(--white); }
.funnel-what-next-num {
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    background: var(--gold-dim);
    color: var(--gold);
    font-size: .72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
}

.funnel-success-cta {
    text-align: center;
    margin-top: 1.75rem;
    padding: 1.75rem 1.5rem 1.5rem;
    border: 1px solid var(--gold-border);
    border-radius: var(--r);
    background: linear-gradient(160deg, rgba(212,168,67,.12), rgba(124,58,237,.08));
    box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.funnel-success-cta-kicker {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}
.funnel-success-cta-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.funnel-success-cta-btns {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-width: 420px;
    margin: 0 auto 1rem;
}
.funnel-cta-primary {
    box-shadow: 0 12px 40px rgba(212,168,67,.25);
}
.funnel-cta-tertiary {
    font-size: .75rem;
    padding-top: .75rem;
    padding-bottom: .75rem;
    border-color: rgba(255,255,255,.12);
    color: var(--gray-light);
}
.funnel-cta-tertiary:hover {
    color: var(--gold);
    border-color: var(--gold-border);
}
.funnel-success-cta-note {
    font-size: .72rem;
    color: var(--gray);
    line-height: 1.55;
    margin: 0;
    max-width: 380px;
    margin-inline: auto;
}

.funnel-card--success .funnel-card-head {
    border-bottom-color: var(--gold-border);
}
.funnel-sidebar-cta-success { display: none; }
.funnel-sidebar--success .funnel-sidebar-card:not(.funnel-sidebar-cta-success) {
    display: none;
}
.funnel-sidebar--success .funnel-sidebar-cta-success {
    display: block;
    border-color: var(--gold-border);
    background: linear-gradient(160deg, rgba(212,168,67,.1), rgba(124,58,237,.06));
}
.funnel-sidebar-cta-success .btn { margin-bottom: .65rem; }
.funnel-sidebar-cta-success .btn:last-child { margin-bottom: 0; }

.funnel-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.funnel-sidebar-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.35rem 1.5rem;
}
.funnel-sidebar-card--highlight {
    text-align: center;
    border-color: var(--gold-border);
    background: linear-gradient(160deg, rgba(212,168,67,.1), rgba(124,58,237,.06));
}
.funnel-sidebar-kicker {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}
.funnel-sidebar-offer {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .35rem;
}
.funnel-sidebar-offer-desc {
    font-size: .8rem;
    color: var(--gray-light);
    line-height: 1.55;
    margin: 0;
}
.funnel-sidebar-card--muted {
    background: rgba(255,255,255,.02);
}
.funnel-sidebar-note {
    font-size: .75rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}
.funnel-sidebar-note strong { color: var(--gray-light); }
.funnel-sidebar-card h3 {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.funnel-sidebar-card p {
    font-size: .82rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.funnel-aside-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.funnel-aside-list li {
    font-size: .82rem;
    color: var(--gray-light);
    padding: .4rem 0 .4rem 1rem;
    position: relative;
    line-height: 1.5;
}
.funnel-aside-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .65rem;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}
.funnel-sidebar-card .btn--full { margin-bottom: 0; }
.funnel-sidebar-card p:last-child { margin-bottom: 0; }

.contact-discount .conv-path-cta {
    display: inline-flex;
    margin-top: 1rem;
}

.contact-prefill-banner {
    font-size: .82rem;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    padding: .75rem 1rem;
    border-radius: var(--r);
    margin-bottom: 1.25rem;
}
.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
    border-color: rgba(248,113,113,.6);
}

.rating-summary a.rating-src-link {
    color: var(--gray);
    transition: color var(--t);
}
.rating-summary a.rating-src-link:hover { color: var(--gold); }

/* =============================================
   PIED DE PAGE — compact & interactif
   ============================================= */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 2.25rem 0 0;
    position: relative;
}
.footer-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
    margin-bottom: 1.75rem;
    background: linear-gradient(135deg, rgba(212,168,67,.12), rgba(124,58,237,.08));
    border: 1px solid var(--gold-border);
    border-radius: var(--r);
}
.footer-cta-text {
    margin: 0;
    font-size: .82rem;
    color: var(--gray-light);
}
.footer-cta-text strong { color: var(--gold); }
.footer-cta-actions {
    display: flex;
    align-items: center;
    gap: .75rem 1rem;
    flex-wrap: wrap;
}
.footer-cta-tel {
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}
.footer-cta-tel:hover { color: var(--gold-light); }
.footer-inner {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
    gap: 1.75rem 2rem;
    margin-bottom: 1.75rem;
}
.footer-brand .logo-img {
    height: 72px;
    max-width: 180px;
    margin-bottom: .75rem;
    background: transparent;
    border-radius: 0;
}
.footer-tagline {
    font-size: .8rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 300px;
}
.footer-social { display: flex; gap: .5rem; }
.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--t), background var(--t), transform var(--t);
}
.footer-social-link:hover {
    border-color: var(--gold-border);
    background: var(--gold-dim);
    transform: translateY(-2px);
}
.footer-social-link img { width: 17px; height: 17px; object-fit: contain; filter: brightness(1.3); }
.footer-col h4 {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .85rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { font-size: .82rem; color: var(--gray); margin-bottom: .45rem; }
.footer-col a {
    color: var(--gray);
    transition: color var(--t), padding-left var(--t);
    display: inline-block;
}
.footer-col a:hover,
.footer-col a.is-hover {
    color: var(--gold);
    padding-left: .2rem;
}
.footer-col--accordion h4 {
    cursor: default;
    user-select: none;
}
.footer-col--accordion h4::after { content: none; }
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0 1.25rem;
    border-top: 1px solid var(--border);
    font-size: .72rem;
    color: rgba(156,163,175,.45);
    flex-wrap: wrap;
    gap: .4rem;
}
.footer-geo {
    font-size: .7rem;
    color: rgba(156,163,175,.55);
    line-height: 1.6;
    max-width: 720px;
}
.footer-geo a { color: var(--gold); }
.footer-geo a:hover { color: var(--gold-light); }

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: .35rem .6rem;
    margin-top: .5rem;
}
.footer-legal a {
    font-size: .7rem;
    color: rgba(156,163,175,.55);
    transition: color var(--t);
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { color: rgba(156,163,175,.3); font-size: .7rem; }

/* Pages légales */
.page-hero--compact { padding-bottom: 3.5rem; }
.legal-page { padding: 3rem 0 6rem; background: var(--black); }
.container--legal { max-width: 820px; margin-inline: auto; }
.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.legal-nav a {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--r);
    color: var(--gray);
    transition: border-color var(--t), color var(--t), background var(--t);
}
.legal-nav a:hover,
.legal-nav a.is-active {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--gold-dim);
}
.legal-doc {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: clamp(1.75rem, 4vw, 2.75rem);
}
.legal-updated {
    font-size: .78rem;
    color: var(--gray);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.legal-doc h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin: 2rem 0 1rem;
    padding-top: .5rem;
}
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc h3 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--gold);
    margin: 1.25rem 0 .65rem;
}
.legal-doc p {
    font-size: .9rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.legal-doc a { color: var(--gold); text-decoration: underline; }
.legal-doc a:hover { color: var(--gold-light); }
.legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}
.legal-list li {
    font-size: .9rem;
    color: var(--gray-light);
    line-height: 1.75;
    padding: .35rem 0 .35rem 1rem;
    position: relative;
}
.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .75rem;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

/* =============================================
   RESPONSIVE — base (images, titres, débordements)
   ============================================= */
img, video, svg, canvas {
    max-width: 100%;
    height: auto;
}
.hero-bg-img { max-width: none; }
.client-logo-frame img {
    height: 48px;
    max-width: 160px;
}
.footer-social-link img {
    height: auto;
}
.page-hero-title {
    font-size: clamp(2rem, 6vw, 4.2rem);
    overflow-wrap: break-word;
}
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* =============================================
   RESPONSIVE — Tablette / menu mobile ≤ 1100px
   ============================================= */
@media (max-width: 1100px) {
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .funnel-stepper-label { font-size: 0.55rem; }
    .funnel-success-cta-btns { max-width: 100%; }
    .conv-path-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .conv-path-grid::before { display: none; }
    .funnel-layout {
        grid-template-columns: 1fr;
    }
    .funnel-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .funnel-sidebar-card--highlight { grid-column: 1 / -1; }
    .funnel-options { grid-template-columns: repeat(2, 1fr); }
    .navbar { padding: 0 1.5rem; width: 100%; }
    .nav-container { width: 100%; max-width: none; }
    .nav-cta { display: none; }
    .nav-phone { display: none; }
    .menu-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(9,14,27,.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 1rem 0;
        margin-left: 0;
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: transform .4s var(--ease), opacity .4s var(--ease), visibility .4s;
        border-bottom: 1px solid var(--border);
        z-index: 999;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-links li { width: 100%; text-align: center; }
    .nav-link { display: block; padding: 1rem; font-size: .88rem; white-space: normal; }

    .pillars-grid         { grid-template-columns: repeat(2,1fr); }
    .services-preview-grid { grid-template-columns: repeat(2,1fr); }
    .offres-grid          { grid-template-columns: repeat(2,1fr); }
    .offre-card--full     { grid-column: span 2; grid-template-columns: 1fr; }
    .garanties-grid       { grid-template-columns: repeat(2,1fr); }
    .testimonials-grid    { grid-template-columns: repeat(2,1fr); }
    .testi-card:nth-child(3) { grid-column: span 2; max-width: 480px; margin: 0 auto; width: 100%; }
    .porto-grid           { grid-template-columns: repeat(2,1fr); }
    .metrics-grid         { grid-template-columns: repeat(2, 1fr); }
    .stat-tiles           { grid-template-columns: repeat(2, 1fr); }
    .feature-grid         { grid-template-columns: 1fr; gap: 3rem; }
    .feature-facts        { grid-template-columns: 1fr; }
    .agence-inner         { grid-template-columns: 1fr; gap: 3rem; }
    .agence-photo-wrap    { max-width: 520px; width: 100%; margin-inline: auto; }
    .stack-pillars        { grid-template-columns: repeat(2, 1fr); }
    .stack-grid           { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    .valeurs-grid         { grid-template-columns: repeat(2,1fr); }
    .secteur-block        { grid-template-columns: 1fr; gap: 2.5rem; }
    .secteur-block.reverse { direction: ltr; }
    .process-grid         { grid-template-columns: repeat(2,1fr); gap: 3rem; }
    .process-grid::before { display: none; }
    .blog-grid            { grid-template-columns: repeat(2,1fr); }
    .contact-grid         { grid-template-columns: 1fr; gap: 3rem; }
    .footer-inner         { grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; }
    .footer-brand         { grid-column: span 2; }
    .footer-tagline       { max-width: none; }
    .footer-cta-bar       { flex-direction: column; text-align: center; }
    .footer-cta-actions   { justify-content: center; width: 100%; }
    .modal-content        { grid-template-columns: 1fr; }
    .modal-img-wrap       { min-height: 220px; }
    .offres-lede-grid     { grid-template-columns: 1fr; }
    .offre-chapter-split  { grid-template-columns: 1fr; gap: 2.5rem; }
    .offre-chapter-feats  { grid-template-columns: 1fr; }
    .offre-gmb-layout     { grid-template-columns: 1fr; gap: 2rem; }
    .offre-gmb-aside      { align-items: flex-start; text-align: left; }
    .sci-grid             { grid-template-columns: 1fr 1fr; }
    .sci-card.wide        { grid-column: span 2; min-height: 280px; }
    .modal-img-wrap img   { border-radius: 10px 10px 0 0; }
}

/* =============================================
   RESPONSIVE — Mobile ≤ 768px
   ============================================= */
@media (max-width: 768px) {
    :root { --nav-h: 64px; }
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
    a, button, .filter-btn, select { cursor: pointer; }

    .navbar { padding: 0 1rem; }
    .logo-img { height: 54px; max-width: 160px; }

    .hero { padding: calc(var(--nav-h) + 2rem) clamp(1rem, 4vw, 1.5rem) 3rem; }
    .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; white-space: normal; }
    .hero-stats {
        width: 100%;
        max-width: none;
        flex-direction: column;
        border-radius: var(--r);
    }
    .hero-stat {
        width: 100%;
        min-width: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .hero-stat:last-child { border-bottom: none; }

    .pillars { padding: 4rem 0; }
    .pillars-grid { grid-template-columns: 1fr; gap: 0; }
    .conv-path { padding: 4rem 0; }
    .conv-path-grid { grid-template-columns: 1fr; }
    .conv-path-banner { flex-direction: column; text-align: center; padding: 1.5rem; }
    .conv-path-banner .btn { width: 100%; }
    .conv-sticky-inner { flex-direction: column; text-align: center; }
    .conv-sticky-btns {
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }
    .conv-sticky-cta,
    .conv-sticky-btns .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }
    .conv-sticky-tel { white-space: normal; text-align: center; }
    .discount-big {
        white-space: normal;
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    .funnel-options { grid-template-columns: 1fr; }
    .funnel-sidebar { grid-template-columns: 1fr; }
    .funnel-card-head,
    #funnel-form,
    .funnel-nav { padding-left: 1.25rem; padding-right: 1.25rem; }
    .funnel-stepper::before { display: none; }
    .funnel-stepper-label { font-size: .5rem; }
    .funnel-nav { flex-direction: column-reverse; }
    .funnel-nav .btn { width: 100%; justify-content: center; min-width: 0; }
    .services-preview { padding: 4rem 0; }
    .services-preview-grid { grid-template-columns: 1fr; }
    .process { padding: 4rem 0; }
    .process-grid { grid-template-columns: 1fr; }
    .testimonials { padding: 4rem 0; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testi-card:nth-child(3) { grid-column: span 1; max-width: 100%; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .legal-doc { padding: 1.5rem 1.25rem; }
    .legal-doc h2 { font-size: 1.1rem; }
    .funnel-recap-list > div { grid-template-columns: 1fr; gap: 0.25rem; }
    .exit-intent-modal { padding: 1.75rem 1.25rem 1.25rem; }
    .client-logo-frame { height: 52px; }
    .client-logo-frame img { height: 44px; max-width: 140px; }
    .cta-section { padding: 4rem 0; }
    .cta-btns { flex-direction: column; align-items: stretch; width: 100%; }
    .cta-btns .btn { width: 100%; justify-content: center; white-space: normal; }

    .offres-grid { grid-template-columns: 1fr; }
    .offre-card--full { grid-column: span 1; }
    .garanties-grid { grid-template-columns: 1fr; }
    .porto-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: 1fr; }
    .stat-tiles { grid-template-columns: 1fr; }
    .stat-tile { padding: 1.5rem 1.25rem; }
    .stat-big { font-size: 2rem; }
    .stack-pillars { grid-template-columns: 1fr; }
    .stack-grid { grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); }
    .stack-item { min-height: 110px; }
    .valeurs-grid { grid-template-columns: 1fr; }
    .secteur-all-grid { grid-template-columns: 1fr; }
    .methode-step { grid-template-columns: 1fr; gap: 1rem; }
    .methode-step-num { width: 60px; height: 60px; font-size: 1.4rem; }
    .methode-step-num::after { display: none; }
    .blog-grid { grid-template-columns: 1fr; }
    .section-header { margin-bottom: 2.5rem; }
    .section-lead { max-width: none; }
    .page-hero-desc { max-width: none; }
    .form-row-2 { grid-template-columns: 1fr; }
    .footer { padding-top: 1.75rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 0; margin-bottom: 1rem; }
    .footer-brand { grid-column: span 1; margin-bottom: .5rem; }
    .footer-geo { display: none; }
    .footer-cta-bar { gap: .75rem; padding: .85rem 1rem; margin-bottom: 1.25rem; }
    .footer-cta-actions { flex-direction: column; align-items: stretch; gap: .6rem; }
    .footer-cta-actions .btn { width: 100%; justify-content: center; text-align: center; }
    .footer-cta-tel { text-align: center; display: block; padding: .5rem 0; font-size: .85rem; }
    .footer-col--accordion {
        border-bottom: 1px solid var(--border);
    }
    .footer-col--accordion h4 {
        cursor: pointer;
        margin-bottom: 0;
        padding: .85rem 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .footer-col--accordion h4::after {
        content: '+';
        font-size: 1rem;
        font-weight: 400;
        color: var(--gold);
        transition: transform var(--t);
    }
    .footer-col--accordion.is-open h4::after {
        content: '−';
    }
    .footer-col--accordion ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s var(--ease), padding .35s var(--ease);
        padding: 0;
    }
    .footer-col--accordion.is-open ul {
        max-height: 280px;
        padding: 0 0 .85rem;
    }
    .footer-bottom { flex-direction: column; text-align: center; padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px)); }
    body.has-conv-sticky .footer-bottom {
        padding-bottom: max(5rem, calc(4.5rem + env(safe-area-inset-bottom, 0px)));
    }

    .agence-hero-section { padding: 4rem 0; }
    .agence-inner { gap: 2rem; }
    .agence-photo-wrap { max-width: none; width: 100%; }
    .agence-photo-badge { right: 0; bottom: -1rem; }
    .agence-text .btn { width: 100%; justify-content: center; }
    .slab { padding: 3.5rem 0; }
    .slab--tight { padding: 3rem 0; }

    .page-hero { padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem; }
    .feature-grid { gap: 2rem; }
    .feature-frame { min-height: 260px; }
    .feature-actions { flex-direction: column; align-items: stretch; }
    .feature-actions .btn { width: 100%; justify-content: center; white-space: normal; }
    .portfolio-feature { padding: 4rem 0; }
    .portfolio-metrics { padding: 2.5rem 0; }
    .portfolio-grid-section { padding: 2rem 0 4rem; }

    .blog-modal-overlay { padding: 1rem; }
    .modal-body { padding: 1.5rem; }
    .modal-content { grid-template-columns: 1fr; }
    .modal-img-wrap { min-height: 180px; }
    .modal-img-wrap img { border-radius: 10px 10px 0 0; }
    .offre-chapter-title { max-width: none; }
    .offre-chapter-foot { flex-direction: column; align-items: stretch; }
    .offre-chapter-foot .btn,
    .offre-chapter-btns { width: 100%; }
    .offre-chapter-btns { flex-direction: column; }
    .offre-chapter-btns .btn { width: 100%; justify-content: center; }
    .offre-pricebox { width: 100%; }
    .sci-grid { grid-template-columns: 1fr; }
    .sci-card.wide { grid-column: span 1; min-height: 300px; }
    .calendly-section { padding: 3rem 0 4rem; }
    .calendly-inline-widget { height: 620px; min-height: 520px; max-width: 100%; }
    .calendly-wrap { max-width: 100%; overflow: hidden; }
}

@media (max-width: 480px) {
    .logo-img { height: 48px; max-width: 150px; }
    .footer-brand .logo-img { height: 58px; }
    .stack-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .client-logo-frame { height: 48px; }
    .client-logo-frame img { height: 40px; max-width: 120px; }
    .client-logo-name { font-size: .7rem; }
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1.1rem 1rem;
    }
    .cookie-consent-desc { max-width: none; }
    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }
    .cookie-consent-btn { width: 100%; justify-content: center; }
    .clients-grid { grid-template-columns: 1fr; max-width: 280px; margin-inline: auto; }
    .footer-legal { flex-direction: column; gap: 0.35rem; }
    .footer-legal span[aria-hidden="true"] { display: none; }
    .exit-intent { padding: 0.75rem; align-items: flex-end; }
    .exit-intent-modal {
        max-height: 92vh;
        border-radius: 12px 12px 0 0;
        padding: 1.5rem 1rem max(1.25rem, env(safe-area-inset-bottom, 0px));
    }
    .exit-intent-close {
        width: 2.75rem;
        height: 2.75rem;
    }
    .exit-intent-list { width: 100%; }
    .stat-big { font-size: 1.75rem; }
    .metric-num { font-size: 1.85rem; }
}

/* =============================================
   LEAD MAGNET — modal capture email
   ============================================= */
.cw-lm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(9,14,27,0.75);
    z-index: 1100;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}
.cw-lm-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}
@media (min-width: 600px) {
    .cw-lm-overlay { align-items: center; }
}
.cw-lm-modal {
    background: linear-gradient(145deg, rgba(22,28,48,0.98) 0%, rgba(9,14,27,0.99) 100%);
    border: 1px solid rgba(212,168,67,0.22);
    border-radius: 16px 16px 0 0;
    padding: 2.5rem 1.5rem 2rem;
    max-width: 520px;
    width: 100%;
    position: relative;
    transform: translateY(40px);
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 -8px 48px rgba(0,0,0,0.55);
}
.cw-lm-overlay.is-open .cw-lm-modal { transform: translateY(0); }
@media (min-width: 600px) {
    .cw-lm-modal {
        border-radius: 16px;
        padding: 2.75rem 2.5rem 2.25rem;
        transform: scale(0.92) translateY(20px);
    }
    .cw-lm-overlay.is-open .cw-lm-modal { transform: scale(1) translateY(0); }
}
.cw-lm-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: none;
    color: var(--gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
}
.cw-lm-close:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.cw-lm-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212,168,67,0.12);
    border: 1px solid rgba(212,168,67,0.3);
    border-radius: 100px;
    padding: 0.3rem 0.9rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.cw-lm-title {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}
.cw-lm-title em { font-style: italic; color: var(--gold); }
.cw-lm-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin: 0 0 1.25rem;
}
.cw-lm-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.cw-lm-perks li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.83rem;
    color: var(--gray-light);
    line-height: 1.4;
}
.cw-lm-perks li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.cw-lm-form {
    display: flex;
    gap: 0.6rem;
    align-items: stretch;
}
.cw-lm-input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r);
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    color: var(--white);
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.2s;
}
.cw-lm-input::placeholder { color: rgba(168,179,199,0.55); }
.cw-lm-input:focus { border-color: rgba(212,168,67,0.5); }
.cw-lm-submit {
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: var(--r);
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    font-family: var(--font-sans);
}
.cw-lm-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.cw-lm-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.cw-lm-note {
    font-size: 0.7rem;
    color: rgba(168,179,199,0.55);
    margin: 0.7rem 0 0;
}
.cw-lm-success {
    text-align: center;
    padding: 0.5rem 0;
}
.cw-lm-success-icon { font-size: 2.25rem; margin-bottom: 0.6rem; }
.cw-lm-success h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--white);
    margin: 0 0 0.5rem;
}
.cw-lm-success p {
    font-size: 0.88rem;
    color: var(--gray);
    margin: 0 0 1.25rem;
}
.cw-lm-success .btn { min-width: 200px; }
@media (max-width: 480px) {
    .cw-lm-form { flex-direction: column; }
    .cw-lm-submit { width: 100%; padding: 0.9rem; }
    .cw-lm-modal { padding: 2rem 1.25rem 1.75rem; }
}

/* =============================================
   FOMO — notification sociale flottante
   ============================================= */
.cw-fomo {
    position: fixed;
    bottom: 7rem;
    left: 1.25rem;
    z-index: 997;
    background: rgba(16,22,40,0.97);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    max-width: 278px;
    box-shadow: 0 4px 28px rgba(0,0,0,0.45);
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    transform: translateX(calc(-100% - 2rem));
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
    pointer-events: none;
}
.cw-fomo.is-visible { transform: translateX(0); }
.cw-fomo-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--purple-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
}
.cw-fomo-text { flex: 1; min-width: 0; }
.cw-fomo-action {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.35;
}
.cw-fomo-action strong { font-weight: 700; }
.cw-fomo-meta {
    font-size: 0.68rem;
    color: var(--gray);
    margin-top: 0.22rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.cw-fomo-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: cw-fomo-pulse 1.8s ease-in-out infinite;
}
@keyframes cw-fomo-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
body.has-conv-sticky .cw-fomo { bottom: calc(64px + 2.5rem); }
@media (max-width: 767px) {
    .cw-fomo { max-width: 240px; bottom: 5.5rem; left: 0.75rem; }
    body.has-conv-sticky .cw-fomo { bottom: calc(72px + 2rem); }
}
/* =============================================
   WHATSAPP — bouton flottant
   ============================================= */
.cw-whatsapp {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.42);
    text-decoration: none;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    animation: cw-wa-pop 0.5s 1.5s both cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes cw-wa-pop {
    from { opacity:0; transform: scale(0.6); }
    to   { opacity:1; transform: scale(1); }
}
.cw-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 32px rgba(37,211,102,0.58);
}
.cw-whatsapp svg { flex-shrink: 0; }
.cw-whatsapp-tooltip {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #111;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 14px rgba(0,0,0,0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.cw-whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #fff;
}
.cw-whatsapp:hover .cw-whatsapp-tooltip { opacity: 1; }
body.has-conv-sticky .cw-whatsapp { bottom: calc(64px + 1.25rem); }
@media (max-width: 767px) {
    .cw-whatsapp { width: 50px; height: 50px; right: 1rem; bottom: 5rem; }
    body.has-conv-sticky .cw-whatsapp { bottom: calc(72px + 0.85rem); }
    .cw-whatsapp-tooltip { display: none; }
}

/* =============================================
   EXIT-INTENT — countdown timer
   ============================================= */
.exit-intent-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0 0.5rem;
    font-size: 0.78rem;
    color: var(--gray);
}
.exit-intent-countdown strong {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.04em;
}
.exit-intent-countdown-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
}

/* =============================================
   ARTICLE PAGE — mise en page
   ============================================= */
.article-hero {
    position: relative;
    padding: calc(var(--nav-h) + 3rem) clamp(1rem,4vw,2rem) 3rem;
    background: var(--dark);
    overflow: hidden;
    text-align: center;
}
.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(9,14,27,0.80) 0%, rgba(9,14,27,0.96) 100%),
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.18) 0%, transparent 70%);
}
.article-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.22;
}
.article-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}
.article-cat {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.35);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 1.5rem;
}
.article-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 1.25rem;
    color: var(--white);
}
.article-title em { font-style: italic; color: var(--gold); }
.article-meta {
    font-size: 0.82rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.article-meta-sep { opacity: 0.4; }
.article-body-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 4rem clamp(1rem,4vw,2rem) 5rem;
}
.article-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-light);
}
.article-body p { margin: 0 0 1.6rem; }
.article-body h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--white);
    margin: 2.5rem 0 1rem;
    line-height: 1.22;
}
.article-body h2 em { font-style: italic; color: var(--gold); }
.article-body h3 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin: 2rem 0 0.75rem;
}
.article-body strong { color: var(--white); }
.article-body ul {
    padding-left: 1.5rem;
    margin: 0 0 1.6rem;
}
.article-body ul li { margin-bottom: 0.5rem; }
.article-body blockquote {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(212,168,67,0.06);
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: var(--gray-light);
}
.article-key-box {
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.22);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
}
.article-key-box h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple-light);
    margin: 0 0 0.75rem;
}
.article-key-box p { margin: 0; color: var(--gray-light); }
.article-cta-box {
    background: linear-gradient(135deg, rgba(212,168,67,0.12) 0%, rgba(124,58,237,0.08) 100%);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin: 3rem 0 0;
}
.article-cta-box h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 0.75rem;
}
.article-cta-box p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0 0 1.5rem;
}
.article-cta-box .btn { min-width: 220px; }
.article-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--gray);
    font-size: 0.82rem;
    text-decoration: none;
    margin-bottom: 3rem;
    transition: color 0.2s;
}
.article-nav-back:hover { color: var(--gold); }
@media (max-width: 767px) {
    .article-body-wrap { padding: 2.5rem 1rem 3.5rem; }
    .article-cta-box { padding: 1.75rem 1.25rem; }
    .article-key-box { padding: 1.25rem; }
}
}
