/* ═══════════════════════════════════════════════════════════════════
   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: #F5A623;
    --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(245, 166, 35, 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(245,166,35,0.35);
    border-radius: var(--r-full);
    background: rgba(245,166,35,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(245, 166, 35, 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(245,166,35,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(245, 166, 35, 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(245, 166, 35, 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(245, 166, 35, 0.6), rgba(245, 166, 35, 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(245, 166, 35, 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(245, 166, 35, 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(245, 166, 35, 0.12), rgba(245, 166, 35, 0.04));
    border: 1px solid rgba(245, 166, 35, 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(245, 166, 35, 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(245, 166, 35, 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(245, 166, 35, 0.08); border-color: rgba(245, 166, 35, 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 ══════════ */
.section-portfolio { background: var(--white); padding: var(--section-py) 0; }
.pf-head { max-width: 720px; margin-bottom: 52px; }
.pf-head h2 { margin-bottom: 18px; }
.pf-head p { font-size: var(--text-lead); color: rgba(19,39,96,0.65); line-height: 1.65; max-width: 620px; }

.pf-card {
    background: var(--white);
    border: 1px solid var(--bleu-pale);
    border-radius: var(--r-lg);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    margin-bottom: var(--lg);
    overflow: hidden;
    box-shadow: var(--sh-card);
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast);
}
.pf-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-card-hover);
    border-color: rgba(245, 166, 35, 0.3);
}

.pf-visual {
    background: var(--blanc-casse);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    max-height: 540px;
}
.pf-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.pf-card:hover .pf-visual img { transform: scale(1.03); }

.pf-body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.pf-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.pf-chip { display: inline-flex; padding: 4px 10px; border-radius: var(--r-full); font-size: 11px; font-weight: 700; }
.pf-chip--cat { background: rgba(19,39,96,0.06); color: var(--navy); }
.pf-chip--live { background: rgba(34,197,94,0.12); color: #16A34A; display: inline-flex; align-items: center; gap: 6px; }
.pf-chip--live::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.pf-chip--partner { background: rgba(245,166,35,0.12); color: #C17A00; border: 1px solid rgba(245,166,35,0.3); }

.pf-name { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 10px; line-height: 1.1; }
.pf-pitch { font-size: var(--text-body); color: rgba(19,39,96,0.7); line-height: 1.65; margin-bottom: 18px; }

.pf-retention-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; color: var(--orange); margin-bottom: 8px; }
.pf-retention-list { margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; }
.pf-retention-list li { font-size: 13.5px; color: rgba(19,39,96,0.7); padding-left: 18px; position: relative; line-height: 1.5; }
.pf-retention-list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }

.pf-testimonial {
    padding: 18px 20px; background: rgba(245,166,35,0.06);
    border-left: 3px solid var(--orange); border-radius: 0 var(--r-md) var(--r-md) 0;
    margin-bottom: 18px; font-size: 13.5px; color: rgba(19,39,96,0.75);
    line-height: 1.6; font-style: italic;
}
.pf-testimonial-author { display: block; font-style: normal; font-weight: 700; font-size: 12px; color: var(--navy); margin-top: 8px; }
.pf-testimonial--placeholder { opacity: 0.7; background: rgba(19,39,96,0.04); border-left-color: rgba(19,39,96,0.2); }

.pf-store {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px; background: var(--navy); color: var(--white);
    border-radius: var(--r-md); font-size: 12px; font-weight: 700;
    margin-top: auto;
    width: fit-content;
    transition: background var(--dur-fast);
}
.pf-store:hover { background: #0D1B42; }
.pf-store i { font-size: 18px; }
.pf-store-sub { display: block; font-size: 9px; font-weight: 500; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.06em; }
.pf-store-name { display: block; font-size: 13px; font-weight: 800; }

.pf-status-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; font-size: 12px; color: rgba(19,39,96,0.55);
    border: 1px dashed rgba(19,39,96,0.2); border-radius: var(--r-md);
    font-weight: 600; margin-top: auto; width: fit-content;
}

@media (max-width: 860px) {
    .pf-card { grid-template-columns: 1fr; }
    .pf-visual { padding: 24px; max-height: none; }
    .pf-body { padding: 32px 28px; }
}

/* ══════════ 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(245, 166, 35, 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(245,166,35,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(245,166,35,0.10); border: 1px solid rgba(245,166,35,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-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(245, 166, 35, 0.4); box-shadow: var(--sh-card); }
.faq-item.active {
    background: var(--white);
    border-color: rgba(245, 166, 35, 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(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 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(245, 166, 35, 0.12); border: 1px solid rgba(245, 166, 35, 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(245,166,35,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(245,166,35,0.12); border-color: rgba(245,166,35,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(245,166,35,0.12); color: var(--orange);
    border: 1px solid rgba(245,166,35,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(245,166,35,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(245, 166, 35, 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(245, 166, 35, 0.12);
    border-color: rgba(245, 166, 35, 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(245, 166, 35, 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(245, 166, 35, 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(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 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(245, 166, 35, 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(245, 166, 35, 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(245, 166, 35, 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; }
}
