/* ============================================
   Flowizy — site vitrine
   Style : éditorial premium, ancré dans le métier print
   ============================================ */

/* View Transitions API (Chromium 126+ — silencieux ailleurs) */
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.4s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

:root {
    --navy-900: #0A1430;
    --navy-800: #15233F;
    --navy-700: #2A3B66;
    --navy-500: #5A6B91;
    --navy-300: #A8B2C8;
    --navy-100: #E6EAF2;
    --navy-50: #F4F6FB;

    --orange-500: #D88B3F;
    --orange-400: #E5A35E;
    --orange-100: #F8EBD8;

    --cream-100: #F8F3E9;
    --cream-50: #FCF9F3;

    --white: #FFFFFF;
    --bg: #FAFAF6;
    --bg-soft: #F2F0EA;

    --text: #0A1430;
    --text-soft: #4A567A;
    --text-mute: #7A86A3;

    --border: rgba(10, 20, 48, 0.08);
    --border-strong: rgba(10, 20, 48, 0.14);
    --hairline: rgba(10, 20, 48, 0.06);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 2px rgba(15, 26, 51, 0.04), 0 1px 3px rgba(15, 26, 51, 0.06);
    --shadow: 0 4px 12px rgba(15, 26, 51, 0.06), 0 2px 4px rgba(15, 26, 51, 0.04);
    --shadow-lg: 0 24px 48px -12px rgba(15, 26, 51, 0.12), 0 8px 20px rgba(15, 26, 51, 0.06);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;

    --container: 1180px;
    --gutter: 24px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
    position: relative;
}

/* Grain papier subtil (clin d'œil au métier print) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Sélection : accent print */
::selection {
    background: var(--orange-500);
    color: var(--white);
}
::-moz-selection {
    background: var(--orange-500);
    color: var(--white);
}

/* Focus rings raffinés */
:focus { outline: none; }
:focus-visible {
    outline: 2px solid var(--orange-500);
    outline-offset: 3px;
    border-radius: 4px;
    transition: outline-offset 0.15s ease;
}
.btn:focus-visible { outline-offset: 4px; }

/* Chiffres tabulaires pour les stats / prix */
.tabular,
.pricing-price span,
.option-price,
.founder-stat strong { font-variant-numeric: tabular-nums; }

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    margin: 0;
    line-height: 1.05;
    text-wrap: balance;
}
em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--navy-700);
    letter-spacing: -0.005em;
    font-size: 1.04em;
}

/* Em dans les titres : accent couleur orange (registre tech-confident) */
h1 em, h2 em, h3 em, h4 em,
.hero-title em, .section-title em, .cta-title em, .founder-title em, .footer-cta-title em {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: inherit;
    font-size: 1em;
    letter-spacing: inherit;
    color: var(--orange-500);
}

p { text-wrap: pretty; }

/* ===== Buttons ===== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    isolation: isolate;
}
.btn-lg {
    padding: 14px 24px;
    font-size: 15px;
    border-radius: 12px;
}
.btn-primary {
    background: var(--navy-800);
    color: var(--white);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, var(--shadow-sm);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--navy-900) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.btn-primary:hover {
    box-shadow: var(--shadow);
}
.btn-primary:hover::before { opacity: 1; }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-ghost:hover {
    background: var(--white);
    border-color: var(--navy-700);
}

/* Flèche animée dans les boutons */
.btn .arrow {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-sans);
    line-height: 1;
}
.btn:hover .arrow { transform: translateX(4px); }
.btn:hover .arrow.down { transform: translateY(2px); }

/* Lien avec soulignement qui se dessine */
.link-anim {
    position: relative;
    display: inline-block;
    color: var(--text);
}
.link-anim::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.link-anim:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

/* (drop caps retirées — trop ornemental pour un SaaS B2B) */

/* ===== Header ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 251, 252, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
    gap: 24px;
}
.logo img {
    height: 56px;
    width: auto;
    display: block;
}
.nav-desktop {
    display: flex;
    gap: 28px;
    flex: 1;
    justify-content: center;
}
.nav-desktop a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    transition: color 0.15s ease;
}
.nav-desktop a:hover { color: var(--text); }
.header-actions { display: flex; gap: 12px; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}
.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    border-top: 1px solid var(--border);
}
.nav-mobile a:not(.btn) {
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
}
.nav-mobile a.btn { align-self: flex-start; }

.nav-desktop a.current,
.nav-mobile a.current {
    color: var(--text);
    font-weight: 600;
}
.nav-desktop a.current { position: relative; }
.nav-desktop a.current::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -28px;
    height: 2px;
    background: var(--orange-500);
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 154, 60, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(27, 42, 78, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-soft);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}
.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(232, 154, 60, 0.2);
}

.hero-title {
    font-size: clamp(48px, 7.5vw, 92px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.98;
    max-width: 1000px;
    margin: 0 0 28px;
}
.hero-sub {
    font-size: clamp(18px, 1.4vw, 22px);
    line-height: 1.5;
    color: var(--text-soft);
    max-width: 680px;
    margin: 0 0 40px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}
.meta-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.meta-item span {
    font-size: 14px;
    color: var(--text-mute);
    line-height: 1.5;
}

/* ===== Trust strip (compatibilité + garanties) ===== */
.logos-strip {
    padding: 48px 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    background: var(--bg-soft);
}
.strip-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin: 0 0 24px;
}
.strip-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 36px;
    margin-bottom: 32px;
}
.strip-items span {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-soft);
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}
.strip-items span:hover { color: var(--text); }

.trust-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding-top: 28px;
    border-top: 1px solid var(--hairline);
}
.trust-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-mute);
    line-height: 1.4;
    border-right: 1px solid var(--hairline);
}
.trust-list span:last-child { border-right: none; }
.trust-list span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange-500);
    flex-shrink: 0;
}

/* ===== Section heads ===== */
section { padding: 100px 0; }

.section-head {
    max-width: 880px;
    margin: 0 0 72px;
}
.section-mark {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}
.section-mark-num {
    font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-mute);
    letter-spacing: 0.04em;
    line-height: 1;
    flex-shrink: 0;
}
.section-mark-rule {
    width: 24px;
    height: 1px;
    background: var(--border-strong);
    flex-shrink: 0;
}
.section-mark-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-500);
}
.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-500);
    margin: 0 0 20px;
}
.section-eyebrow.light { color: var(--orange-400); }
.section-title {
    font-size: clamp(36px, 5vw, 58px);
    letter-spacing: -0.035em;
    line-height: 1.02;
    text-wrap: balance;
}
.section-sub {
    font-size: clamp(17px, 1.3vw, 19px);
    line-height: 1.5;
    color: var(--text-soft);
    margin: 24px 0 0;
    max-width: 620px;
    text-wrap: pretty;
}

/* ===== Piliers ===== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pillar {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pillar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
}
.pillar-featured {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
}
.pillar-featured h3, .pillar-featured .pillar-num { color: var(--white); }
.pillar-featured p { color: rgba(255, 255, 255, 0.75); }
.pillar-featured .pillar-list li { color: rgba(255, 255, 255, 0.85); border-color: rgba(255, 255, 255, 0.1); }
.pillar-featured .pillar-list li::before { background: var(--orange-400); }

.pillar-num {
    font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    color: var(--orange-500);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.pillar h3 {
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.pillar p {
    font-size: 15px;
    color: var(--text-soft);
    margin: 0 0 24px;
    line-height: 1.6;
}
.pillar-featured p { color: rgba(255, 255, 255, 0.82); }
.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border);
}
.pillar-list li {
    position: relative;
    padding: 12px 0 12px 22px;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.pillar-list li:last-child { border-bottom: none; }
.pillar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange-500);
}

/* ===== Quote block ===== */
.quote-block {
    padding: 120px 0;
    background: var(--cream-50);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}
.quote-text {
    font-family: var(--font-sans);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    max-width: 960px;
    margin: 0 auto 32px;
    text-align: center;
    letter-spacing: -0.03em;
    text-wrap: balance;
}
.quote-text em {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 700;
    font-size: 1em;
    letter-spacing: inherit;
    color: var(--orange-500);
}
.quote-attr {
    text-align: center;
    font-size: 13px;
    color: var(--text-mute);
    margin: 0 auto;
    max-width: 600px;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

/* ===== Tarifs ===== */
.tarif-sub-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-mute);
    margin: 56px 0 24px;
}
.tarif-sub-title:first-of-type { margin-top: 0; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.pricing-card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.pricing-card:hover {
    border-color: var(--navy-300);
    transform: translateY(-2px);
}
.pricing-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange-500);
    background: var(--orange-100);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}
.pricing-price {
    font-size: 14px;
    color: var(--text-mute);
    margin-bottom: 8px;
}
.pricing-price span {
    font-size: 34px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.025em;
}
.pricing-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px;
}
.pricing-desc {
    font-size: 13px;
    color: var(--text-mute);
    line-height: 1.5;
    margin: 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.option-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.option-card.option-highlight {
    background: linear-gradient(135deg, #FFF8EE 0%, #FFFFFF 100%);
    border-color: var(--orange-400);
}
.option-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--navy-800);
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}
.option-price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mute);
}
.option-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
}
.option-card p {
    font-size: 14px;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.55;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 4px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    letter-spacing: -0.01em;
    transition: color 0.15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--navy-800); }

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    position: relative;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--text-mute);
    top: 50%;
    left: 50%;
    transition: transform 0.25s ease;
}
.faq-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-body {
    padding: 0 4px 24px;
    max-width: 700px;
}
.faq-body p {
    margin: 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
}

/* ===== CTA ===== */
.cta { padding: 60px 0 120px; }
.cta-card {
    position: relative;
    padding: 80px 40px;
    background: var(--navy-900);
    border-radius: var(--radius-xl);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 154, 60, 0.25) 0%, transparent 70%);
    pointer-events: none;
}
.cta-card::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 154, 60, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }

.cta-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
    margin: 0 0 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    max-width: 580px;
    margin: 0 auto 36px;
}
.cta-form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.cta-form input {
    flex: 1;
    min-width: 220px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.cta-form input:focus {
    outline: none;
    border-color: var(--orange-400);
    background: rgba(255, 255, 255, 0.1);
}
.cta-form button {
    background: var(--orange-500);
    color: var(--white);
    border: none;
}
.cta-form button:hover { background: var(--orange-400); }
.cta-form button:disabled { background: rgba(255, 255, 255, 0.15); cursor: default; }
.cta-fineprint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ===== Footer raffiné ===== */
.site-footer {
    border-top: 1px solid var(--hairline);
    padding: 0 0 32px;
    background: var(--white);
}

/* Newsletter block */
.footer-cta {
    padding: 96px 0;
    border-bottom: 1px solid var(--hairline);
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}
.footer-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(216, 139, 63, 0.12) 0%, transparent 65%);
    pointer-events: none;
}
.footer-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.footer-cta-eyebrow {
    font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-500);
    margin: 0 0 20px;
}
.footer-cta-title {
    font-size: clamp(30px, 3.5vw, 44px);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0 0 20px;
}
.footer-cta-sub {
    font-size: 16px;
    color: var(--text-soft);
    margin: 0 0 36px;
    line-height: 1.55;
}
.newsletter {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.newsletter input {
    flex: 1;
    min-width: 240px;
    padding: 14px 18px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: var(--white);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.newsletter input::placeholder {
    color: var(--text-mute);
}
.newsletter input:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(216, 139, 63, 0.15);
}
.newsletter button {
    background: var(--navy-800);
    color: var(--white);
    border: none;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.newsletter button:hover { background: var(--navy-900); }
.newsletter button .arrow {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.newsletter button:hover .arrow { transform: translateX(4px); }
.newsletter-fineprint {
    margin: 20px 0 0;
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.02em;
}

.footer-inner {
    padding-top: 72px;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 64px;
    margin-bottom: 56px;
}
.footer-logo { height: 48px; width: auto; margin-bottom: 18px; display: block; }
.footer-brand p {
    font-size: 14px;
    color: var(--text-soft);
    max-width: 280px;
    margin: 0 0 20px;
    line-height: 1.5;
}
.footer-brand .footer-meta {
    font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h5 {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-mute);
    margin: 0 0 18px;
}
.footer-col a {
    display: block;
    position: relative;
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 12px;
    transition: color 0.2s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding-right: 14px;
}
.footer-col a::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--orange-500);
}
.footer-col a:hover {
    color: var(--text);
}
.footer-col a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.carousel-hint { display: none; }

/* ===== Opt-out dialog (Matomo) ===== */
.optout-trigger {
    appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--orange-500);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}
.optout-trigger:hover { color: var(--navy-800); }

.optout-dialog {
    border: none;
    padding: 0;
    background: transparent;
    max-width: min(400px, calc(100vw - 32px));
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.optout-dialog::backdrop {
    background: rgba(10, 20, 48, 0.55);
    backdrop-filter: blur(4px);
}
.optout-dialog-inner {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px 22px;
}
.optout-dialog-inner h3 {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.01em;
    padding-right: 28px;
}
.optout-text {
    margin: 0 0 20px;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.55;
}
.optout-actions {
    display: flex;
    gap: 10px;
}
.optout-actions .btn { flex: 1; justify-content: center; padding: 12px 14px; }
.optout-status {
    margin: 14px 0 0;
    font-size: 13px;
    color: var(--orange-500);
    text-align: center;
}
.optout-close {
    position: absolute;
    top: 12px;
    right: 12px;
    appearance: none;
    background: transparent;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    color: var(--text-mute);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
.optout-close:hover { background: var(--bg-soft); color: var(--text); }
.optout-sync { display: none; }

/* ===== Legal pages (CGU / Confidentialité / Mentions) ===== */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 16px 0 100px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-soft);
}
.legal-content .legal-meta {
    margin: 0 0 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    color: var(--text-mute);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.legal-content h2 {
    font-size: 22px;
    color: var(--text);
    letter-spacing: -0.02em;
    margin: 48px 0 16px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
    font-size: 16px;
    color: var(--text);
    margin: 28px 0 12px;
    letter-spacing: -0.01em;
}
.legal-content p,
.legal-content ul,
.legal-content ol { margin: 0 0 16px; }
.legal-content ul,
.legal-content ol { padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a {
    color: var(--orange-500);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--navy-800); }
.legal-content strong { color: var(--text); font-weight: 600; }
.legal-content .legal-block {
    margin: 0 0 16px;
    padding: 20px 24px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
}
.legal-content .legal-block p:last-child { margin-bottom: 0; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--hairline);
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--text-mute);
    margin: 0;
}
.footer-bottom .disclaimer {
    font-size: 12px;
    max-width: 480px;
    text-align: right;
    color: var(--text-mute);
}

/* ===== Page hero (inner pages) ===== */
.page-hero {
    position: relative;
    padding: 96px 0 64px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 154, 60, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-eyebrow { margin-bottom: 20px; }
.page-hero h1 {
    font-size: clamp(40px, 5.5vw, 60px);
    letter-spacing: -0.035em;
    line-height: 1.05;
    max-width: 820px;
    margin: 0 0 24px;
}
.page-hero .lede {
    font-size: clamp(17px, 1.4vw, 19px);
    line-height: 1.55;
    color: var(--text-soft);
    max-width: 620px;
    margin: 0;
}

/* ===== Steps (Comment ça marche) ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    counter-reset: step;
}
.step-card {
    position: relative;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    counter-increment: step;
}
.step-card::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    color: var(--orange-500);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.step-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.step-card p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.55;
    margin: 0;
}

/* ===== Integrations grid ===== */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.integration-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.integration-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}
.integration-card p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0;
}
.integration-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--navy-50);
    color: var(--navy-700);
    margin-bottom: 16px;
}

/* ===== Personas ===== */
.personas-list {
    display: grid;
    gap: 20px;
}
.persona-card {
    position: relative;
    display: block;
    padding: 48px 40px 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: var(--navy-900);
    opacity: 0.9;
}
.persona-card .persona-num {
    display: inline-block;
    margin-bottom: 18px;
    padding-top: 0;
}
.persona-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.persona-card.priority {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
}
.persona-card.priority h3,
.persona-card.priority .persona-num { color: var(--white); }
.persona-card.priority > .persona-content > p { color: rgba(255, 255, 255, 0.92); }
.persona-card.priority .persona-tag { color: rgba(255, 255, 255, 0.85); }
.persona-card.priority .persona-detail { border-color: rgba(255, 255, 255, 0.18); }
.persona-card.priority .persona-detail strong { color: var(--white); }
.persona-card.priority .persona-detail span { color: rgba(255, 255, 255, 0.85); }
.persona-card.priority::before { background: rgba(255, 255, 255, 0.6); }

.persona-num {
    font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--orange-500);
    letter-spacing: 0.06em;
    padding-top: 12px;
}
.persona-content { min-width: 0; }
.persona-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 8px;
}
.persona-card h3 {
    font-size: 24px;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}
.persona-card > .persona-content > p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0 0 20px;
}
.persona-detail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.persona-detail strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}
.persona-detail span {
    font-size: 13px;
    color: var(--text-mute);
    line-height: 1.5;
}

/* ===== Contact page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: flex-start;
}
.contact-info h3 {
    font-size: 22px;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.contact-info p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.6;
    margin: 0 0 32px;
}
.contact-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-bullets li {
    position: relative;
    padding: 14px 0 14px 28px;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}
.contact-bullets li:last-child { border-bottom: none; }
.contact-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--orange-100);
    border: 2px solid var(--orange-500);
}
.contact-bullets strong { font-weight: 600; }

.contact-form-wrap {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
    font-size: 20px;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.contact-form-wrap .form-sub {
    font-size: 14px;
    color: var(--text-mute);
    margin: 0 0 28px;
}
.contact-form {
    display: grid;
    gap: 18px;
}
.field { display: grid; gap: 8px; }
.field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: var(--bg);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.field textarea {
    min-height: 110px;
    resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 154, 60, 0.15);
}
.contact-form button { margin-top: 8px; justify-self: flex-start; }

/* ===== Figure placeholders (style éditorial) ===== */
.figure {
    margin: 0;
    display: flex;
    flex-direction: column;
}
.figure-frame {
    position: relative;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(216, 139, 63, 0.07), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(10, 20, 48, 0.06), transparent 55%),
        linear-gradient(155deg, var(--cream-100) 0%, #E8E9EE 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(10, 20, 48, 0.04);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.figure-frame::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius) - 1px);
    background-image:
        linear-gradient(rgba(10, 20, 48, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 20, 48, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: -1px -1px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.figure-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    padding: 4px 9px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
    font-style: normal;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-soft);
    line-height: 1;
    letter-spacing: 0.04em;
    box-shadow: 0 1px 2px rgba(10, 20, 48, 0.04);
}
.figure-tag.compact {
    top: 8px;
    left: 8px;
    padding: 3px 7px;
    font-size: 10px;
}
.figure-caption {
    margin-top: 14px;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 13px;
    color: var(--text-mute);
    line-height: 1.5;
    letter-spacing: 0;
    max-width: 100%;
}

/* Variante avec illustration : masquer la grille */
.figure-frame.has-illustration::after { display: none; }
.figure-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}
img.figure-illustration {
    object-fit: contain;
    padding: 2px;
}
.figure-illustration text {
    font-family: 'Inter', sans-serif;
}

/* Variante sombre (sur fonds navy) */
.figure-frame.dark {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(216, 139, 63, 0.18), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, 0.04), transparent 55%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-color: rgba(255, 255, 255, 0.12);
}
.figure-frame.dark::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}
.figure-frame.dark .figure-tag {
    background: rgba(10, 20, 48, 0.6);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}
.figure-caption.light { color: rgba(255, 255, 255, 0.55); }

/* ===== Hero showcase (frame style) ===== */
.hero-showcase {
    margin-top: 88px;
    position: relative;
}
.showcase-frame {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.showcase-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}
.showcase-toolbar .dots { display: flex; gap: 6px; }
.showcase-toolbar .dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--navy-100);
}
.showcase-toolbar .url {
    flex: 1;
    max-width: 320px;
    padding: 5px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-mute);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    text-align: center;
}
.showcase-body {
    aspect-ratio: 16 / 9;
    border-radius: 0;
    border-width: 0;
}

/* ===== Pillar media slot ===== */
.pillar-media {
    aspect-ratio: 16 / 10;
    margin: -32px -32px 28px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-width: 0;
    border-bottom: 1px solid var(--border);
}
.pillar-featured .pillar-media {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* ===== Step icon ===== */
.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin-bottom: 24px;
    min-height: 52px;
}

/* ===== Integration logo ===== */
.integration-logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    margin-bottom: 24px;
    min-height: 72px;
}

/* ===== Page hero split (text + visual) ===== */
.page-hero-split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
}
.page-hero-split h1 { margin-bottom: 24px; }
.page-hero-visual {
    aspect-ratio: 5 / 4;
    border-radius: var(--radius-lg);
}

/* ===== Manifesto (statement sobre, registre tech-confident) ===== */
.manifesto {
    position: relative;
    padding: 140px 0;
    background: var(--bg);
}
.manifesto-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}
.manifesto-text {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.2;
    color: var(--navy-800);
    letter-spacing: -0.03em;
    margin: 0 0 18px;
    text-wrap: balance;
}
.manifesto-text + .manifesto-attr { margin-top: 16px; }
.manifesto-text em {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 700;
    color: var(--orange-500);
    font-size: 1em;
    letter-spacing: inherit;
}
.manifesto-attr {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-mute);
    text-transform: none;
}

/* ===== Founder feature (premium block) ===== */
.founder {
    position: relative;
    padding: 120px 0;
    background: var(--cream-50);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}
.founder-grid {
    max-width: 880px;
    margin: 0 auto;
}
.founder-grid .founder-body { max-width: 680px; }
.founder-portrait {
    aspect-ratio: 4 / 5;
    border-radius: 4px;
}
.founder-content .section-mark { margin-bottom: 32px; }
.founder-title {
    font-size: clamp(36px, 4.5vw, 56px);
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 32px;
}
.founder-title em { color: var(--orange-500); font-size: 1em; }
.founder-pullquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.4;
    color: var(--navy-700);
    margin: 0 0 36px;
    padding-left: 24px;
    border-left: 2px solid var(--orange-500);
    letter-spacing: -0.005em;
}
.founder-body {
    font-size: clamp(17px, 1.3vw, 19px);
    line-height: 1.55;
    color: var(--text-soft);
    margin: 0 0 48px;
    max-width: 760px;
}
.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--hairline);
}
.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 18px;
    padding-top: 32px;
    border-top: 1px solid var(--hairline);
    font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.founder-credentials span[aria-hidden="true"] {
    color: var(--border-strong);
    font-size: 13px;
}

/* Engagements / décisions de Flowizy */
.founder-commitments {
    margin-top: 8px;
    padding-top: 40px;
    border-top: 1px solid var(--hairline);
    display: grid;
    gap: 28px;
    max-width: 760px;
}
.commitment {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: baseline;
}
.commitment strong {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.015em;
    line-height: 1.3;
}
.commitment span {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.55;
}
.founder-stat strong {
    display: block;
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 700;
    font-size: clamp(36px, 3.5vw, 48px);
    line-height: 1;
    color: var(--navy-800);
    margin-bottom: 10px;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}
.founder-stat > span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mute);
    line-height: 1.4;
}

/* ===== Reveal on scroll ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Misc utilities ===== */
.center { text-align: center; }
.muted { color: var(--text-mute); }

/* Reduce CTA bottom padding inside contact page */
.contact-page .cta { padding-top: 40px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
    section { padding: 72px 0; }
    .hero { padding: 64px 0 56px; }
    .hero-meta { grid-template-columns: 1fr; gap: 18px; }
    .pillars-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .options-grid { grid-template-columns: 1fr; }
    .founder { padding: 80px 0; }
    .founder-grid { grid-template-columns: 1fr; gap: 48px; }
    .founder-portrait { max-width: 360px; }
    .founder-stats { grid-template-columns: 1fr; gap: 20px; }
    .manifesto { padding: 80px 0; }
    .footer-cta { padding: 64px 0; }
    .trust-list span { padding: 6px 14px; border-right: none; }
    .trust-list { gap: 6px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-bottom .disclaimer { text-align: left; }
}
@media (max-width: 720px) {
    .nav-desktop, .header-actions { display: none; }
    .nav-toggle { display: flex; }
    .nav-mobile:not([hidden]) { display: flex; }
    .section-head { margin-bottom: 40px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .quote-with-portrait { grid-template-columns: 1fr; }
    .quote-portrait { max-width: 200px; margin: 0 auto; }
    .cta-card { padding: 56px 24px; }
    .cta { padding: 40px 0 80px; }
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-col-produit { display: none; }
    .page-hero { padding: 64px 0 48px; }
    .page-hero h1 { font-size: clamp(36px, 8vw, 48px); }
    .page-hero-split { grid-template-columns: 1fr; gap: 40px; }
    .hero-showcase { margin-top: 56px; }
    .pillar-media { margin: -32px -32px 24px; }
    .quote-with-portrait { grid-template-columns: 160px 1fr; gap: 32px; }
    .persona-card { padding: 28px 24px; }
    .steps-grid { grid-template-columns: 1fr; }
    .integrations-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }

    .strip-label {
        text-align: left;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .strip-label::after {
        content: '→';
        font-family: var(--font-sans);
        font-size: 13px;
        letter-spacing: 0;
        color: var(--orange-500);
        animation: carouselNudge 1.8s ease-in-out infinite;
    }
    .logos-strip .strip-label { display: flex; }

    .strip-items {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        gap: 22px;
        padding: 0 24px;
        margin: 0 -24px 28px;
        mask-image: linear-gradient(to right, black 0, black 88%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black 0, black 88%, transparent 100%);
    }
    .strip-items::-webkit-scrollbar { display: none; }
    .strip-items span {
        flex-shrink: 0;
        scroll-snap-align: start;
        white-space: nowrap;
        font-size: 16px;
    }

    .trust-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        padding: 24px 24px 4px;
        margin: 0 -24px;
        gap: 0;
        mask-image: linear-gradient(to right, black 0, black 88%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black 0, black 88%, transparent 100%);
    }
    .trust-list::-webkit-scrollbar { display: none; }
    .trust-list span {
        flex-shrink: 0;
        scroll-snap-align: center;
        white-space: nowrap;
        padding: 0 18px;
        border-right: 1px solid var(--hairline);
    }
    .trust-list span:last-child { border-right: none; padding-right: 24px; }

    /* ===== Mobile carousel (scroll-snap) ===== */
    .carousel-hint { display: flex; }
    .carousel {
        display: flex !important;
        grid-template-columns: none !important;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px !important;
        padding: 4px 24px 24px;
        margin: 0 -24px;
    }
    .carousel::-webkit-scrollbar { display: none; }
    .carousel > * {
        flex: 0 0 86%;
        max-width: 86%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    .carousel > *:last-child { margin-right: 4px; }

    .carousel-hint {
        align-items: center;
        gap: 8px;
        margin: 0 0 14px;
        font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-mute);
    }
    .carousel-hint::after {
        content: '→';
        font-family: var(--font-sans);
        font-size: 14px;
        color: var(--orange-500);
        animation: carouselNudge 1.8s ease-in-out infinite;
    }
    @keyframes carouselNudge {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(4px); }
    }
}

