/* ═══════════════════════════════════════════════════════════════════
   ZUHD STUDIO, STYLE SHEET
   Source de vérité visuelle : brand-guidelines.md (racine projet)
═══════════════════════════════════════════════════════════════════ */

:root {
    /* Couleurs palette officielle */
    --navy: #132760;
    --acier: #679DD1;
    --bleu-pale: #D6E8F7;
    --blanc-casse: #F7F8FC;
    --orange: #06B6D4;        /* nom legacy, valeur = cyan (migration 2026-05) */
    --cyan: #06B6D4;          /* CTA principal */
    --cyan-bright: #22D3EE;   /* Hover / glow lumineux */
    --cyan-deep: #0891B2;     /* Texte cyan sur fond clair (contraste WCAG) */
    --cyan-soft: #67E8F9;     /* Accents subtils, dividers */
    --navy-deep: #0A1736;     /* Sections cosmic plus profondes que --navy */
    --white: #FFFFFF;
    --green: #22C55E; /* Signal disponibilité uniquement */

    /* Gradient identitaire */
    --grad: linear-gradient(135deg, #132760 0%, #679DD1 100%);

    /* Spacings (multiples de 8) */
    --xs: 8px;
    --sm: 16px;
    --md: 24px;
    --lg: 40px;
    --xl: 64px;
    --2xl: 96px;

    /* Section padding vertical (aération premium) */
    --section-py: 96px;

    /* Typographie — 3 tailles body standardisées */
    --text-lead: 17px;   /* Intro de section, sous-titre important */
    --text-body: 15px;   /* Texte courant */
    --text-small: 13px;  /* Labels, meta, légendes */

    /* Border radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-full: 9999px;

    /* Shadows */
    --sh-card: 0 2px 12px rgba(19, 39, 96, 0.08);
    --sh-card-hover: 0 8px 32px rgba(19, 39, 96, 0.14);
    --sh-cta: 0 4px 16px rgba(6, 182, 212, 0.30);

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --dur-fast: 0.2s;
    --dur-med: 0.35s;
}

/* Reset léger */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01";
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
body.loaded { opacity: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul { list-style: none; }

/* Container */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--md); }

/* Typographie système */
h1, h2, h3, h4 { color: var(--navy); letter-spacing: -0.03em; line-height: 1.1; font-weight: 700; }
h1 { font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.04em; }
h2 { font-size: clamp(28px, 3.8vw, 40px); letter-spacing: -0.035em; }
h3 { font-size: 20px; font-weight: 600; }
p { line-height: 1.65; }

/* Accents */
.text-accent { color: var(--orange); }

/* Section tags réutilisables */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    padding: 6px 14px;
    border: 1px solid rgba(6,182,212,0.35);
    border-radius: var(--r-full);
    background: rgba(6,182,212,0.1);
    margin-bottom: var(--md);
}

/* Bouton CTA primary (orange plein) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--orange);
    color: var(--navy);
    padding: 16px 28px;
    border-radius: var(--r-md);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
    box-shadow: var(--sh-cta);
    transition: all var(--dur-fast) var(--ease);
    cursor: pointer;
    text-align: center;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4); }
.btn-primary:active { transform: translateY(0); }
.btn-primary i { transition: transform var(--dur-fast); font-size: 13px; }
.btn-primary:hover i { transform: translateX(3px); }

/* Bouton CTA secondary (ghost sur fond sombre) */
.btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 16px 28px;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 15px;
    transition: background var(--dur-fast), border-color var(--dur-fast);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.08); border-color: var(--orange); }

/* Bouton ghost sur fond clair */
.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 12px 24px;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 14px;
    transition: background var(--dur-fast), color var(--dur-fast);
}
.btn-ghost-light:hover { background: var(--navy); color: var(--white); }

/* Reveal animations (activées par JS IntersectionObserver en Task 14) */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.1s; }
.reveal--d2 { transition-delay: 0.2s; }
.reveal--d3 { transition-delay: 0.3s; }

/* ══════════ NAVIGATION ══════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(19, 39, 96, 0);
    backdrop-filter: blur(0);
    transition: background var(--dur-fast), backdrop-filter var(--dur-fast), padding var(--dur-fast);
}
.navbar.scrolled {
    background: rgba(19, 39, 96, 0.88);
    backdrop-filter: blur(12px);
    padding: 12px 0;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 var(--md);
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--md);
}
.logo {
    font-size: 20px; font-weight: 700; color: var(--white);
    letter-spacing: -0.02em; display: inline-flex; align-items: baseline; gap: 2px;
}
.logo-dot { color: var(--orange); font-size: 28px; line-height: 0; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 500;
    transition: color var(--dur-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: var(--md); }
.btn-nav {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--orange); color: var(--navy);
    padding: 10px 20px; border-radius: var(--r-md);
    font-size: 13.5px; font-weight: 700;
    box-shadow: var(--sh-cta);
    transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(6,182,212,0.4); }

.nav-burger {
    display: none;
    flex-direction: column; gap: 4px;
    padding: 8px; cursor: pointer;
}
.nav-burger span {
    width: 24px; height: 2px; background: var(--white);
    transition: transform var(--dur-fast), opacity var(--dur-fast);
}
.nav-burger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.is-active span:nth-child(2) { opacity: 0; }
.nav-burger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 99;
    display: none;
    padding: 100px var(--md) var(--md);
}
.mobile-menu.is-open { display: block; }
.mobile-nav { display: flex; flex-direction: column; gap: var(--md); }
.mobile-nav a { color: var(--white); font-size: 20px; font-weight: 600; }
.mobile-nav .mobile-cta {
    margin-top: var(--md);
    background: var(--orange); color: var(--navy);
    padding: 16px; border-radius: var(--r-md);
    text-align: center; font-weight: 700;
}

@media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-right .btn-nav { display: none; }
    .nav-burger { display: flex; }
}

/* ══════════ HERO ══════════ */
.hero {
    min-height: 100vh;
    background: var(--grad);
    color: var(--white);
    padding: 140px var(--md) var(--2xl);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-inner { max-width: 900px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: var(--r-full);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 28px;
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulseGreen 1.6s infinite;
}
@keyframes pulseGreen {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
    70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 820px;
}

.hero-sub {
    font-size: clamp(16px, 1.6vw, 18px);
    color: rgba(255,255,255,0.78);
    line-height: 1.55;
    margin-bottom: var(--lg);
    max-width: 620px;
}

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

@media (max-width: 600px) {
    .hero { padding: 110px var(--md) var(--xl); min-height: auto; }
    .hero-actions .btn-primary, .hero-actions .btn-ghost-dark { width: 100%; justify-content: center; }
}

/* ══════════ STATS BAR ══════════ */
.stats-bar {
    background: var(--blanc-casse);
    padding: var(--section-py) 0;
    border-bottom: 1px solid var(--bleu-pale);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}
.stat-item {
    text-align: center;
    padding: 0 var(--md);
}
.stat-num {
    font-size: clamp(34px, 3.4vw, 44px);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}
.stat-label {
    font-size: 13px;
    color: rgba(19, 39, 96, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}
@media (max-width: 860px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--lg) 0; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; gap: var(--md); }
}

/* ══════════ WHY + FIT ══════════ */
.section-why {
    background: var(--white);
    color: var(--navy);
    padding: var(--section-py) 0;
}
.wf-head {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}
.wf-head h2 { color: var(--navy); margin-bottom: 20px; }
.wf-head p { font-size: var(--text-lead); color: rgba(19,39,96,0.65); line-height: 1.65; max-width: 620px; margin: 0 auto; }

/* 4 cartes empilées verticalement, chacune en pleine largeur */
.wf-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 72px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.wf-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 28px;
    padding: 32px 36px;
    background: var(--white);
    border: 1px solid var(--bleu-pale);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-card);
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast);
}
.wf-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-card-hover);
    border-color: rgba(6, 182, 212, 0.3);
}
.wf-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: -0.04em;
    line-height: 1;
    padding-top: 4px;
    font-variant-numeric: tabular-nums;
}
.wf-fear {
    font-size: var(--text-body);
    color: rgba(19,39,96,0.55);
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.5;
}
.wf-promise {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.025em;
}
.wf-item p {
    font-size: var(--text-body);
    color: rgba(19,39,96,0.68);
    line-height: 1.65;
    max-width: 560px;
}

/* Fit check — format éditorial épuré (pas de card lourde) */
.wf-fit {
    max-width: 880px;
    margin: 0 auto;
    padding: 56px 0 0;
    border-top: 1px solid var(--bleu-pale);
}
.wf-fit-head {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 12px;
    text-align: center;
}
.wf-fit-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 40px;
    letter-spacing: -0.025em;
    text-align: center;
    line-height: 1.15;
}
.wf-fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.wf-fit-col-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bleu-pale);
}
.wf-fit-icon {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0;
    font-weight: 700;
}
.wf-fit-icon--yes { background: rgba(34, 197, 94, 0.15); color: #16A34A; border: 1px solid rgba(34, 197, 94, 0.4); }
.wf-fit-icon--no { background: rgba(19, 39, 96, 0.06); color: rgba(19, 39, 96, 0.45); border: 1px solid rgba(19, 39, 96, 0.15); }
.wf-fit-col-label { font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }

.wf-fit-list { display: flex; flex-direction: column; gap: 14px; }
.wf-fit-list li { font-size: 15px; line-height: 1.6; color: rgba(19, 39, 96, 0.8); padding-left: 20px; position: relative; }
.wf-fit-list li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: #16A34A; }
.wf-fit-list--no li { color: rgba(19, 39, 96, 0.48); }
.wf-fit-list--no li::before { background: transparent; border: 1.5px solid rgba(19, 39, 96, 0.3); }

.wf-cta {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}
.wf-cta-note { font-size: 14px; color: rgba(19, 39, 96, 0.55); }

@media (max-width: 860px) {
    .wf-item { grid-template-columns: 48px 1fr; gap: 18px; padding: 24px 22px; }
    .wf-num { font-size: 28px; }
    .wf-promise { font-size: 19px; }
    .wf-fit { padding: 32px 24px; }
    .wf-fit-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ══════════ PROCESS (fond foncé premium) ══════════ */
.section-process {
    background: var(--navy);
    color: var(--white);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}
.section-process::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent 70%);
    pointer-events: none;
}
.pr-head {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.pr-head h2 { color: var(--white); margin-bottom: 18px; }
.pr-head p { font-size: var(--text-lead); color: rgba(255, 255, 255, 0.7); line-height: 1.65; max-width: 620px; margin: 0 auto; }

.pr-timeline {
    display: flex;
    flex-direction: column;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.pr-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.6), rgba(6, 182, 212, 0.15));
}
.pr-step {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 28px;
    padding: 32px 0;
    position: relative;
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.pr-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.pr-step.is-visible:nth-child(2) { transition-delay: 0.08s; }
.pr-step.is-visible:nth-child(3) { transition-delay: 0.16s; }
.pr-step.is-visible:nth-child(4) { transition-delay: 0.24s; }
.pr-step.is-visible:nth-child(5) { transition-delay: 0.32s; }
.pr-step:not(:last-child) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.pr-circle {
    width: 62px; height: 62px;
    background: var(--navy);
    border: 2px solid rgba(6, 182, 212, 0.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: var(--orange);
    z-index: 2; position: relative;
    box-shadow: 0 0 0 6px rgba(19, 39, 96, 1);
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.pr-step:hover .pr-circle {
    transform: scale(1.06);
    box-shadow: 0 0 0 6px rgba(19, 39, 96, 1), 0 0 20px rgba(6, 182, 212, 0.4);
}
.pr-circle--final {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--navy);
}
.pr-week {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 8px;
    opacity: 0.9;
}
.pr-content h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1.15;
    color: var(--white);
}
.pr-gain {
    font-size: var(--text-lead);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 10px;
}
.pr-detail {
    font-size: var(--text-body);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 620px;
}

.pr-bonus {
    margin: var(--xl) auto 0;
    max-width: 880px;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(6, 182, 212, 0.04));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--r-lg);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.pr-bonus-icon {
    width: 56px; height: 56px;
    background: var(--orange);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4);
}
.pr-bonus-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 4px;
}
.pr-bonus-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.pr-bonus-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
}

.pr-cta {
    margin-top: var(--lg);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.pr-cta-note { font-size: 14px; color: rgba(255, 255, 255, 0.55); }

@media (max-width: 700px) { .pr-bonus { grid-template-columns: 1fr; padding: 24px; } }

/* ══════════ NABILE (fond clair) ══════════ */
.section-about { background: var(--blanc-casse); color: var(--navy); padding: var(--section-py) 0; }
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: center; max-width: 980px; margin: 0 auto; }

.about-id {
    background: var(--white);
    border: 1px solid var(--bleu-pale);
    border-radius: var(--r-lg);
    padding: 36px 28px 28px;
    position: relative; overflow: hidden;
    box-shadow: var(--sh-card);
}
.about-id::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #FFBF5C, var(--orange));
}
.about-id::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 70%);
    pointer-events: none;
}

.id-mono {
    font-size: 96px; font-weight: 700;
    letter-spacing: -0.08em; line-height: 1;
    background: linear-gradient(135deg, var(--orange), #E08F00);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.id-signature { font-size: 24px; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.id-role {
    font-size: 13px;
    color: rgba(19, 39, 96, 0.55);
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--bleu-pale);
}

.id-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 22px; }
.id-stat-num { font-size: 22px; font-weight: 700; color: var(--orange); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.id-stat-label { font-size: 11px; color: rgba(19, 39, 96, 0.5); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

.id-socials { display: flex; gap: 10px; padding-top: 18px; border-top: 1px solid var(--bleu-pale); flex-wrap: wrap; }
.id-social {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: var(--blanc-casse);
    border: 1px solid var(--bleu-pale);
    border-radius: var(--r-full);
    font-size: 12px;
    color: var(--navy);
    font-weight: 600;
    transition: background var(--dur-fast), border-color var(--dur-fast);
}
.id-social:hover { background: rgba(6, 182, 212, 0.08); border-color: rgba(6, 182, 212, 0.4); }

.about-content h2 { color: var(--navy); margin-bottom: 22px; }
.about-content p {
    font-size: var(--text-body);
    color: rgba(19, 39, 96, 0.7);
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 540px;
}
.about-content p strong { color: var(--navy); font-weight: 700; }
.about-content .btn-primary { margin-top: 10px; }

@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 36px; max-width: 500px; } }

/* ══════════ PORTFOLIO ══════════ */
/* ─────────────────────  Portfolio base : layout consolidé en fin de fichier  ───────────────────── */
.section-portfolio { background: var(--white); padding: var(--section-py) 0; }

/* ══════════ COMPARATIF ══════════ */
.section-compare { background: var(--grad); color: var(--white); padding: var(--section-py) 0; position: relative; overflow: hidden; }
.cmp-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.cmp-head h2 { color: var(--white); margin-bottom: 14px; }
.cmp-head p { font-size: var(--text-lead); color: rgba(255,255,255,0.75); line-height: 1.6; }

.cmp-grid { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 20px; align-items: stretch; max-width: 1080px; margin: 0 auto; }

.cmp-col {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--r-lg); padding: 32px 28px;
    display: flex; flex-direction: column; position: relative;
    transition: transform var(--dur-fast);
}
.cmp-col--zuhd {
    background: var(--white); border: 2px solid var(--orange);
    box-shadow: 0 8px 32px rgba(19, 39, 96, 0.24), 0 4px 16px rgba(6, 182, 212, 0.25);
    transform: translateY(-8px);
    padding-top: 42px;
}

.cmp-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--orange); color: var(--navy);
    padding: 7px 18px; border-radius: var(--r-full);
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    box-shadow: var(--sh-cta);
    white-space: nowrap;
}

.cmp-col-header { margin-bottom: var(--md); padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.cmp-col--zuhd .cmp-col-header { border-bottom-color: var(--bleu-pale); }
.cmp-col-name { font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.cmp-col--zuhd .cmp-col-name { color: var(--navy); }

.cmp-list { margin: 0 0 20px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.cmp-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; line-height: 1.5; }
.cmp-item i { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 1px; }
.cmp-item--bad { color: rgba(255,255,255,0.72); }
.cmp-item--bad i { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.6); }
.cmp-item--good { color: var(--navy); }
.cmp-item--good i { background: rgba(6,182,212,0.15); color: var(--orange); }

.cmp-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--orange); color: var(--navy);
    padding: 14px 24px; border-radius: var(--r-md);
    font-weight: 700; font-size: 15px; width: 100%;
    box-shadow: var(--sh-cta); transition: opacity var(--dur-fast);
}
.cmp-cta:hover { opacity: 0.9; }

.cmp-micro { text-align: center; margin-top: var(--lg); font-size: 15px; color: rgba(255,255,255,0.85); }
.cmp-micro a { color: var(--orange); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 900px) {
    .cmp-grid { grid-template-columns: 1fr; }
    .cmp-col--zuhd { transform: none; }
}

/* ══════════ OFFRE ══════════ */
.section-services { background: var(--blanc-casse); padding: var(--section-py) 0; }
.off-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.off-head h2 { margin-bottom: 14px; }
.off-head p { font-size: var(--text-lead); color: rgba(19,39,96,0.65); line-height: 1.6; }

.off-main {
    background: var(--white); border: 1px solid var(--bleu-pale);
    border-radius: var(--r-lg); padding: 52px 48px 44px;
    max-width: 560px; margin: 0 auto 24px;
    box-shadow: 0 12px 40px rgba(19, 39, 96, 0.08), 0 2px 8px rgba(19, 39, 96, 0.04);
    position: relative;
}
.off-main::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), #FFBF5C, var(--orange)); border-radius: var(--r-lg) var(--r-lg) 0 0; }

.off-main-header { margin-bottom: 28px; }
.off-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.16em; color: var(--acier); margin-bottom: 14px;
}
.off-label::before { content: ''; width: 20px; height: 1.5px; background: var(--acier); }
.off-name { font-size: 38px; font-weight: 700; letter-spacing: -0.035em; color: var(--navy); line-height: 1.02; margin-bottom: 14px; }
.off-pitch { font-size: 15.5px; color: var(--acier); line-height: 1.6; }

.off-price-block { padding: 28px 0; margin: 28px 0; border-top: 1px solid var(--bleu-pale); border-bottom: 1px solid var(--bleu-pale); display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.off-price { font-size: 54px; font-weight: 700; letter-spacing: -0.045em; color: var(--navy); line-height: 1; font-variant-numeric: tabular-nums; }
.off-price-unit { font-size: 14px; color: var(--acier); font-weight: 500; }
.off-price-detail { width: 100%; font-size: 13.5px; color: var(--acier); margin-top: 12px; display: flex; align-items: center; gap: 8px; }
.off-price-detail i { color: var(--orange); font-size: 11px; }
.off-price-detail strong { color: var(--navy); font-weight: 600; }

.off-includes-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--acier); margin-bottom: 22px; display: flex; align-items: center; gap: 8px; }
.off-includes-label::before { content: ''; width: 20px; height: 1.5px; background: var(--acier); }

.off-list { margin: 0 0 36px; display: flex; flex-direction: column; gap: 16px; }
.off-list li { display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start; }
.off-check { color: var(--orange); font-size: 11px; margin-top: 5px; width: 22px; height: 22px; background: rgba(6,182,212,0.10); border: 1px solid rgba(6,182,212,0.22); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; }
.off-list li strong { display: block; font-size: 14.5px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 2px; }
.off-list li > div > span { display: block; font-size: 13px; color: var(--acier); line-height: 1.5; }

.off-main-cta { width: 100%; }

.off-property-note { font-size: 13px; color: var(--acier); font-style: italic; margin: 0 0 22px; padding: 14px 16px; background: rgba(19,39,96,0.04); border-left: 3px solid var(--orange); border-radius: 0 8px 8px 0; line-height: 1.55; }

.off-trust { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--bleu-pale); flex-wrap: wrap; }
.off-trust-item { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--acier); font-weight: 500; }
.off-trust-item i { color: var(--orange); font-size: 11px; }

/* MVP Care — bloc premium avec icône, badge, séparation nette */
.addon {
    background: var(--white);
    border: 1px solid var(--bleu-pale);
    border-radius: var(--r-lg);
    padding: 36px 40px;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    align-items: start;
    box-shadow: var(--sh-card);
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.addon:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-card-hover);
}
.addon-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(19, 39, 96, 0.08), rgba(19, 39, 96, 0.03));
    border: 1px solid var(--bleu-pale);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    font-size: 22px;
    flex-shrink: 0;
}
.addon-body { min-width: 0; }
.addon-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.addon-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(19, 39, 96, 0.5);
    margin-bottom: 6px;
}
.addon-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}
.addon-price-top {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.025em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.addon-price-top span { font-size: 14px; font-weight: 500; color: rgba(19, 39, 96, 0.55); }

.addon-list {
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--bleu-pale);
    border-bottom: 1px solid var(--bleu-pale);
}
.addon-list li {
    font-size: 14px;
    color: rgba(19, 39, 96, 0.78);
    line-height: 1.55;
    padding-left: 22px;
    position: relative;
}
.addon-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 1.5px;
    background: var(--orange);
}

.addon-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.addon-price-sub {
    font-size: 12px;
    color: rgba(19, 39, 96, 0.55);
}
.addon-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent;
    color: var(--navy);
    padding: 10px 18px;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 13.5px;
    border: 1.5px solid var(--navy);
    transition: background var(--dur-fast), color var(--dur-fast);
}
.addon-cta:hover { background: var(--navy); color: var(--white); }

@media (max-width: 520px) {
    .addon { grid-template-columns: 1fr; padding: 28px; }
    .addon-icon { width: 48px; height: 48px; }
}

/* ══════════ FAQ (accordéon, header centré) ══════════ */
.section-faq { background: var(--white); color: var(--navy); padding: var(--section-py) 0; }
.faq-head {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}
.faq-head h2 { color: var(--navy); margin-bottom: 14px; }
.faq-head p {
    font-size: var(--text-lead);
    color: rgba(19, 39, 96, 0.65);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--blanc-casse);
    border: 1px solid var(--bleu-pale);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.faq-item:hover { border-color: rgba(6, 182, 212, 0.4); box-shadow: var(--sh-card); }
.faq-item.active {
    background: var(--white);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: var(--sh-card);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--navy);
    line-height: 1.45;
    text-align: left;
    background: transparent;
    border: none;
}
.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 12px;
    transition: transform var(--dur-med) var(--ease);
}
.faq-item.active .faq-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--navy);
    transform: rotate(45deg);
}
.faq-a {
    padding: 0 28px;
    font-size: var(--text-body);
    color: rgba(19, 39, 96, 0.75);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur-med) var(--ease), padding var(--dur-med) var(--ease);
}
.faq-item.active .faq-a { padding: 0 28px 22px; max-height: 400px; }
.faq-a p { margin: 0; }
.faq-a strong { color: var(--navy); font-weight: 700; }

.faq-more {
    max-width: 780px; margin: 40px auto 0;
    padding: 24px 28px;
    background: var(--blanc-casse);
    border: 1px solid var(--bleu-pale);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}
.faq-more-text { font-size: 14.5px; color: rgba(19, 39, 96, 0.72); line-height: 1.5; }
.faq-more-text strong { color: var(--navy); font-weight: 700; }
/* btn-ghost-dark utilisé ici mais sur fond clair, on le remplace par ghost-light via override */
.section-faq .btn-ghost-dark {
    color: var(--navy);
    border-color: rgba(19, 39, 96, 0.2);
    background: transparent;
}
.section-faq .btn-ghost-dark:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ══════════ CTA FINAL + CONTACT ══════════ */
.section-cta { background: var(--blanc-casse); color: var(--navy); padding: var(--section-py) 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; max-width: 1080px; margin: 0 auto; }

.cta-left h2 { color: var(--navy); margin-bottom: 20px; }
.cta-pitch { font-size: var(--text-lead); color: rgba(19, 39, 96, 0.7); line-height: 1.65; margin-bottom: 32px; max-width: 440px; }

.cta-reasons { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; padding: var(--md) 0; border-top: 1px solid var(--bleu-pale); border-bottom: 1px solid var(--bleu-pale); }
.cta-reason { display: flex; align-items: center; gap: 14px; font-size: var(--text-body); color: rgba(19, 39, 96, 0.8); line-height: 1.5; }
.cta-reason-icon { width: 32px; height: 32px; background: rgba(6, 182, 212, 0.12); border: 1px solid rgba(6, 182, 212, 0.3); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 13px; flex-shrink: 0; }
.cta-reason strong { color: var(--navy); font-weight: 700; }

.cta-alt-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(19, 39, 96, 0.55); margin-bottom: 12px; }
.cta-alt-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white); color: var(--navy);
    padding: 14px 22px; border-radius: var(--r-md);
    border: 1px solid var(--bleu-pale);
    font-size: var(--text-body); font-weight: 600;
    transition: background var(--dur-fast), border-color var(--dur-fast);
}
.cta-alt-btn:hover { background: var(--blanc-casse); border-color: var(--orange); }
.cta-alt-btn i:first-child { color: var(--orange); }
.cta-alt-btn i:last-child { font-size: 11px; }

.cta-form-card { background: var(--white); border: 1px solid var(--bleu-pale); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--sh-card); color: var(--navy); }
.cta-form-head { margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--bleu-pale); }
.cta-form-title { font-size: 22px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 8px; line-height: 1.2; color: var(--navy); }
.cta-form-sub { font-size: 14px; color: var(--acier); line-height: 1.55; }

.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.cta-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cta-form-row .cta-form-group { margin-bottom: 0; }
.cta-form-group label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--acier); }
.cta-form-group input, .cta-form-group textarea {
    padding: 12px 14px; border: 1px solid var(--bleu-pale); border-radius: var(--r-md);
    font-size: 15px; color: var(--navy); background: var(--blanc-casse);
    transition: border-color var(--dur-fast), background var(--dur-fast);
}
.cta-form-group input:focus, .cta-form-group textarea:focus { outline: none; border-color: var(--orange); background: var(--white); }
.cta-form-group textarea { resize: vertical; min-height: 100px; }

.cta-offers { display: flex; gap: 8px; flex-wrap: wrap; }
.cta-offers input[type="radio"] { display: none; }
.cta-offer-pill {
    flex: 1; min-width: 120px; padding: 12px 14px;
    border: 1.5px solid var(--bleu-pale); border-radius: var(--r-md);
    font-size: 13.5px; font-weight: 600; color: var(--navy);
    background: var(--blanc-casse); cursor: pointer; text-align: center;
    transition: all var(--dur-fast) var(--ease);
}
.cta-offer-pill:hover { border-color: var(--acier); }
.cta-offers input[type="radio"]:checked + .cta-offer-pill { border-color: var(--orange); background: rgba(6,182,212,0.08); }

.cta-submit { width: 100%; }

.cta-form-note { font-size: 12px; color: var(--acier); text-align: center; margin-top: 14px; line-height: 1.5; }
.cta-form-note i { color: var(--orange); }

.cf-success { text-align: center; padding: 40px; background: var(--white); border-radius: var(--r-lg); color: var(--navy); }
.cf-success[data-show="true"] { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cfs-icon i { font-size: 48px; color: var(--green); }
.cf-success h3 { color: var(--navy); }
.cf-success p { color: var(--acier); line-height: 1.6; max-width: 400px; }

@media (max-width: 900px) { .cta-grid { grid-template-columns: 1fr; gap: 40px; } .cta-form-row { grid-template-columns: 1fr; } }

/* ══════════ FOOTER ══════════ */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--lg); margin-bottom: var(--lg); }
.footer-logo { display: inline-flex; align-items: baseline; gap: 2px; font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: -0.03em; margin-bottom: 16px; }
.footer-logo-dot { color: var(--orange); font-size: 32px; line-height: 0; }
.footer-pitch { font-size: 13.5px; line-height: 1.6; margin-bottom: 20px; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); font-size: 14px; transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast); }
.footer-social:hover { background: rgba(6,182,212,0.12); border-color: rgba(6,182,212,0.4); color: var(--orange); }

.footer-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.75); transition: color var(--dur-fast); }
.footer-links a:hover { color: var(--orange); }

.footer-contact { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 10px; transition: color var(--dur-fast); }
.footer-contact:hover { color: var(--orange); }
.footer-contact i { color: var(--orange); font-size: 12px; width: 16px; }

.footer-mini-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(6,182,212,0.12); color: var(--orange);
    border: 1px solid rgba(6,182,212,0.3);
    padding: 10px 16px; border-radius: var(--r-md);
    font-size: 13px; font-weight: 600; margin-top: 12px;
    transition: background var(--dur-fast);
}
.footer-mini-cta:hover { background: rgba(6,182,212,0.2); }

.footer-bottom { padding-top: var(--md); border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.55); transition: color var(--dur-fast); }
.footer-legal a:hover { color: var(--orange); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ══════════ STICKY MOBILE CTA ══════════ */
.sticky-mobile-cta {
    position: fixed; left: var(--sm); right: var(--sm); bottom: var(--sm);
    z-index: 90;
    opacity: 0; pointer-events: none; transform: translateY(100%);
    transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
.sticky-mobile-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sticky-cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: var(--orange); color: var(--navy);
    padding: 14px 24px; border-radius: var(--r-md);
    font-weight: 700; font-size: 15px; width: 100%;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}
@media (min-width: 860px) { .sticky-mobile-cta { display: none; } }

/* ══════════ ANIMATIONS PREMIUM ══════════ */

/* Reveal variantes */
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

/* Stagger pour les listes et grilles */
.stagger > * { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

/* Float subtil pour éléments emblématiques (badge hero, icons clés) */
@keyframes floatSubtle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.float-subtle { animation: floatSubtle 4s ease-in-out infinite; }

/* Hero badge : léger float (signal vivant subtil) */
.hero-badge { animation: floatSubtle 4s ease-in-out infinite; }

/* Section headers : reveal plus marqué */
.wf-head, .pr-head, .pf-head, .cmp-head, .off-head, .faq-head {
    transform: translateY(0);
}

/* Hover premium sur cards cliquables */
.pf-card, .wf-item, .cmp-col, .addon {
    will-change: transform;
}

/* Respect du prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-scale, .stagger > * {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   BLOG — Index + Articles
   Même design system : DM Sans, palette navy/acier/orange
══════════════════════════════════════════════════════════════ */

/* Page index blog */
.blog-hero {
    background: var(--grad);
    color: var(--white);
    padding: 140px var(--md) var(--xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blog-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.blog-hero .section-tag {
    background: rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.35);
}
.blog-hero h1 {
    color: var(--white);
    margin-bottom: 18px;
}
.blog-hero > .blog-hero-inner > p {
    font-size: var(--text-lead);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto;
}

.section-articles {
    background: var(--blanc-casse);
    padding: var(--section-py) 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--md);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--md);
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--bleu-pale);
    border-radius: var(--r-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast);
    box-shadow: var(--sh-card);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-card-hover);
    border-color: rgba(6, 182, 212, 0.4);
}
.blog-card-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--orange);
}
.blog-card h2 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
}
.blog-card p {
    font-size: var(--text-body);
    color: rgba(19, 39, 96, 0.68);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--bleu-pale);
}
.blog-card-read {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
}
.blog-card-date {
    font-size: 12px;
    color: rgba(19, 39, 96, 0.45);
}

.blog-cta-section {
    background: var(--grad);
    padding: var(--section-py) var(--md);
    text-align: center;
    color: var(--white);
}
.blog-cta-section h2 {
    color: var(--white);
    margin-bottom: 14px;
}
.blog-cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-lead);
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ━━━━━━━━ PAGE ARTICLE ━━━━━━━━ */
.article-hero {
    background: var(--navy);
    color: var(--white);
    padding: 140px var(--md) 56px;
    position: relative;
    overflow: hidden;
}
.article-hero::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 70%);
    pointer-events: none;
}
.article-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 var(--md);
    position: relative;
    z-index: 1;
}
.article-breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}
.article-breadcrumb a {
    color: var(--orange);
    transition: color var(--dur-fast);
}
.article-breadcrumb a:hover { color: #FFBF5C; }
.article-hero .article-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.35);
    padding: 6px 14px;
    border-radius: var(--r-full);
    margin-bottom: 20px;
}
.article-hero h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.035em;
    margin: 0 0 24px;
}
.article-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}
.article-meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.article-meta-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #FFBF5C);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: -0.02em;
}
.article-meta-name strong { color: var(--white); font-weight: 700; }
.article-meta-dot { color: rgba(255, 255, 255, 0.3); }

.article-body {
    background: var(--white);
    padding: var(--section-py) 0;
}
.article-body .article-container p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(19, 39, 96, 0.82);
    margin: 0 0 24px;
}
.article-body .article-container p strong {
    color: var(--navy);
    font-weight: 700;
}
.article-body .article-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin: 48px 0 18px;
    line-height: 1.2;
}
.article-body .article-container h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 32px 0 12px;
    line-height: 1.3;
}
.article-body .article-container ul,
.article-body .article-container ol {
    margin: 0 0 24px;
    padding-left: 24px;
}
.article-body .article-container li {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(19, 39, 96, 0.82);
    margin-bottom: 8px;
}
.article-body .article-container a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    transition: color var(--dur-fast);
}
.article-body .article-container a:hover { color: #E08F00; }

/* Callout premium */
.article-callout {
    background: rgba(6, 182, 212, 0.06);
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    padding: 24px 28px;
    margin: 32px 0;
    font-size: 16px;
    color: var(--navy);
    line-height: 1.7;
}
.article-callout strong { color: var(--orange); font-weight: 700; }

/* Table des matières */
.article-toc {
    background: var(--blanc-casse);
    border: 1px solid var(--bleu-pale);
    border-radius: var(--r-md);
    padding: 24px 28px;
    margin: 0 0 40px;
}
.article-toc-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--orange);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.article-toc-label::before {
    content: '';
    width: 18px;
    height: 1.5px;
    background: var(--orange);
}
.article-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}
.article-toc ol li {
    counter-increment: toc;
    margin-bottom: 10px;
    padding-left: 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}
.article-toc ol li::before {
    content: counter(toc, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(6, 182, 212, 0.7);
    font-weight: 700;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}
.article-toc ol li a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--dur-fast);
}
.article-toc ol li a:hover { color: var(--orange); }

/* CTA article */
.article-cta-box {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    margin: 56px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.article-cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #FFBF5C, var(--orange));
}
.article-cta-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.article-cta-box p {
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 0 24px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}
.article-body .article-container a.btn-primary,
.article-cta-box a.btn-primary {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
}
.article-body .article-container a.btn-primary:hover,
.article-cta-box a.btn-primary:hover {
    color: var(--navy);
}

/* Liens internes en bas d'article */
.article-related {
    background: var(--blanc-casse);
    padding: var(--section-py) 0;
    border-top: 1px solid var(--bleu-pale);
}
.article-related h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 28px;
    letter-spacing: -0.02em;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.related-card {
    background: var(--white);
    border: 1px solid var(--bleu-pale);
    border-radius: var(--r-md);
    padding: 24px;
    text-decoration: none;
    transition: transform var(--dur-fast), box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-card);
    border-color: rgba(6, 182, 212, 0.4);
}
.related-card span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--orange);
}
.related-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 10px 0 0;
    line-height: 1.4;
    letter-spacing: -0.015em;
}

@media (max-width: 700px) {
    .blog-grid { grid-template-columns: 1fr; padding: 0 var(--md); }
    .article-hero { padding: 110px var(--md) 40px; }
    .article-body .article-container p { font-size: 16px; }
    .article-body .article-container h2 { font-size: 24px; margin: 40px 0 16px; }
    .article-cta-box { padding: 32px 24px; }
}

/* ════════════════════════════════════════════════════════════════════
   VISUAL REFRESH 2026-05-18 — Inspiration cosmic UI
   Glows, orbes, sparkles sur sections dark + boutons rayonnants.
   Palette : navy #132760 + orange #06B6D4 préservés.
   Toutes les couches utilisent des pseudo-éléments en z-index < 1
   pour ne pas interférer avec le contenu cliquable.
   ════════════════════════════════════════════════════════════════════ */

/* ─────────────────────  HERO : orbe + glow + sparkles  ───────────────────── */
.hero { isolation: isolate; }

/* Orbe principale orange/navy : grande respiration radiale derrière le H1 */
.hero::before {
    content: '';
    position: absolute;
    top: 18%;
    left: 50%;
    width: 880px;
    height: 880px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 50% 40%, rgba(6, 182, 212, 0.22) 0%, rgba(6, 182, 212, 0.08) 25%, transparent 55%),
        radial-gradient(circle at 50% 60%, rgba(103, 157, 209, 0.30) 0%, transparent 60%);
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
    animation: heroOrbeBreathe 9s ease-in-out infinite;
}

/* Starfield + soft vignette : sparkles autour de l'orbe */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 12% 22%, rgba(255,255,255,0.85), transparent 60%),
        radial-gradient(1.2px 1.2px at 78% 16%, rgba(255,255,255,0.65), transparent 60%),
        radial-gradient(1px 1px at 22% 78%, rgba(255,255,255,0.55), transparent 60%),
        radial-gradient(2px 2px at 88% 64%, rgba(6,182,212,0.6), transparent 60%),
        radial-gradient(1.4px 1.4px at 64% 88%, rgba(255,255,255,0.5), transparent 60%),
        radial-gradient(1px 1px at 42% 10%, rgba(255,255,255,0.6), transparent 60%),
        radial-gradient(1.3px 1.3px at 8% 60%, rgba(103,157,209,0.7), transparent 60%),
        radial-gradient(1.1px 1.1px at 92% 38%, rgba(255,255,255,0.5), transparent 60%),
        radial-gradient(1.8px 1.8px at 35% 45%, rgba(6,182,212,0.45), transparent 60%),
        radial-gradient(0.9px 0.9px at 70% 30%, rgba(255,255,255,0.55), transparent 60%),
        radial-gradient(circle at 50% 110%, rgba(19,39,96,0.55), transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: heroSparklesTwinkle 6s ease-in-out infinite;
}

@keyframes heroOrbeBreathe {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50%      { transform: translateX(-50%) scale(1.08); opacity: 0.85; }
}
@keyframes heroSparklesTwinkle {
    0%, 100% { opacity: 0.85; }
    50%      { opacity: 1; }
}

/* hero-inner doit rester au-dessus des effets */
.hero-inner { position: relative; z-index: 1; }

/* Badge hero : halo orange subtil */
.hero-badge {
    background: rgba(6, 182, 212, 0.10);
    border-color: rgba(6, 182, 212, 0.25);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.08), 0 8px 24px rgba(6, 182, 212, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-badge .badge-dot {
    background: var(--orange);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.8);
    animation: pulseOrange 1.6s infinite;
}
@keyframes pulseOrange {
    0%   { box-shadow: 0 0 0 0 rgba(6,182,212,0.6), 0 0 12px rgba(6,182,212,0.8); }
    70%  { box-shadow: 0 0 0 10px rgba(6,182,212,0), 0 0 12px rgba(6,182,212,0.8); }
    100% { box-shadow: 0 0 0 0 rgba(6,182,212,0), 0 0 12px rgba(6,182,212,0.8); }
}

/* H1 accent : léger glow textuel orange */
.hero-h1 .text-accent {
    text-shadow: 0 0 28px rgba(6, 182, 212, 0.35), 0 0 56px rgba(6, 182, 212, 0.18);
}

/* ─────────────────────  SECTION PROCESS : 2e orbe + intensification  ───────────────────── */
.section-process::before {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.14) 0%, rgba(6, 182, 212, 0.04) 40%, transparent 70%);
    filter: blur(8px);
}
.section-process::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(103, 157, 209, 0.18) 0%, transparent 65%);
    filter: blur(12px);
    pointer-events: none;
    z-index: 0;
    animation: heroOrbeBreathe 11s ease-in-out infinite reverse;
}
.section-process .container { position: relative; z-index: 1; }

/* ─────────────────────  SECTION COMPARATIF : orbe d'ambiance  ───────────────────── */
.section-compare::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0.04) 35%, transparent 65%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
    animation: heroOrbeBreathe 13s ease-in-out infinite;
}
.section-compare::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -8%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(103, 157, 209, 0.25) 0%, transparent 60%);
    filter: blur(16px);
    pointer-events: none;
    z-index: 0;
    animation: heroOrbeBreathe 15s ease-in-out infinite reverse;
}
.section-compare .container { position: relative; z-index: 1; }

/* Cmp card Zuhd : glow accentué sur la colonne pivot */
.cmp-col--zuhd {
    box-shadow: 0 24px 72px rgba(6,182,212,0.18), 0 0 0 1px rgba(6,182,212,0.15);
}

/* ─────────────────────  BOUTONS PRIMARY : glow rayonnant  ───────────────────── */
.btn-primary {
    box-shadow: 0 0 0 0 rgba(6,182,212,0.35), 0 6px 18px rgba(6,182,212,0.22);
    transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.btn-primary:hover {
    box-shadow: 0 0 0 6px rgba(6,182,212,0.18), 0 14px 36px rgba(6,182,212,0.50);
}

.btn-nav {
    box-shadow: 0 4px 14px rgba(6,182,212,0.28);
}
.btn-nav:hover {
    box-shadow: 0 0 0 4px rgba(6,182,212,0.18), 0 10px 28px rgba(6,182,212,0.50);
}

/* Sticky mobile CTA : même glow */
.sticky-cta-btn {
    box-shadow: 0 -2px 12px rgba(6,182,212,0.25), 0 8px 24px rgba(6,182,212,0.35);
}

/* ─────────────────────  SECTION TAG : micro-accent  ───────────────────── */
.section-tag {
    position: relative;
}

/* ─────────────────────  REDUCED MOTION : respect des préférences  ───────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .section-process::after,
    .section-compare::before,
    .section-compare::after,
    .hero-badge .badge-dot {
        animation: none !important;
    }
}

/* ─────────────────────  MOBILE : alléger les effets lourds  ───────────────────── */
@media (max-width: 600px) {
    .hero::before {
        width: 580px;
        height: 580px;
        filter: blur(14px);
    }
    .section-process::after,
    .section-compare::before,
    .section-compare::after {
        width: 320px;
        height: 320px;
        filter: blur(10px);
    }
}

/* ════════════════════════════════════════════════════════════════════════
   COSMIC REDESIGN 2026-05-18 — Refonte visuelle complète
   Inspiration : Sisyphus / Vercel / Linear cosmic UI
   CTA : cyan #06B6D4 / Tout le site en dark navy cohérent
   Overrides ciblés en bas du fichier, le legacy reste intact.
   ════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────  BASE DARK GLOBAL  ───────────────────── */
body { background: var(--navy-deep); color: var(--white); }

/* Sections claires legacy basculent en dark cosmic */
.section-why,
.stats-bar,
.section-about,
.section-portfolio,
.section-services,
.section-faq,
.section-cta {
    background: var(--navy-deep) !important;
    color: var(--white) !important;
    position: relative;
    overflow: hidden;
}

/* Tous les h2 sur sections dark deviennent blancs */
.section-why h2, .section-why h3,
.stats-bar h2,
.section-about h2,
.section-portfolio h2, .section-portfolio h3,
.section-services h2,
.section-faq h2,
.section-cta h2 {
    color: var(--white);
}

/* Section tags : devenir cyan + glass */
.section-tag {
    background: rgba(6, 182, 212, 0.10);
    color: var(--cyan-soft);
    border: 1px solid rgba(6, 182, 212, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 24px rgba(6, 182, 212, 0.10);
    font-weight: 600;
    letter-spacing: 0.12em;
}

/* Headings text-accent : glow cyan plus marqué */
.text-accent {
    color: var(--cyan);
    text-shadow: 0 0 32px rgba(6, 182, 212, 0.45), 0 0 64px rgba(6, 182, 212, 0.20);
}

/* ─────────────────────  NAVBAR : transparent glass  ───────────────────── */
.navbar {
    background: rgba(10, 23, 54, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.navbar.scrolled {
    background: rgba(10, 23, 54, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.navbar .logo,
.navbar .logo-dot {
    color: var(--white);
}
.navbar .logo-dot { color: var(--cyan); text-shadow: 0 0 12px rgba(6,182,212,0.6); }
.navbar .nav-links a { color: rgba(255, 255, 255, 0.75); }
.navbar .nav-links a:hover,
.navbar .nav-links a.active { color: var(--cyan-bright); }

/* CTA navbar : cyan glow */
.btn-nav {
    background: var(--cyan) !important;
    color: var(--navy-deep) !important;
    font-weight: 700;
    box-shadow: 0 0 0 1px rgba(6,182,212,0.4), 0 8px 24px rgba(6, 182, 212, 0.35);
}
.btn-nav:hover {
    background: var(--cyan-bright) !important;
    box-shadow: 0 0 0 4px rgba(6,182,212,0.22), 0 12px 36px rgba(6, 182, 212, 0.55);
}

/* Burger menu icon */
.nav-burger span { background: var(--white); }

/* ─────────────────────  HERO : grand spectacle cosmic  ───────────────────── */
.hero {
    background: radial-gradient(ellipse at 50% 30%, #1A2B5C 0%, var(--navy-deep) 60%, #050914 100%) !important;
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 80px;
}

/* Orbe principale cyan énorme */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    width: 1200px;
    height: 1200px;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 50% 35%, rgba(6, 182, 212, 0.45) 0%, rgba(6, 182, 212, 0.18) 22%, transparent 50%),
        radial-gradient(circle at 50% 55%, rgba(34, 211, 238, 0.30) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(103, 232, 249, 0.15) 0%, transparent 65%);
    filter: blur(0px);
    z-index: 0;
    pointer-events: none;
    animation: heroOrbeBreathe 9s ease-in-out infinite;
}

/* Anneau orbital subtil */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1400px;
    height: 1400px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, 0.08);
    box-shadow:
        inset 0 0 120px rgba(6,182,212,0.06),
        0 0 80px rgba(6,182,212,0.04);
    background: none;
    z-index: 0;
    pointer-events: none;
    animation: orbitRotate 60s linear infinite;
}
@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero inner = relative position pour passer au-dessus */
.hero-inner { position: relative; z-index: 2; text-align: center; margin: 0 auto; }

/* Hero badge : glass cyan élégant */
.hero-badge {
    background: rgba(6, 182, 212, 0.10) !important;
    border: 1px solid rgba(6, 182, 212, 0.30) !important;
    color: var(--cyan-soft) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 32px rgba(6, 182, 212, 0.18), 0 8px 24px rgba(0,0,0,0.3);
    font-weight: 600;
}
.hero-badge .badge-dot {
    background: var(--cyan-bright) !important;
    box-shadow: 0 0 16px var(--cyan-bright);
    animation: pulseCyan 1.8s infinite;
}
@keyframes pulseCyan {
    0%   { box-shadow: 0 0 0 0 rgba(34,211,238,0.7), 0 0 16px var(--cyan-bright); }
    70%  { box-shadow: 0 0 0 12px rgba(34,211,238,0), 0 0 16px var(--cyan-bright); }
    100% { box-shadow: 0 0 0 0 rgba(34,211,238,0), 0 0 16px var(--cyan-bright); }
}

/* H1 : énorme, dynamique */
.hero-h1 {
    font-size: clamp(38px, 6.5vw, 76px) !important;
    font-weight: 800 !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
    color: var(--white) !important;
    max-width: 1000px !important;
    margin: 24px auto 28px !important;
}
.hero-h1 .text-accent {
    background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    position: relative;
}

/* Hero sub */
.hero-sub {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: clamp(16px, 1.7vw, 20px) !important;
    max-width: 720px !important;
    margin: 0 auto var(--lg) !important;
    line-height: 1.55;
}

/* Hero actions centrées */
.hero-actions {
    justify-content: center !important;
    gap: 16px;
    margin-bottom: 0;
}

/* ─────────────────────  BOUTONS REFONTE COSMIC  ───────────────────── */
.btn-primary {
    background: var(--cyan) !important;
    color: var(--navy-deep) !important;
    font-weight: 700 !important;
    padding: 16px 26px !important;
    border-radius: 12px !important;
    box-shadow:
        0 0 0 1px rgba(6,182,212,0.35),
        0 8px 32px rgba(6, 182, 212, 0.35),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}
.btn-primary:hover {
    background: var(--cyan-bright) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 0 4px rgba(6,182,212,0.22),
        0 16px 48px rgba(6, 182, 212, 0.55),
        inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover::before { left: 100%; }

.btn-ghost-dark {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.btn-ghost-dark:hover {
    background: rgba(6, 182, 212, 0.10) !important;
    border-color: var(--cyan) !important;
    color: var(--cyan-bright) !important;
    transform: translateY(-2px);
}

/* Sticky mobile CTA cyan */
.sticky-mobile-cta { background: rgba(10,23,54,0.95); border-top: 1px solid rgba(6,182,212,0.2); backdrop-filter: blur(20px); }
.sticky-cta-btn {
    background: var(--cyan) !important;
    color: var(--navy-deep) !important;
    box-shadow: 0 0 0 1px rgba(6,182,212,0.4), 0 8px 24px rgba(6,182,212,0.4);
}

/* ─────────────────────  STATS BAR : dark + cyan dividers  ───────────────────── */
.stats-bar {
    background: linear-gradient(180deg, #050914 0%, var(--navy-deep) 100%) !important;
    border-bottom: 1px solid rgba(6, 182, 212, 0.10);
    padding: 80px 0;
}
.stats-grid {
    border: none !important;
    background: none !important;
    gap: 0;
}
.stat-item {
    border: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 20px 24px;
    text-align: center;
    transition: background 0.3s ease;
}
.stat-item:last-child { border-right: none !important; }
.stat-item:hover { background: rgba(6, 182, 212, 0.04); }

.stat-num {
    font-size: clamp(40px, 4.5vw, 56px) !important;
    font-weight: 800 !important;
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--white) 0%, var(--cyan-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 12.5px !important;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

@media (max-width: 700px) {
    .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; padding: 24px 16px; }
    .stat-item:last-child { border-bottom: none !important; }
}

/* ─────────────────────  HEADINGS & SECTION HEADS GLOBAL  ───────────────────── */
.wf-head h2, .pr-head h2, .pf-head h2, .cmp-head h2, .off-head h2, .faq-head h2,
.section-cta h2 {
    color: var(--white) !important;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}
.wf-head p, .pr-head p, .pf-head p, .cmp-head p, .off-head p, .faq-head p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 17px;
    line-height: 1.6;
    max-width: 720px;
    margin: 16px auto 0;
}

/* ─────────────────────  WHY+FIT : bento glass + numéros géants  ───────────────────── */
.section-why {
    padding-top: 120px !important;
}
.section-why::before {
    content: '';
    position: absolute;
    top: 15%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(6,182,212,0.20), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: heroOrbeBreathe 14s ease-in-out infinite;
}
.section-why::after {
    content: '';
    position: absolute;
    bottom: 10%; right: -15%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(103,232,249,0.18), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: heroOrbeBreathe 16s ease-in-out infinite reverse;
}
.section-why .container { position: relative; z-index: 1; }

/* Bento grid */
.wf-grid {
    grid-template-columns: repeat(12, 1fr) !important;
    gap: 20px !important;
}
.wf-item {
    grid-column: span 6;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 20px !important;
    padding: 36px 32px !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.wf-item:nth-child(1) { grid-column: span 7; }
.wf-item:nth-child(2) { grid-column: span 5; }
.wf-item:nth-child(3) { grid-column: span 5; }
.wf-item:nth-child(4) { grid-column: span 7; }

.wf-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(6,182,212,0.10), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.wf-item:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.40) !important;
    background: rgba(6, 182, 212, 0.04) !important;
    box-shadow: 0 24px 60px rgba(6, 182, 212, 0.20);
}
.wf-item:hover::before { opacity: 1; }

.wf-num {
    position: absolute !important;
    top: 16px; right: 24px;
    font-size: 96px !important;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgba(6,182,212,0.20) 0%, rgba(6,182,212,0.04) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    letter-spacing: -0.05em;
}

.wf-fear {
    color: rgba(255, 255, 255, 0.55) !important;
    font-style: italic;
    font-size: 14px !important;
    margin-bottom: 14px !important;
    position: relative; z-index: 1;
}
.wf-promise {
    color: var(--white) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
    position: relative; z-index: 1;
    letter-spacing: -0.02em;
}
.wf-body p {
    color: rgba(255, 255, 255, 0.72) !important;
    line-height: 1.6;
    font-size: 15px;
    position: relative; z-index: 1;
}

@media (max-width: 900px) {
    .wf-grid { grid-template-columns: 1fr !important; }
    .wf-item, .wf-item:nth-child(1), .wf-item:nth-child(2), .wf-item:nth-child(3), .wf-item:nth-child(4) { grid-column: span 1 !important; }
    .wf-num { font-size: 72px !important; }
}

/* Fit check : 2 cols glass */
.wf-fit {
    background: rgba(255,255,255,0.02) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 24px !important;
    padding: 48px 40px !important;
    backdrop-filter: blur(20px);
    margin-top: 64px !important;
}
.wf-fit-head { color: var(--cyan-soft) !important; }
.wf-fit-title { color: var(--white) !important; }
.wf-fit-list li { color: rgba(255,255,255,0.78) !important; }
.wf-fit-icon--yes { background: rgba(6,182,212,0.15) !important; color: var(--cyan-bright) !important; border: 1px solid rgba(6,182,212,0.4); }
.wf-fit-icon--no { background: rgba(239,68,68,0.12) !important; color: #F87171 !important; border: 1px solid rgba(239,68,68,0.3); }

.wf-cta {
    margin-top: 56px;
    text-align: center;
}
.wf-cta-note { color: rgba(255,255,255,0.55) !important; }

/* ─────────────────────  PROCESS : timeline plus visuelle  ───────────────────── */
.section-process {
    background: var(--navy-deep) !important;
    padding-top: 120px !important;
}
.section-process::before {
    background: radial-gradient(circle, rgba(6,182,212,0.18) 0%, transparent 60%) !important;
    filter: blur(20px) !important;
    top: -10% !important; right: -10% !important;
    width: 700px !important; height: 700px !important;
}
.section-process::after {
    background: radial-gradient(circle, rgba(103,232,249,0.16) 0%, transparent 60%) !important;
    width: 560px !important; height: 560px !important;
}

.pr-circle {
    background: var(--navy-deep) !important;
    border: 2px solid rgba(6, 182, 212, 0.4) !important;
    box-shadow: 0 0 0 1px rgba(6,182,212,0.15), 0 0 32px rgba(6, 182, 212, 0.25);
    color: var(--cyan-bright) !important;
    font-weight: 800;
    font-size: 18px !important;
    transition: box-shadow 0.4s ease;
}
.pr-step:hover .pr-circle {
    box-shadow: 0 0 0 4px rgba(6,182,212,0.20), 0 0 56px rgba(6, 182, 212, 0.55);
}
.pr-circle--final { background: var(--cyan) !important; color: var(--navy-deep) !important; border-color: var(--cyan-bright) !important; }

.pr-week { color: var(--cyan-soft) !important; letter-spacing: 0.10em; }
.pr-content h3 { color: var(--white) !important; font-size: 22px; }
.pr-gain { color: rgba(255,255,255,0.85) !important; }
.pr-detail { color: rgba(255,255,255,0.65) !important; }

.pr-bonus {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(6, 182, 212, 0.03)) !important;
    border: 1px solid rgba(6, 182, 212, 0.30) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 0 1px rgba(6,182,212,0.08), 0 16px 48px rgba(6,182,212,0.15);
}
.pr-bonus-icon { background: var(--cyan) !important; color: var(--navy-deep) !important; }
.pr-bonus-label { color: var(--cyan-soft) !important; }
.pr-bonus-title, .pr-bonus-desc { color: var(--white) !important; }
.pr-bonus-desc { color: rgba(255,255,255,0.7) !important; }

.pr-cta { text-align: center; }
.pr-cta-note { color: rgba(255,255,255,0.55) !important; }

/* ─────────────────────  ABOUT (Nabile) : glass identity card  ───────────────────── */
.section-about::before {
    content: '';
    position: absolute;
    top: 20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(6,182,212,0.18), transparent 60%);
    filter: blur(40px);
    pointer-events: none; z-index: 0;
    animation: heroOrbeBreathe 13s ease-in-out infinite;
}
.section-about .container { position: relative; z-index: 1; }

.about-id {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(6,182,212,0.20) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px !important;
    padding: 40px !important;
    box-shadow: 0 0 0 1px rgba(6,182,212,0.05), 0 32px 64px rgba(0,0,0,0.3);
}

.id-mono {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%) !important;
    color: var(--navy-deep) !important;
    box-shadow: 0 0 48px rgba(6,182,212,0.5);
}

.id-signature, .id-role { color: var(--white) !important; }
.id-role { color: rgba(255,255,255,0.6) !important; }
.id-stat-num { color: var(--cyan-bright) !important; text-shadow: 0 0 16px rgba(6,182,212,0.3); }
.id-stat-label { color: rgba(255,255,255,0.55) !important; }
.id-social {
    color: rgba(255,255,255,0.7) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    background: rgba(255,255,255,0.02) !important;
    transition: all 0.3s ease;
}
.id-social:hover { color: var(--cyan-bright) !important; border-color: var(--cyan) !important; background: rgba(6,182,212,0.06) !important; }

.about-content h2 { color: var(--white) !important; }
.about-content p { color: rgba(255,255,255,0.72) !important; }
.about-content strong { color: var(--cyan-soft); }

/* ─────────────────────  PORTFOLIO : cards glass + alternance  ───────────────────── */
.section-portfolio::before {
    content: '';
    position: absolute;
    top: 30%; left: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(6,182,212,0.15), transparent 60%);
    filter: blur(40px);
    pointer-events: none; z-index: 0;
    animation: heroOrbeBreathe 18s ease-in-out infinite;
}
.section-portfolio .container { position: relative; z-index: 1; }

/* ─────────────────────  COMPARATIF : Zuhd rayonnante  ───────────────────── */
.section-compare {
    background: var(--navy-deep) !important;
}
.section-compare::before {
    background: radial-gradient(circle, rgba(6,182,212,0.25), transparent 60%) !important;
}
.section-compare::after {
    background: radial-gradient(circle, rgba(103,232,249,0.20), transparent 60%) !important;
}

.cmp-col {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    backdrop-filter: blur(16px);
    transition: transform 0.4s ease, border-color 0.4s ease;
    opacity: 0.82;
}
.cmp-col:hover { opacity: 1; transform: translateY(-4px); }

.cmp-col--zuhd {
    background: linear-gradient(180deg, rgba(6,182,212,0.10) 0%, rgba(6,182,212,0.03) 100%) !important;
    border: 1px solid rgba(6,182,212,0.45) !important;
    transform: scale(1.04);
    box-shadow: 0 0 0 1px rgba(6,182,212,0.15), 0 32px 80px rgba(6, 182, 212, 0.30);
    opacity: 1;
    z-index: 2;
}
.cmp-col--zuhd:hover { transform: scale(1.06) translateY(-4px); }
.cmp-badge {
    background: var(--cyan) !important;
    color: var(--navy-deep) !important;
    box-shadow: 0 0 24px rgba(6,182,212,0.6);
    animation: cmpBadgePulse 2.4s ease-in-out infinite;
}
@keyframes cmpBadgePulse {
    0%, 100% { box-shadow: 0 0 24px rgba(6,182,212,0.6); }
    50% { box-shadow: 0 0 36px rgba(6,182,212,0.9); }
}

.cmp-col-name { color: var(--white) !important; }
.cmp-item { color: rgba(255,255,255,0.78) !important; }
.cmp-item--bad i { color: rgba(239, 68, 68, 0.8) !important; }
.cmp-item--good i { color: var(--cyan-bright) !important; text-shadow: 0 0 8px rgba(6,182,212,0.5); }
.cmp-cta { background: var(--cyan) !important; color: var(--navy-deep) !important; box-shadow: 0 0 0 1px rgba(6,182,212,0.35), 0 12px 32px rgba(6,182,212,0.4); }
.cmp-cta:hover { background: var(--cyan-bright) !important; }
.cmp-micro { color: rgba(255,255,255,0.7) !important; }
.cmp-micro a { color: var(--cyan-bright) !important; font-weight: 600; }

/* ─────────────────────  OFFRE : pricing card cosmic  ───────────────────── */
.section-services {
    padding-top: 120px !important;
}
.section-services::before {
    content: '';
    position: absolute;
    top: 20%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(6,182,212,0.18), transparent 60%);
    filter: blur(40px);
    pointer-events: none; z-index: 0;
    animation: heroOrbeBreathe 14s ease-in-out infinite;
}
.section-services .container { position: relative; z-index: 1; }

.off-main {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(6,182,212,0.25) !important;
    backdrop-filter: blur(24px);
    border-radius: 28px !important;
    box-shadow: 0 0 0 1px rgba(6,182,212,0.08), 0 48px 120px rgba(6,182,212,0.20);
    position: relative;
    overflow: hidden;
}
.off-main::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    width: 600px; height: 400px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(6,182,212,0.18), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.off-label { color: var(--cyan-soft) !important; }
.off-label::before { background: var(--cyan) !important; box-shadow: 0 0 8px rgba(6,182,212,0.5); }
.off-name { color: var(--white) !important; font-size: 40px !important; letter-spacing: -0.025em; }
.off-pitch { color: rgba(255,255,255,0.72) !important; }

.off-price-block { border-color: rgba(255,255,255,0.08) !important; }
.off-price {
    font-size: 64px !important;
    background: linear-gradient(135deg, var(--white) 0%, var(--cyan-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    text-shadow: 0 0 40px rgba(6,182,212,0.3);
}
.off-price-unit, .off-price-detail { color: rgba(255,255,255,0.65) !important; }
.off-price-detail i { color: var(--cyan-bright) !important; }
.off-price-detail strong { color: var(--white) !important; }

.off-includes-label { color: var(--cyan-soft) !important; }
.off-includes-label::before { background: var(--cyan) !important; box-shadow: 0 0 8px rgba(6,182,212,0.5); }
.off-list li strong { color: var(--white) !important; }
.off-list li > div > span { color: rgba(255,255,255,0.65) !important; }
.off-check {
    background: rgba(6, 182, 212, 0.15) !important;
    border: 1px solid rgba(6, 182, 212, 0.45) !important;
    color: var(--cyan-bright) !important;
    box-shadow: 0 0 8px rgba(6,182,212,0.3);
}

.off-property-note {
    background: rgba(6,182,212,0.06) !important;
    border-left-color: var(--cyan) !important;
    color: rgba(255,255,255,0.7) !important;
}

.off-trust { border-top-color: rgba(255,255,255,0.10) !important; }
.off-trust-item { color: rgba(255,255,255,0.65) !important; }
.off-trust-item i { color: var(--cyan-bright) !important; }

.addon {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(16px);
}
.addon-icon { background: rgba(6,182,212,0.12) !important; color: var(--cyan-bright) !important; }
.addon-label { color: rgba(255,255,255,0.6) !important; }
.addon-name { color: var(--white) !important; }
.addon-price-top { color: var(--cyan-bright) !important; text-shadow: 0 0 16px rgba(6,182,212,0.3); }
.addon-list li { color: rgba(255,255,255,0.7) !important; }
.addon-list li::before { background: var(--cyan) !important; }
.addon-price-sub { color: rgba(255,255,255,0.55) !important; }
.addon-cta { color: var(--cyan-bright) !important; font-weight: 600; }

/* ─────────────────────  FAQ : accordion premium  ───────────────────── */
.section-faq {
    padding-top: 120px !important;
}
.section-faq::before {
    content: '';
    position: absolute;
    top: 10%; right: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(6,182,212,0.15), transparent 60%);
    filter: blur(40px);
    pointer-events: none; z-index: 0;
}
.section-faq .container { position: relative; z-index: 1; }

.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    backdrop-filter: blur(16px);
    border-radius: 16px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item:hover { border-color: rgba(6,182,212,0.25) !important; }
.faq-item.active {
    border-color: rgba(6,182,212,0.45) !important;
    background: rgba(6,182,212,0.04) !important;
    box-shadow: 0 16px 48px rgba(6,182,212,0.12);
}
.faq-q {
    color: var(--white) !important;
    padding: 22px 26px !important;
    font-weight: 600;
    font-size: 16.5px !important;
}
.faq-icon {
    width: 32px; height: 32px;
    background: rgba(6,182,212,0.12) !important;
    border: 1px solid rgba(6,182,212,0.3) !important;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan-bright) !important;
    transition: transform 0.4s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-a p { color: rgba(255,255,255,0.72) !important; padding: 0 26px 22px !important; }

.faq-more {
    background: linear-gradient(135deg, rgba(6,182,212,0.10), rgba(6,182,212,0.02)) !important;
    border: 1px solid rgba(6,182,212,0.25) !important;
    backdrop-filter: blur(16px);
    border-radius: 20px !important;
    margin-top: 32px;
}
.faq-more-text { color: var(--white) !important; }
.faq-more-text strong { color: var(--cyan-soft); }

.section-faq .btn-ghost-dark { color: var(--white) !important; border-color: rgba(6,182,212,0.4) !important; }
.section-faq .btn-ghost-dark:hover { background: var(--cyan) !important; color: var(--navy-deep) !important; }

/* ─────────────────────  CTA + FORM AUDIT : glass premium  ───────────────────── */
.section-cta {
    padding-top: 120px !important;
}
.section-cta::before {
    content: '';
    position: absolute;
    top: 10%; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(6,182,212,0.20), transparent 60%);
    filter: blur(40px);
    pointer-events: none; z-index: 0;
    animation: heroOrbeBreathe 12s ease-in-out infinite;
}
.section-cta .container { position: relative; z-index: 1; }

.cta-left h2 { color: var(--white) !important; }
.cta-pitch { color: rgba(255,255,255,0.72) !important; }
.cta-reason {
    color: rgba(255,255,255,0.78) !important;
}
.cta-reason strong { color: var(--white); }
.cta-reason-icon {
    background: rgba(6,182,212,0.12) !important;
    color: var(--cyan-bright) !important;
    border: 1px solid rgba(6,182,212,0.3);
    box-shadow: 0 0 12px rgba(6,182,212,0.2);
}

.cta-form-card {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(6,182,212,0.25) !important;
    backdrop-filter: blur(28px);
    box-shadow: 0 0 0 1px rgba(6,182,212,0.05), 0 48px 120px rgba(0,0,0,0.4);
    color: var(--white) !important;
}
.cta-form-head { border-bottom-color: rgba(255,255,255,0.08) !important; }
.cta-form-title { color: var(--white) !important; }
.cta-form-sub { color: rgba(255,255,255,0.65) !important; }
.cta-form-group label { color: rgba(255,255,255,0.55) !important; }
.cta-form-group input,
.cta-form-group textarea {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    color: var(--white) !important;
}
.cta-form-group input::placeholder,
.cta-form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.cta-form-group input:focus,
.cta-form-group textarea:focus {
    border-color: var(--cyan) !important;
    background: rgba(6,182,212,0.06) !important;
    box-shadow: 0 0 0 4px rgba(6,182,212,0.15);
}
.cta-offer-pill {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    color: rgba(255,255,255,0.7) !important;
    transition: all 0.25s ease;
}
.cta-offer-pill:hover { border-color: rgba(6,182,212,0.4) !important; color: var(--white) !important; }
.cta-offers input[type="radio"]:checked + .cta-offer-pill {
    background: rgba(6,182,212,0.15) !important;
    border-color: var(--cyan) !important;
    color: var(--cyan-bright) !important;
    box-shadow: 0 0 0 1px rgba(6,182,212,0.2), 0 0 16px rgba(6,182,212,0.20);
}
.cta-submit {
    background: var(--cyan) !important;
    color: var(--navy-deep) !important;
}
.cta-form-note { color: rgba(255,255,255,0.5) !important; }
.cta-form-note i { color: var(--cyan-bright) !important; }

.cf-success {
    background: rgba(6,182,212,0.08) !important;
    border: 1px solid rgba(6,182,212,0.35) !important;
    color: var(--white) !important;
}
.cfs-icon { color: var(--cyan-bright) !important; }

/* ─────────────────────  FOOTER : navy deep + cyan accents  ───────────────────── */
.footer {
    background: linear-gradient(180deg, var(--navy-deep) 0%, #050914 100%) !important;
    border-top: 1px solid rgba(6,182,212,0.10);
    color: rgba(255,255,255,0.65) !important;
}
.footer-logo-dot { color: var(--cyan) !important; text-shadow: 0 0 12px rgba(6,182,212,0.6); }
.footer-pitch { color: rgba(255,255,255,0.5) !important; }
.footer-social {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}
.footer-social:hover { color: var(--cyan-bright); border-color: var(--cyan); background: rgba(6,182,212,0.06); }
.footer-title { color: var(--white) !important; }
.footer-links a { color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--cyan-bright) !important; }
.footer-contact { color: rgba(255,255,255,0.6) !important; }
.footer-contact:hover { color: var(--cyan-bright) !important; }
.footer-mini-cta {
    background: var(--cyan) !important;
    color: var(--navy-deep) !important;
    box-shadow: 0 0 0 1px rgba(6,182,212,0.3), 0 8px 24px rgba(6,182,212,0.3);
    font-weight: 700;
}
.footer-mini-cta:hover { background: var(--cyan-bright) !important; }
.footer-bottom { border-top-color: rgba(255,255,255,0.06) !important; color: rgba(255,255,255,0.5) !important; }
.footer-legal a { color: rgba(255,255,255,0.5) !important; }
.footer-legal a:hover { color: var(--cyan-bright) !important; }

/* ─────────────────────  PERFORMANCE : reduced motion  ───────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hero::before, .hero::after,
    .section-why::before, .section-why::after,
    .section-process::before, .section-process::after,
    .section-about::before, .section-portfolio::before,
    .section-compare::before, .section-compare::after,
    .section-services::before, .section-faq::before, .section-cta::before,
    .hero-badge .badge-dot, .cmp-badge {
        animation: none !important;
    }
    .btn-primary, .btn-primary:hover, .wf-item:hover, .pf-card:hover, .cmp-col:hover {
        transition: none !important;
        transform: none !important;
    }
}

/* ─────────────────────  MOBILE  ───────────────────── */
@media (max-width: 600px) {
    .hero { padding-top: 120px; }
    .hero::before { width: 700px; height: 700px; }
    .hero::after { display: none; }
    .off-name { font-size: 30px !important; }
    .off-price { font-size: 48px !important; }
}

/* ════════════════════════════════════════════════════════════════════════
   PATCH 2026-05-18 v2 — Fixes lisibilité + refonte Why+Fit, Process, Portfolio
   ════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────  FIX LISIBILITÉ FIT CHECK + ABOUT  ───────────────────── */
.wf-fit-col-label { color: var(--white) !important; }
.wf-fit-list li::before { background: var(--cyan-bright) !important; box-shadow: 0 0 8px rgba(6,182,212,0.6); }
.wf-fit-list--no li { color: rgba(255, 255, 255, 0.45) !important; }
.wf-fit-list--no li::before { background: transparent !important; border: 1.5px solid rgba(255,255,255,0.3) !important; box-shadow: none !important; }

.about-content p strong { color: var(--cyan-soft) !important; font-weight: 700; }

/* ─────────────────────  WHY+FIT : 2x2 propre (annule bento asymétrique)  ───────────────────── */
.wf-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
}
.wf-item,
.wf-item:nth-child(1),
.wf-item:nth-child(2),
.wf-item:nth-child(3),
.wf-item:nth-child(4) {
    grid-column: span 1 !important;
    min-height: 280px;
}
.wf-item {
    padding: 40px 36px !important;
}
.wf-num {
    font-size: 110px !important;
    top: 8px !important;
    right: 28px !important;
}

@media (max-width: 900px) {
    .wf-grid { grid-template-columns: 1fr !important; }
    .wf-item { min-height: auto; padding: 32px 28px !important; }
    .wf-num { font-size: 80px !important; }
}

/* ─────────────────────  PROCESS : 4 cards horizontales modernes  ───────────────────── */
.pr-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.pr-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.pr-card::before {
    content: '';
    position: absolute;
    top: 0; left: 24px; right: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.pr-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.40);
    box-shadow: 0 24px 60px rgba(6, 182, 212, 0.20);
}
.pr-card:hover::before { opacity: 1; }

.pr-card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 6px;
}
.pr-card-num {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    text-shadow: 0 0 32px rgba(6, 182, 212, 0.3);
}
.pr-card-week {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}
.pr-card-stage {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--cyan-soft);
    font-weight: 700;
}
.pr-card-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
}
.pr-card-detail {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.pr-card--final {
    border-color: rgba(6, 182, 212, 0.35);
    background: linear-gradient(180deg, rgba(6,182,212,0.08) 0%, rgba(6,182,212,0.02) 100%);
    box-shadow: 0 0 0 1px rgba(6,182,212,0.10), 0 24px 60px rgba(6,182,212,0.15);
}
.pr-card--final::before { opacity: 1; }
.pr-card--final .pr-card-num { text-shadow: 0 0 40px rgba(6, 182, 212, 0.55); }

@media (max-width: 1100px) {
    .pr-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .pr-cards { grid-template-columns: 1fr; }
    .pr-card-num { font-size: 44px; }
}

/* ─────────────────────  CTA SOCIALS : DM pills  ───────────────────── */
.cta-socials {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-socials-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
    font-weight: 600;
}
.cta-socials-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cta-social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta-social-pill:hover {
    background: rgba(6, 182, 212, 0.10);
    border-color: var(--cyan);
    color: var(--cyan-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.20);
}
.cta-social-pill i { font-size: 16px; }

/* ─────────────────────  Reduced motion (étendu)  ───────────────────── */
@media (prefers-reduced-motion: reduce) {
    .pr-card, .pr-card:hover { transform: none !important; transition: none !important; }
    .pr-card::before { opacity: 1 !important; transition: none !important; }
}

/* ════════════════════════════════════════════════════════════════════════
   PATCH 2026-05-18 v3 — Fix grid bug, alternance light/dark, hero tonné
   ════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────  FIX CRITIQUE WHY+FIT GRID  ─────────────────────
   Le legacy .wf-item utilise grid-template-columns: 72px 1fr (pour numéro
   + body). Mon cosmic override positionne .wf-num en absolute, donc
   .wf-body se retrouve dans la 1ère colonne 72px = wrap mot par mot.
   Fix : forcer .wf-item en grid 1 colonne. */
.wf-item {
    display: block !important;
    grid-template-columns: none !important;
}
.wf-body {
    display: block !important;
    width: 100% !important;
}

/* ─────────────────────  HERO : brightness tonné  ───────────────────── */
.hero {
    background: radial-gradient(ellipse at 50% 40%, #0E1A45 0%, var(--navy-deep) 50%, #050914 100%) !important;
}
.hero::before {
    background:
        radial-gradient(circle at 50% 40%, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0.07) 25%, transparent 55%),
        radial-gradient(circle at 50% 60%, rgba(34, 211, 238, 0.12) 0%, transparent 60%) !important;
    width: 1000px !important;
    height: 1000px !important;
}
.hero::after { display: none !important; }
.hero-h1 {
    font-size: clamp(40px, 6vw, 64px) !important;
    max-width: 820px !important;
    line-height: 1.05 !important;
}

/* ─────────────────────  SECTION FIT (LIGHT BG)  ───────────────────── */
.section-fit {
    background: var(--blanc-casse) !important;
    color: var(--navy) !important;
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}
.section-fit::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(6,182,212,0.10), transparent 60%);
    filter: blur(40px);
    pointer-events: none; z-index: 0;
}
.section-fit::after {
    content: '';
    position: absolute;
    bottom: -10%; left: -10%;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(6,182,212,0.06), transparent 60%);
    filter: blur(40px);
    pointer-events: none; z-index: 0;
}
.section-fit .container { position: relative; z-index: 1; }

.fit-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-fit .section-tag {
    background: rgba(6,182,212,0.08) !important;
    color: var(--cyan-deep) !important;
    border: 1px solid rgba(6,182,212,0.25) !important;
    box-shadow: 0 0 20px rgba(6,182,212,0.08);
}
.fit-head h2 {
    color: var(--navy) !important;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-top: 18px;
}
.fit-head h2 .text-accent {
    background: linear-gradient(135deg, var(--cyan-deep) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
}

.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.fit-col {
    background: var(--white);
    border: 1px solid var(--bleu-pale);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 16px 48px rgba(19, 39, 96, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fit-col:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(19, 39, 96, 0.12);
}
.fit-col--yes { border-color: rgba(6,182,212,0.35); }

.fit-col-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--bleu-pale);
}
.fit-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.fit-icon--yes {
    background: rgba(6,182,212,0.12);
    color: var(--cyan-deep);
    border: 1px solid rgba(6,182,212,0.35);
    box-shadow: 0 0 12px rgba(6,182,212,0.2);
}
.fit-icon--no {
    background: rgba(239,68,68,0.10);
    color: #DC2626;
    border: 1px solid rgba(239,68,68,0.25);
}
.fit-col-label {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.fit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fit-list li {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(19, 39, 96, 0.78);
    padding-left: 22px;
    position: relative;
}
.fit-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.55em;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 6px rgba(6,182,212,0.5);
}
.fit-list--no li {
    color: rgba(19, 39, 96, 0.48);
}
.fit-list--no li::before {
    background: transparent;
    border: 1.5px solid rgba(19, 39, 96, 0.3);
    box-shadow: none;
}

@media (max-width: 800px) {
    .fit-grid { grid-template-columns: 1fr; gap: 16px; }
    .fit-col { padding: 28px 24px; }
}

/* ─────────────────────  PORTFOLIO en LIGHT  ───────────────────── */
.section-portfolio {
    background: var(--white) !important;
    color: var(--navy) !important;
}
.section-portfolio::before {
    background: radial-gradient(circle, rgba(6,182,212,0.10), transparent 65%) !important;
    filter: blur(30px) !important;
    opacity: 0.6;
}
.section-portfolio .section-tag {
    background: rgba(6,182,212,0.08) !important;
    color: var(--cyan-deep) !important;
    border: 1px solid rgba(6,182,212,0.25) !important;
}
.section-portfolio h2,
.section-portfolio .pf-head h2 { color: var(--navy) !important; }
.section-portfolio .pf-head h2 .text-accent {
    background: linear-gradient(135deg, var(--cyan-deep) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
}

/* ─────────────────────  Smooth transitions entre sections light/dark  ───────────────────── */
.stats-bar { border-bottom: none !important; }
.section-why { padding-bottom: 80px !important; }
.section-fit { padding-top: 100px !important; padding-bottom: 100px !important; }
.section-process { padding-top: 100px !important; }
.section-portfolio { padding-top: 100px !important; padding-bottom: 100px !important; }

/* Edge subtil cyan entre transitions */
.section-fit { box-shadow: inset 0 1px 0 rgba(6,182,212,0.06); }
.section-portfolio { box-shadow: inset 0 1px 0 rgba(6,182,212,0.10); }


/* ════════════════════════════════════════════════════════════════════════
   PATCH 2026-05-18 v4 — Casser pattern cards, fix responsive, SEO
   ════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────  WHY+FIT redesigné en LIST éditorial
   (au lieu de cards, pour varier visuellement avec Process/Portfolio)  ───────────────────── */
.wf-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    grid-template-columns: none !important;
    max-width: 1000px;
    margin: 0 auto;
}
.wf-item {
    display: grid !important;
    grid-template-columns: 80px 1fr !important;
    gap: 32px !important;
    background: transparent !important;
    border: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 0 !important;
    padding: 44px 8px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    min-height: auto !important;
    transition: background 0.3s ease, border-color 0.3s ease !important;
    overflow: visible !important;
}
.wf-item:first-child { border-top: none !important; }
.wf-item:hover {
    background: rgba(6, 182, 212, 0.025) !important;
    border-top-color: rgba(6, 182, 212, 0.25) !important;
    transform: none !important;
    box-shadow: none !important;
}
.wf-item::before { display: none !important; }

/* Numéros remplacés par un design list-item */
.wf-num {
    position: static !important;
    font-size: 64px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    color: var(--cyan-bright) !important;
    background: none !important;
    -webkit-text-fill-color: var(--cyan-bright) !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    text-shadow: 0 0 24px rgba(6, 182, 212, 0.35);
    letter-spacing: -0.04em;
    opacity: 0.95;
}

.wf-body {
    display: block !important;
    width: 100% !important;
}
.wf-fear {
    color: rgba(255, 255, 255, 0.5) !important;
    font-style: italic;
    font-size: 15px !important;
    margin-bottom: 12px !important;
    font-weight: 400;
}
.wf-promise {
    color: var(--white) !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    margin-bottom: 14px !important;
    letter-spacing: -0.025em;
}
.wf-body p {
    color: rgba(255, 255, 255, 0.70) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    max-width: 720px;
}

@media (max-width: 700px) {
    .wf-item {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 32px 4px !important;
    }
    .wf-num { font-size: 48px !important; }
    .wf-promise { font-size: 20px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE GLOBAL — Audit complet mobile + tablette
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────  Tablette (1024px)  ───────────────────── */
@media (max-width: 1024px) {
    :root { --section-py: 80px; }
    .container { padding-left: 24px !important; padding-right: 24px !important; }

    /* Hero */
    .hero { padding-top: 140px !important; padding-bottom: 60px !important; }
    .hero-h1 { font-size: clamp(34px, 5.5vw, 52px) !important; }

    /* CTA grid 1 col plus tôt */
    .cta-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* ─────────────────────  Mobile (768px)  ───────────────────── */
@media (max-width: 768px) {
    :root { --section-py: 64px; }

    /* Navbar : réduire padding */
    .navbar { padding: 14px 0 !important; }
    .nav-container { padding-left: 20px !important; padding-right: 20px !important; }
    .nav-links { display: none !important; }
    .nav-right .btn-nav { display: none !important; }
    .nav-burger { display: flex !important; }

    /* Hero */
    .hero { padding-top: 110px !important; padding-bottom: 48px !important; min-height: auto !important; }
    .hero-h1 { font-size: clamp(30px, 8vw, 44px) !important; line-height: 1.08 !important; }
    .hero-sub { font-size: 15px !important; }
    .hero-actions { flex-direction: column !important; width: 100%; gap: 12px !important; }
    .hero-actions .btn-primary, .hero-actions .btn-ghost-dark { width: 100% !important; justify-content: center; padding: 14px 20px !important; }

    /* Stats : 2x2 sur mobile */
    .stats-grid { grid-template-columns: 1fr 1fr !important; }
    .stat-item { padding: 20px 12px !important; }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06) !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
    .stat-item:nth-child(even) { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none !important; }
    .stat-num { font-size: 32px !important; }

    /* Section titles : moins gros sur mobile */
    .wf-head h2, .pr-head h2, .pf-head h2, .cmp-head h2,
    .off-head h2, .faq-head h2, .fit-head h2, .section-cta h2 {
        font-size: clamp(26px, 6vw, 36px) !important;
        line-height: 1.12 !important;
    }

    /* Process cards 1 col */
    .pr-cards { grid-template-columns: 1fr !important; gap: 14px !important; }
    .pr-card { padding: 24px 22px !important; }
    .pr-card-num { font-size: 40px !important; }


    /* Comparatif cards stack vertical */
    .cmp-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .cmp-col { padding: 28px 22px !important; }
    .cmp-col--zuhd { transform: none !important; order: -1; }

    /* Offre */
    .off-main { padding: 32px 24px !important; }
    .off-name { font-size: 26px !important; }
    .off-price { font-size: 44px !important; }
    .addon { flex-direction: column !important; padding: 24px 22px !important; }
    .addon-top { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; }

    /* FAQ */
    .faq-q { padding: 18px 22px !important; font-size: 15px !important; }
    .faq-a p { padding: 0 22px 18px !important; font-size: 14.5px !important; }
    .faq-more { flex-direction: column !important; gap: 16px !important; text-align: left; padding: 24px 22px !important; }

    /* Form */
    .cta-form-card { padding: 28px 22px !important; }
    .cta-form-row { grid-template-columns: 1fr !important; }
    .cta-form-group input,
    .cta-form-group textarea { padding: 14px !important; font-size: 16px !important; /* ≥16 pour empêcher zoom iOS */ }
    .cta-offer-pill { padding: 10px 14px !important; font-size: 13px !important; }
    .cta-submit { width: 100% !important; }

    /* Fit cols stack */
    .fit-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .fit-col { padding: 28px 24px !important; }

    /* Footer mobile */
    .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .footer-bottom { flex-direction: column !important; gap: 14px !important; text-align: center !important; }
    .footer-legal { justify-content: center !important; flex-wrap: wrap; gap: 12px !important; }

    /* Touch targets ≥ 44px */
    .nav-burger { width: 44px !important; height: 44px !important; }
    .id-social, .footer-social { min-height: 44px !important; }

    /* Sticky CTA mobile */
    .sticky-mobile-cta { padding: 12px 16px !important; }
    .sticky-cta-btn { width: 100% !important; justify-content: center !important; padding: 14px 18px !important; font-weight: 700 !important; }
}

/* ─────────────────────  Petit mobile (480px)  ───────────────────── */
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 0 !important; }
    .hero-h1 { font-size: clamp(28px, 8.5vw, 38px) !important; }
    .hero-badge { font-size: 11px !important; padding: 6px 12px !important; }

    /* Container minimal padding */
    .container { padding-left: 16px !important; padding-right: 16px !important; }

    /* Form */
    .cta-form-title { font-size: 19px !important; }

    /* Why+Fit */
    .wf-num { font-size: 40px !important; }
    .wf-promise { font-size: 18px !important; }
}

/* ─────────────────────  Très petit (360px)  ───────────────────── */
@media (max-width: 360px) {
    .stat-num { font-size: 26px !important; }
    .stat-label { font-size: 11px !important; }
}

/* ════════════════════════════════════════════════════════════════════════
   PATCH 2026-05-18 v5 — Audit recommandations CIP
   - Hero audit preview
   - Portfolio reframe
   - Offer guarantee + price breakdown
   - Calendly alt + Nabile signature
   ════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────  HERO AUDIT PREVIEW  ───────────────────── */
.hero-audit-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px auto 0;
    max-width: 540px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.20);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-decoration: none;
    color: var(--white);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.hero-audit-preview:hover {
    background: rgba(6, 182, 212, 0.08);
    border-color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(6, 182, 212, 0.2);
}
.hap-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(6,182,212,0.20), rgba(6,182,212,0.08));
    border: 1px solid rgba(6,182,212,0.30);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan-bright);
    font-size: 18px;
    flex-shrink: 0;
}
.hap-body { flex: 1; }
.hap-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan-soft);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 4px;
}
.hap-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
}
.hap-arrow {
    color: var(--cyan-bright);
    font-size: 14px;
    transition: transform 0.3s ease;
}
.hero-audit-preview:hover .hap-arrow { transform: translateY(3px); }

@media (max-width: 600px) {
    .hero-audit-preview { padding: 14px 16px; gap: 12px; margin-top: 28px; }
    .hap-icon { width: 38px; height: 38px; font-size: 16px; }
    .hap-text { font-size: 13px; }
}

/* ─────────────────────  OFFER GUARANTEE  ───────────────────── */
.off-guarantee {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 24px 0;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.10), rgba(6, 182, 212, 0.02));
    border: 1px solid rgba(6, 182, 212, 0.30);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}
.off-guarantee-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.20);
    border: 1px solid rgba(6, 182, 212, 0.40);
    color: var(--cyan-bright);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(6, 182, 212, 0.3);
}
.off-guarantee-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}
.off-guarantee-body p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
}

/* ─────────────────────  OFFER PRICE BREAKDOWN (details/summary)  ───────────────────── */
.off-breakdown {
    margin: 0 0 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}
.off-breakdown summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.3s ease;
    user-select: none;
}
.off-breakdown summary::-webkit-details-marker { display: none; }
.off-breakdown summary:hover { background: rgba(6, 182, 212, 0.04); }
.off-breakdown-label {
    color: var(--white);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
}
.off-breakdown-toggle {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.30);
    color: var(--cyan-bright);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.off-breakdown[open] .off-breakdown-toggle { transform: rotate(180deg); }
.off-breakdown-content {
    padding: 4px 22px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 4px;
}
.off-breakdown-intro {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.55;
    margin: 14px 0 14px;
    font-style: italic;
}
.off-breakdown-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.off-breakdown-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    font-size: 14px;
}
.off-breakdown-list li:last-child { border-bottom: none; }
.obl-name {
    color: rgba(255, 255, 255, 0.78);
    flex: 1;
    line-height: 1.45;
}
.obl-price {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    font-feature-settings: "tnum";
    white-space: nowrap;
}
.off-breakdown-total {
    padding: 16px 18px;
    background: rgba(6, 182, 212, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(6, 182, 212, 0.18);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}
.off-breakdown-total > div {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
}
.off-breakdown-total > div strong {
    color: var(--white);
    font-weight: 700;
    font-feature-settings: "tnum";
}
.off-breakdown-total .obt-zuhd strong {
    color: var(--cyan-bright);
    font-size: 18px;
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.4);
}
.off-breakdown-total .obt-save {
    margin-top: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(6, 182, 212, 0.15);
    color: var(--cyan-soft);
    font-size: 13px;
    justify-content: flex-start;
    gap: 4px;
}
.off-breakdown-total .obt-save strong { color: var(--cyan-bright); }

@media (max-width: 600px) {
    .off-breakdown summary { padding: 16px 18px; }
    .off-breakdown-content { padding: 4px 18px 18px; }
    .off-breakdown-list li { flex-direction: column; gap: 4px; padding: 8px 0; }
    .obl-price { font-size: 13px; }
}

/* ─────────────────────  CTA CALENDLY ALT (au lieu de DM social)  ───────────────────── */
.cta-calendly {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-calendly-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
    font-weight: 600;
}
.cta-calendly-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.30);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}
.cta-calendly-btn:hover {
    background: rgba(6, 182, 212, 0.10);
    border-color: var(--cyan);
    color: var(--cyan-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(6, 182, 212, 0.20);
}
.cta-calendly-btn i:first-child { color: var(--cyan-bright); font-size: 16px; }
.cta-calendly-btn i:last-child { font-size: 12px; opacity: 0.7; transition: transform 0.3s ease; }
.cta-calendly-btn:hover i:last-child { transform: translateX(4px); opacity: 1; }
.cta-calendly-note {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    max-width: 400px;
}

/* ─────────────────────  NABILE SIGNATURE (le mot du fondateur)  ───────────────────── */
.cta-signature {
    margin-top: 36px;
    padding: 28px 28px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}
.cta-signature::before {
    content: '"';
    position: absolute;
    top: -20px; left: 16px;
    font-size: 140px;
    color: rgba(6, 182, 212, 0.10);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.cta-signature-intro {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--cyan-soft);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
}
.cta-signature-text p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 16px;
    font-style: italic;
    position: relative;
}
.cta-signature-svg {
    width: 220px;
    height: 80px;
    color: var(--cyan-bright);
    margin-top: 4px;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.3));
}

@media (max-width: 600px) {
    .cta-signature { padding: 22px 22px 20px; }
    .cta-signature::before { font-size: 100px; }
}

/* ─────────────────────  SECTION CTA : grid 1.1fr / 1fr pour respirer  ───────────────────── */
.section-cta .cta-grid {
    grid-template-columns: 1.05fr 1fr;
}
@media (max-width: 900px) {
    .section-cta .cta-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════════
   PATCH 2026-05-18 v6 — Refonte Why+Fit avec layout split fear → promise
   ════════════════════════════════════════════════════════════════════════ */

/* Override le précédent layout list-only par un split horizontal fear→arrow→promise */
.wf-item {
    display: grid !important;
    grid-template-columns: 60px minmax(0, 1fr) 56px minmax(0, 1.3fr) !important;
    gap: 32px !important;
    align-items: center !important;
    padding: 48px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: auto !important;
    position: relative;
    transition: background 0.35s ease, border-color 0.35s ease !important;
}
.wf-item:first-child { border-top: none !important; }
.wf-item:hover {
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.04), transparent) !important;
    border-top-color: rgba(6, 182, 212, 0.30) !important;
}

/* Numéro */
.wf-num {
    position: static !important;
    font-size: 56px !important;
    font-weight: 800 !important;
    color: var(--cyan-bright) !important;
    -webkit-text-fill-color: var(--cyan-bright) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    text-shadow: 0 0 24px rgba(6, 182, 212, 0.35) !important;
    line-height: 1 !important;
    letter-spacing: -0.04em;
    align-self: center;
    justify-self: start;
}

/* Body devient un contents pour que les enfants soient dans le grid */
.wf-body {
    display: contents !important;
}

/* Fear (colonne 2) */
.wf-fear {
    grid-column: 2 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    font-style: italic !important;
    font-size: 18px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-weight: 400;
}

/* Le ::after agit comme la flèche centrale */
.wf-item::after {
    content: '→';
    grid-column: 3 !important;
    color: var(--cyan-bright);
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    justify-self: center;
    align-self: center;
    text-shadow: 0 0 16px rgba(6, 182, 212, 0.6);
    transition: transform 0.4s ease;
    opacity: 0.85;
}
.wf-item:hover::after {
    transform: translateX(6px) scale(1.1);
    opacity: 1;
}

/* Promise + description (colonne 4) */
.wf-promise {
    grid-column: 4 !important;
    color: var(--white) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0 0 10px !important;
    letter-spacing: -0.025em;
}
.wf-body p {
    grid-column: 4 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    max-width: 100%;
}

/* Le ::before du wf-item (radial mouse halo) reste désactivé */
.wf-item::before { display: none !important; }

/* Tablette */
@media (max-width: 1000px) {
    .wf-item {
        grid-template-columns: 48px 1fr !important;
        gap: 24px !important;
        padding: 36px 0 !important;
    }
    .wf-num { font-size: 44px !important; }
    .wf-fear, .wf-promise, .wf-body p {
        grid-column: 2 !important;
    }
    .wf-fear { margin-bottom: 14px !important; font-size: 16px !important; }
    .wf-promise { font-size: 20px !important; margin-bottom: 8px !important; }
    .wf-item::after {
        content: none !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .wf-item {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 32px 0 !important;
    }
    .wf-num { font-size: 36px !important; }
    .wf-fear { font-size: 15px !important; }
    .wf-promise { font-size: 18px !important; }
    .wf-fear, .wf-promise, .wf-body p { grid-column: 1 !important; }
}

/* Le bouton "lancer mon projet" doit avoir un peu plus de respiration */
.wf-cta { margin-top: 56px !important; }


/* ════════════════════════════════════════════════════════════════════════
   PATCH 2026-05-18 v7 — Remove dated white bullets + nettoyage signature
   ════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────  "Passez votre chemin si" : retirer les cercles vides datés  ───────────────────── */
.fit-list--no li {
    padding-left: 0 !important;
    color: rgba(19, 39, 96, 0.45) !important;
}
.fit-list--no li::before {
    display: none !important;
}

/* La liste "Vous êtes au bon endroit si" garde ses points cyan modernes,
   mais on les recalibre pour qu'ils soient plus discrets et premium. */
.fit-list li::before {
    width: 6px !important;
    height: 6px !important;
    top: 0.65em !important;
    box-shadow: 0 0 8px rgba(6,182,212,0.6) !important;
}

/* Soften la séparation entre items Why+Fit pour ne plus avoir de ligne blanche datée */
.wf-item {
    border-top: 1px solid rgba(6, 182, 212, 0.10) !important;
}

/* Retirer la barre verticale dividers stats-bar (trop "années 2010") */
.stat-item {
    border-right: none !important;
}
@media (max-width: 768px) {
    .stat-item:nth-child(odd),
    .stat-item:nth-child(even) {
        border-right: none !important;
        border-bottom: none !important;
    }
}

/* Cleanup : la signature dégage donc on peut désactiver son CSS (pas critique mais propre) */
.cta-signature { display: none !important; }


/* ════════════════════════════════════════════════════════════════════════
   PATCH 2026-05-18 v8 — Badge blanc, stats-3, portfolio vertical, testimonial
   ════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────  HERO BADGE BLANC (rareté)  ───────────────────── */
.hero-badge--white {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--navy-deep) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 9px 18px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 0.02em;
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.15), 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-badge--white .badge-dot {
    background: #DC2626 !important;
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.7) !important;
    animation: pulseRed 1.6s infinite !important;
}
.hero-badge--white .badge-label {
    color: var(--navy-deep) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}
@keyframes pulseRed {
    0%   { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6), 0 0 12px rgba(220, 38, 38, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0), 0 0 12px rgba(220, 38, 38, 0.7); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0), 0 0 12px rgba(220, 38, 38, 0.7); }
}

/* ─────────────────────  STATS GRID 3 colonnes  ───────────────────── */
.stats-grid--3 {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .stats-grid--3 { grid-template-columns: 1fr !important; gap: 12px !important; }
}

/* ─────────────────────  SECTION TESTIMONIAL (dédié, big quote)  ───────────────────── */
.section-testimonial {
    background: var(--navy-deep);
    color: var(--white);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}
.section-testimonial::before {
    content: '';
    position: absolute;
    top: -10%; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.18), transparent 60%);
    filter: blur(40px);
    pointer-events: none; z-index: 0;
    animation: heroOrbeBreathe 14s ease-in-out infinite;
}
.section-testimonial .container { position: relative; z-index: 1; }

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(6, 182, 212, 0.20);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.08), 0 48px 120px rgba(0, 0, 0, 0.4);
    position: relative;
}

.testimonial-quote-mark {
    font-family: Georgia, serif;
    font-size: 140px;
    line-height: 0.8;
    color: var(--cyan);
    opacity: 0.5;
    margin-bottom: -20px;
    text-shadow: 0 0 32px rgba(6, 182, 212, 0.4);
}

.testimonial-text {
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.5;
    color: var(--white);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin: 0 0 40px;
    padding: 0;
    border: none;
    font-style: italic;
}

.testimonial-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.testimonial-author-mono {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-deep) 100%);
    color: var(--navy-deep);
    font-weight: 800;
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 32px rgba(6, 182, 212, 0.45);
}
.testimonial-author-info { text-align: left; }
.testimonial-author-name {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.testimonial-author-role {
    color: var(--cyan-soft);
    font-size: 13px;
    font-weight: 500;
    margin-top: 2px;
}

@media (max-width: 700px) {
    .testimonial-card { padding: 40px 28px; }
    .testimonial-quote-mark { font-size: 100px; margin-bottom: -16px; }
    .testimonial-text { font-size: 18px !important; }
}

/* ─────────────────────  Form : label optional indicator  ───────────────────── */
.cta-form-optional {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    margin-left: 4px;
    text-transform: none;
    letter-spacing: 0;
}


/* ════════════════════════════════════════════════════════════════════════
   PATCH 2026-05-18 v9 — Hero status éditorial premium (remplace badge sticker)
   ════════════════════════════════════════════════════════════════════════ */

/* Cacher l'ancien badge (au cas où il revient) */
.hero-badge--white { display: none !important; }

/* Nouveau hero status : minimal éditorial, pas de pill, pas de sticker */
.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 13px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.hero-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan-bright);
    box-shadow:
        0 0 12px rgba(34, 211, 238, 0.7),
        0 0 24px rgba(6, 182, 212, 0.35);
    flex-shrink: 0;
    animation: heroStatusPulse 2.4s ease-in-out infinite;
}
@keyframes heroStatusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 12px rgba(34, 211, 238, 0.7), 0 0 24px rgba(6, 182, 212, 0.35); }
    50%      { opacity: 0.75; box-shadow: 0 0 8px rgba(34, 211, 238, 0.5), 0 0 16px rgba(6, 182, 212, 0.25); }
}

.hero-status-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-status-sep {
    color: rgba(255, 255, 255, 0.30);
    font-size: 13px;
    font-weight: 300;
    margin: 0 2px;
}

.hero-status-value {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

@media (max-width: 600px) {
    .hero-status { gap: 10px; margin-bottom: 22px; }
    .hero-status-label { font-size: 10.5px; letter-spacing: 0.14em; }
    .hero-status-value { font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-status-dot { animation: none !important; }
}


/* ════════════════════════════════════════════════════════════════════════
   PATCH v10 — Nouvelle alternance light/dark + fix portfolio layout
   - Why+Fit (Garanties)   : DARK → LIGHT (blanc cassé)
   - Fit (Compatibilité)   : LIGHT → DARK (navy-deep)
   - FAQ                   : DARK → LIGHT
   - Portfolio             : grid 3 cols → horizontal zigzag 50/50
   ════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────  WHY+FIT en LIGHT (garanties)  ───────────────────── */
.section-why {
    background: #F7F8FC !important;
    color: var(--navy) !important;
    padding-top: var(--section-py) !important;
    padding-bottom: var(--section-py) !important;
}
.section-why::before,
.section-why::after { display: none !important; }

.section-why .section-tag {
    background: rgba(6,182,212,0.08) !important;
    color: var(--cyan-deep) !important;
    border: 1px solid rgba(6,182,212,0.25) !important;
    box-shadow: 0 0 16px rgba(6,182,212,0.06);
}
.wf-head h2 { color: var(--navy) !important; }
.wf-head h2 .text-accent {
    background: linear-gradient(135deg, var(--cyan-deep) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    text-shadow: none !important;
}
.wf-head p { color: rgba(19, 39, 96, 0.65) !important; }

/* Items en mode light : séparateur en navy 8% au lieu de blanc */
.wf-item {
    border-top: 1px solid rgba(19, 39, 96, 0.10) !important;
}
.wf-item:hover {
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.04), transparent) !important;
    border-top-color: rgba(6, 182, 212, 0.30) !important;
}

/* Numéro cyan-deep pour rester lisible sur fond clair */
.wf-num {
    color: var(--cyan-deep) !important;
    -webkit-text-fill-color: var(--cyan-deep) !important;
    text-shadow: 0 0 18px rgba(6, 182, 212, 0.20) !important;
}

/* Fear en navy 50% italic, promise en navy 100% bold */
.wf-fear { color: rgba(19, 39, 96, 0.55) !important; }
.wf-promise { color: var(--navy) !important; }
.wf-body p { color: rgba(19, 39, 96, 0.72) !important; }

/* Flèche cyan-deep */
.wf-item::after {
    color: var(--cyan-deep) !important;
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.30) !important;
}

.wf-cta-note { color: rgba(19, 39, 96, 0.55) !important; }

/* ─────────────────────  FIT (Compatibilité) en DARK  ───────────────────── */
.section-fit {
    background: var(--navy-deep) !important;
    color: var(--white) !important;
}
.section-fit::before {
    background: radial-gradient(circle, rgba(6,182,212,0.18), transparent 60%) !important;
}
.section-fit::after {
    background: radial-gradient(circle, rgba(103,232,249,0.12), transparent 60%) !important;
}

.section-fit .section-tag {
    background: rgba(6,182,212,0.10) !important;
    color: var(--cyan-soft) !important;
    border: 1px solid rgba(6,182,212,0.25) !important;
}
.fit-head h2 { color: var(--white) !important; }
.fit-head h2 .text-accent {
    background: linear-gradient(135deg, var(--cyan-bright) 0%, var(--cyan-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}

.fit-col {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25) !important;
}
.fit-col:hover {
    border-color: rgba(6, 182, 212, 0.30) !important;
    box-shadow: 0 24px 60px rgba(6, 182, 212, 0.15) !important;
}
.fit-col--yes { border-color: rgba(6, 182, 212, 0.30) !important; }

.fit-col-head { border-bottom-color: rgba(255, 255, 255, 0.08) !important; }
.fit-icon--yes {
    background: rgba(6, 182, 212, 0.15) !important;
    color: var(--cyan-bright) !important;
    border: 1px solid rgba(6, 182, 212, 0.4) !important;
}
.fit-icon--no {
    background: rgba(239, 68, 68, 0.12) !important;
    color: #F87171 !important;
    border: 1px solid rgba(239, 68, 68, 0.30) !important;
}
.fit-col-label { color: var(--white) !important; }
.fit-list li { color: rgba(255, 255, 255, 0.78) !important; }
.fit-list li::before {
    background: var(--cyan-bright) !important;
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.5) !important;
}
.fit-list--no li {
    color: rgba(255, 255, 255, 0.45) !important;
}

/* ─────────────────────  FAQ en LIGHT  ───────────────────── */
.section-faq {
    background: #F7F8FC !important;
    color: var(--navy) !important;
}
.section-faq::before { display: none !important; }

.section-faq .section-tag {
    background: rgba(6,182,212,0.08) !important;
    color: var(--cyan-deep) !important;
    border: 1px solid rgba(6,182,212,0.25) !important;
}
.faq-head h2 { color: var(--navy) !important; }
.faq-head h2 .text-accent {
    background: linear-gradient(135deg, var(--cyan-deep) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    text-shadow: none !important;
}
.faq-head p { color: rgba(19, 39, 96, 0.65) !important; }

.faq-item {
    background: var(--white) !important;
    border: 1px solid var(--bleu-pale) !important;
    box-shadow: 0 4px 16px rgba(19, 39, 96, 0.04) !important;
}
.faq-item:hover {
    border-color: rgba(6, 182, 212, 0.30) !important;
    box-shadow: 0 8px 28px rgba(6, 182, 212, 0.08) !important;
}
.faq-item.active {
    border-color: rgba(6, 182, 212, 0.45) !important;
    background: rgba(6, 182, 212, 0.03) !important;
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.10) !important;
}
.faq-q { color: var(--navy) !important; }
.faq-icon {
    background: rgba(6, 182, 212, 0.10) !important;
    border: 1px solid rgba(6, 182, 212, 0.25) !important;
    color: var(--cyan-deep) !important;
}
.faq-a p { color: rgba(19, 39, 96, 0.72) !important; }

.faq-more {
    background: var(--white) !important;
    border: 1px solid rgba(6, 182, 212, 0.30) !important;
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.10) !important;
}
.faq-more-text { color: var(--navy) !important; }
.faq-more-text strong { color: var(--cyan-deep) !important; }

.section-faq .btn-ghost-dark {
    background: transparent !important;
    color: var(--navy) !important;
    border: 1.5px solid var(--navy) !important;
}
.section-faq .btn-ghost-dark:hover {
    background: var(--navy) !important;
    color: var(--white) !important;
    border-color: var(--navy) !important;
}

/* ════════════════════════════════════════════════════════════════════════
   PATCH v11 — Fix layout Why+Fit (arrow désalignée)
   Restructure : ligne 1 = numéro/fear/arrow/promise alignés ; ligne 2 = description full-width
   ════════════════════════════════════════════════════════════════════════ */

.wf-item {
    display: grid !important;
    grid-template-columns: 60px minmax(0, 1fr) 56px minmax(0, 1.3fr) !important;
    grid-template-rows: auto auto !important;
    gap: 18px 32px !important;
    padding: 48px 0 !important;
    align-items: start !important;
}

/* Numéro : occupe la ligne 1, centré verticalement sur fear/promise */
.wf-num {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-self: start !important;
}

/* wf-body en display: contents (ses enfants deviennent grid items) */
.wf-body {
    display: contents !important;
}

/* Fear : ligne 1, colonne 2 */
.wf-fear {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: center !important;
    margin: 0 !important;
}

/* Arrow : ligne 1, colonne 3, parfaitement aligné avec fear et promise */
.wf-item::after {
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-self: center !important;
}

/* Promise : ligne 1, colonne 4 */
.wf-promise {
    grid-column: 4 !important;
    grid-row: 1 !important;
    align-self: center !important;
    margin: 0 !important;
}

/* Description : ligne 2, étalée sur les colonnes 2 à 4 (sous fear→arrow→promise) */
.wf-body p {
    grid-column: 2 / 5 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    padding-left: 0 !important;
    max-width: 900px;
}

/* Tablette : layout 1 col (déjà géré, on confirme) */
@media (max-width: 1000px) {
    .wf-item {
        grid-template-columns: 48px 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 12px 24px !important;
    }
    .wf-num {
        grid-row: 1 / 4 !important;
        align-self: start !important;
    }
    .wf-fear { grid-column: 2 !important; grid-row: 1 !important; }
    .wf-promise { grid-column: 2 !important; grid-row: 2 !important; }
    .wf-body p { grid-column: 2 !important; grid-row: 3 !important; }
    .wf-item::after { display: none !important; }
}

@media (max-width: 600px) {
    .wf-item {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .wf-num {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
    .wf-fear { grid-column: 1 !important; grid-row: 2 !important; }
    .wf-promise { grid-column: 1 !important; grid-row: 3 !important; }
    .wf-body p { grid-column: 1 !important; grid-row: 4 !important; }
}


/* ════════════════════════════════════════════════════════════════════════
   PATCH v12 — Hero glass + Why+Fit vertical clear + témoignage left + form placeholders
   ════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────  HERO BADGE GLASS (remplace tout)  ───────────────────── */
.hero-status,
.hero-badge,
.hero-badge--white { display: none !important; }

.hero-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    margin: 0 0 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 32px rgba(0, 0, 0, 0.2);
}
.hero-glass::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan-bright);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.7);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .hero-glass { font-size: 12px; padding: 8px 14px; margin-bottom: 22px; }
}

/* Sub : forcer 2 lignes confortables */
.hero-sub br { display: inline; }
@media (max-width: 600px) {
    .hero-sub br { display: none; }
}

/* ─────────────────────  WHY+FIT : refonte hiérarchie verticale  ───────────────────── */
.wf-item {
    display: grid !important;
    grid-template-columns: 90px 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 14px 36px !important;
    padding: 44px 0 !important;
    align-items: start !important;
    border-top: 1px solid rgba(19, 39, 96, 0.10) !important;
}
.wf-item:hover {
    background: rgba(6, 182, 212, 0.02) !important;
    border-top-color: rgba(6, 182, 212, 0.30) !important;
}

/* Plus de flèche centrale */
.wf-item::after { display: none !important; }

/* Numéro : occupe les 3 lignes, aligné en haut */
.wf-num {
    grid-column: 1 !important;
    grid-row: 1 / 4 !important;
    align-self: start !important;
    justify-self: start !important;
    font-size: 72px !important;
    line-height: 1 !important;
    margin-top: -8px;
    color: var(--cyan-deep) !important;
    -webkit-text-fill-color: var(--cyan-deep) !important;
    background: none !important;
    text-shadow: 0 0 18px rgba(6, 182, 212, 0.15) !important;
    font-weight: 800;
    letter-spacing: -0.04em;
}

/* Fear : ligne 1, italic en haut */
.wf-fear {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start !important;
    margin: 0 !important;
    color: rgba(19, 39, 96, 0.50) !important;
    font-style: italic;
    font-size: 16px !important;
    line-height: 1.4 !important;
}

/* Promise : ligne 2, bold dominant */
.wf-promise {
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: start !important;
    margin: 0 !important;
    color: var(--navy) !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.025em;
}

/* Description : ligne 3 */
.wf-body p {
    grid-column: 2 !important;
    grid-row: 3 !important;
    align-self: start !important;
    margin: 0 !important;
    color: rgba(19, 39, 96, 0.70) !important;
    font-size: 15.5px !important;
    line-height: 1.6 !important;
    max-width: 720px;
}

@media (max-width: 700px) {
    .wf-item {
        grid-template-columns: 60px 1fr !important;
        gap: 10px 20px !important;
        padding: 32px 0 !important;
    }
    .wf-num { font-size: 48px !important; }
    .wf-fear { font-size: 14.5px !important; }
    .wf-promise { font-size: 20px !important; }
    .wf-body p { font-size: 14.5px !important; }
}

@media (max-width: 480px) {
    .wf-item { grid-template-columns: 1fr !important; gap: 10px !important; }
    .wf-num { grid-row: 1 !important; font-size: 40px !important; }
    .wf-fear { grid-column: 1 !important; grid-row: 2 !important; }
    .wf-promise { grid-column: 1 !important; grid-row: 3 !important; }
    .wf-body p { grid-column: 1 !important; grid-row: 4 !important; }
}

/* ─────────────────────  TÉMOIGNAGE : alignement à gauche  ───────────────────── */
.testimonial-card {
    text-align: left !important;
    padding: 56px 56px !important;
}
.testimonial-quote-mark { margin-bottom: -8px !important; }
.testimonial-text { text-align: left !important; }
.testimonial-author {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center;
}

@media (max-width: 700px) {
    .testimonial-card { padding: 40px 28px !important; }
}

/* ─────────────────────  FORM PLACEHOLDERS plus visibles  ───────────────────── */
.cta-form-group input::placeholder,
.cta-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.55) !important;
    opacity: 1;
}
.cta-form-group input,
.cta-form-group textarea {
    color: var(--white) !important;
    font-size: 15px !important;
}
.cta-form-group input:-webkit-autofill,
.cta-form-group input:-webkit-autofill:hover,
.cta-form-group input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--white) !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(6,182,212,0.06) inset !important;
    caret-color: var(--white) !important;
}


/* ════════════════════════════════════════════════════════════════════════
   PORTFOLIO — Layout consolidé (clean slate 2026-05-19)
   1 card par row, image gauche + texte droite (desktop)
   Stack vertical (tablette + mobile)
   ════════════════════════════════════════════════════════════════════════ */

.pf-head {
    max-width: 760px;
    margin: 0 0 56px;
    text-align: left;
}
.pf-head h2 { margin: 18px 0 14px; }
.section-portfolio .pf-intro {
    font-size: var(--text-lead);
    color: rgba(19, 39, 96, 0.65);
    line-height: 1.6;
    margin: 0;
    max-width: 620px;
}

.pf-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0;
}

.pf-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    background: var(--white);
    border: 1px solid var(--bleu-pale);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(19, 39, 96, 0.06);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    min-height: 460px;
}
.pf-card:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}
.pf-card:nth-child(even) .pf-visual {
    order: 2;
}
.pf-card:nth-child(even) .pf-body {
    order: 1;
}
.pf-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.40);
    box-shadow: 0 32px 64px rgba(6, 182, 212, 0.15), 0 16px 32px rgba(19, 39, 96, 0.08), 0 0 0 1px rgba(6, 182, 212, 0.10);
}

.pf-visual {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.06), rgba(19, 39, 96, 0.04));
    overflow: hidden;
    position: relative;
    display: block;
}
.pf-visual picture,
.pf-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.pf-visual img {
    transition: transform 0.6s var(--ease);
}
.pf-card:hover .pf-visual img { transform: scale(1.03); }

.pf-body {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    min-width: 0;
}

.pf-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
}
.pf-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
}
.pf-chip--cat {
    background: rgba(19, 39, 96, 0.06);
    color: var(--navy);
    border: 1px solid rgba(19, 39, 96, 0.10);
}
.pf-chip--live {
    background: rgba(34, 197, 94, 0.10);
    color: #15803D;
    border: 1px solid rgba(34, 197, 94, 0.25);
}
.pf-chip--live::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
    animation: pulsePartner 2.4s ease-in-out infinite;
}
.pf-chip--partner {
    background: rgba(245, 166, 35, 0.10);
    color: #B6741A;
    border: 1px solid rgba(245, 166, 35, 0.30);
}

@keyframes pulsePartner {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.section-portfolio .pf-name {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--navy);
    margin: 0;
}
.pf-pitch {
    font-size: 16px;
    color: rgba(19, 39, 96, 0.72);
    line-height: 1.6;
    margin: 0;
    max-width: 56ch;
}

.pf-store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #000000;
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    margin-top: 4px;
    align-self: flex-start;
    transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}
.pf-store:hover {
    background: #111111;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.40);
}
.pf-store i { font-size: 22px; line-height: 1; }
.pf-store-text { display: flex; flex-direction: column; gap: 1px; line-height: 1.1; }
.pf-store-sub { font-size: 10px; font-weight: 500; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.08em; }
.pf-store-name { font-size: 14px; font-weight: 800; letter-spacing: 0.01em; }

.pf-soon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(245, 166, 35, 0.10);
    color: #B6741A;
    border: 1px solid rgba(245, 166, 35, 0.30);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-top: 4px;
    align-self: flex-start;
}
.pf-soon i { font-size: 12px; }

/* ───────── Tablette ≤1024px : stack image en haut, body en bas ───────── */
@media (max-width: 1024px) {
    .pf-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .pf-card:nth-child(even) .pf-visual,
    .pf-card:nth-child(even) .pf-body {
        order: 0;
    }
    .pf-visual {
        aspect-ratio: 3 / 2;
        max-height: 520px;
    }
    .pf-body {
        padding: 32px 36px 36px;
        gap: 14px;
    }
    .section-portfolio .pf-name { font-size: 28px; }
    .pf-pitch { font-size: 15.5px; }
    .pf-grid { gap: 32px; }
    .pf-head { margin-bottom: 40px; }
}

/* ───────── Mobile ≤640px : padding réduit + chips plus compactes ───────── */
@media (max-width: 640px) {
    .pf-grid { gap: 24px; }
    .pf-card { border-radius: 18px; }
    .pf-visual {
        aspect-ratio: 5 / 4;
        max-height: none;
    }
    .pf-body {
        padding: 24px 22px 28px;
        gap: 12px;
    }
    .pf-meta { gap: 6px; }
    .pf-chip { font-size: 10.5px; padding: 4px 9px; }
    .section-portfolio .pf-name { font-size: 24px; }
    .pf-pitch { font-size: 14.5px; line-height: 1.55; }
    .pf-store { padding: 11px 16px; }
    .pf-store i { font-size: 18px; }
    .pf-store-sub { font-size: 9px; }
    .pf-store-name { font-size: 13px; }
    .pf-soon { padding: 10px 14px; font-size: 12.5px; }
    .pf-head { margin-bottom: 32px; }
    .section-portfolio .pf-intro { font-size: 15px; }
}

/* ───────── Reduce motion ───────── */
@media (prefers-reduced-motion: reduce) {
    .pf-card,
    .pf-card:hover,
    .pf-visual img,
    .pf-chip--live::before,
    .pf-store,
    .pf-store:hover {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
}

