/* ================================================================
   KarodIA — design system · branche qalimo-style
   Palette : navy #0f1f5c · bleu #4b7cf4 · fond blanc/bleu clair
   Police  : Inter (Google Fonts)
   ================================================================ */

:root {
    /* ---- Couleurs principales ---- */
    --navy:         #0f1f5c;
    --navy-mid:     #1a2d6e;
    --navy-soft:    #243580;
    --blue:         #4b7cf4;
    --blue-hover:   #3a6ae0;
    --blue-light:   #eef2fe;
    --blue-mid:     #dce7ff;

    /* ---- Surfaces ---- */
    --bg:           #ffffff;
    --bg-soft:      #f4f7ff;
    --bg-card:      #ffffff;
    --bg-dark:      #0f1f5c;
    --bg-salmon:    #fef0f0;

    /* ---- Texte ---- */
    --fg:           #0f1f5c;
    --fg-dim:       #4a5a80;
    --fg-mute:      #8290b0;
    --fg-inv:       #ffffff;
    --fg-inv-dim:   rgba(255,255,255,0.75);

    /* ---- Séparateurs ---- */
    --line:         #dce5f5;
    --line-soft:    #edf2fb;
    --line-dark:    rgba(255,255,255,0.12);

    /* ---- Polices ---- */
    --sans: "Inter", system-ui, -apple-system, sans-serif;
    --mono: "Inconsolata", ui-monospace, monospace;

    /* ---- Radius ---- */
    --radius-pill: 999px;
    --radius-card: 12px;
    --radius-sm:   6px;
}

/* ================================================================
   BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body {
    margin: 0; padding: 0;
    background: var(--bg);
    color: var(--fg);
    overflow-x: hidden;
}
body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
::selection { background: var(--blue); color: #fff; }
a  { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
em { color: var(--blue); font-style: normal; font-weight: inherit; }

.flx-mono  { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.flx-mute  { color: var(--fg-mute); }
.flx-dim   { color: var(--fg-dim); }
.flx-accent-ink { color: var(--blue); }

/* skip link */
.skip-link {
    position: absolute; top: -999px; left: 0;
    background: var(--navy); color: #fff;
    padding: 8px 16px; z-index: 9999; border-radius: 0 0 6px 0;
}
.skip-link:focus { top: 0; }

/* ================================================================
   NAV
   ================================================================ */
.flx-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-soft);
    transition: box-shadow .2s;
}
.flx-nav-inner {
    padding: 14px 0;
    display: flex; align-items: center; justify-content: space-between;
}
.flx-nav.flx-nav-scrolled { box-shadow: 0 2px 20px rgba(15,31,92,0.08); }

.flx-brand { display: flex; align-items: center; }

/* Logo SVG nav — fond transparent, couleurs natives */
.flx-brand-logo {
    display: block; line-height: 0;
}
.flx-brand-logo svg {
    height: 85px; width: auto; display: block;
}

/* Logo SVG footer — version navy */
.flx-brand-logo-inv { display: block; line-height: 0; }
.flx-brand-logo-inv svg { height: 85px; width: auto; display: block; }

/* Logo réduit sur mobile */
@media (max-width: 991px) {
    .flx-brand-logo svg,
    .flx-brand-logo-inv svg { height: 52px; }
    .flx-nav-inner { padding: 10px 0; }
}

.flx-nav-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 32px; }
.flx-nav-links a { color: var(--fg-dim); font-size: 14px; font-weight: 500; transition: color .15s; }
.flx-nav-links a:hover { color: var(--navy); }

/* Hamburger */
.flx-hamburger {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 6px; margin-left: 8px;
    flex-direction: column; gap: 5px;
}
.flx-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.flx-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.flx-hamburger.is-open span:nth-child(2) { opacity: 0; }
.flx-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
    .flx-hamburger { display: flex; }
}

/* Menu mobile déroulant */
.flx-mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--line-soft);
    padding: 16px 0 20px;
}
.flx-mobile-menu.is-open { display: block; }
.flx-mobile-menu ul {
    list-style: none; padding: 0; margin: 0;
}
.flx-mobile-menu ul li a {
    display: block;
    padding: 12px 20px;
    font-size: 15px; font-weight: 500;
    color: var(--navy);
    border-bottom: 1px solid var(--line-soft);
    transition: background .15s;
}
.flx-mobile-menu ul li a:hover { background: var(--bg-soft); }
.flx-mobile-menu-cta {
    display: block;
    margin: 16px 20px 0;
    text-align: center;
    background: var(--blue); color: #fff !important;
    border-radius: var(--radius-pill);
    padding: 12px 24px; font-size: 14px; font-weight: 600;
}

.flx-nav-cta {
    background: var(--blue); color: #fff !important;
    border-radius: var(--radius-pill);
    padding: 9px 20px; font-size: 13px; font-weight: 600;
    transition: background .15s, transform .15s;
    display: inline-block;
}
.flx-nav-cta:hover { background: var(--blue-hover); transform: translateY(-1px); color: #fff !important; }
@media (max-width: 991px) { .flx-nav-cta { display: none; } }

/* ================================================================
   BOUTONS GLOBAUX
   ================================================================ */
.flx-btn-primary {
    background: var(--blue); color: #fff;
    border: none; border-radius: var(--radius-pill);
    padding: 14px 28px; font-size: 15px; font-weight: 600;
    cursor: pointer; display: inline-block;
    transition: background .15s, transform .15s, box-shadow .15s;
    letter-spacing: -0.01em;
}
.flx-btn-primary:hover {
    background: var(--blue-hover); color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(75,124,244,0.28);
}
.flx-btn-ghost {
    background: transparent; color: var(--navy);
    border: 2px solid var(--line); border-radius: var(--radius-pill);
    padding: 12px 24px; font-size: 14px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 8px;
    transition: border-color .15s;
}
.flx-btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.flx-ghost-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--fg-dim); }

/* ================================================================
   HERO
   ================================================================ */
.qfx-hero {
    padding: 130px 0 0;
    text-align: center;
    background: linear-gradient(160deg, #eef2fe 0%, #f7f9ff 55%, #ffffff 100%);
    overflow: hidden;
}

.qfx-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-card); border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 6px 16px; margin-bottom: 28px;
    font-size: 12px; font-weight: 500; color: var(--fg-dim);
}
.qfx-badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #22c55e; /* vert "en ligne" */
    box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
}

.qfx-hero-title {
    font-size: clamp(38px, 6vw, 76px); font-weight: 800;
    line-height: 1.08; letter-spacing: -0.04em;
    color: var(--navy); margin: 0 auto 22px; max-width: 860px;
    text-wrap: balance;
}
.qfx-hero-title em { color: var(--blue); font-style: normal; }

.qfx-hero-sub {
    font-size: clamp(16px, 1.4vw, 19px); font-weight: 400;
    color: var(--fg-dim); max-width: 580px;
    margin: 0 auto 36px; line-height: 1.65;
}

.qfx-hero-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.qfx-btn-outline {
    background: transparent; color: var(--navy);
    border: 2px solid var(--line); border-radius: var(--radius-pill);
    padding: 12px 24px; font-size: 14px; font-weight: 600;
    display: inline-block; transition: border-color .15s;
}
.qfx-btn-outline:hover { border-color: var(--navy); color: var(--navy); }

/* ---- Variante hero : image de fond photo ---- */
.qfx-hero-photo {
    /* Fallback JPEG (compressé) */
    background:
        linear-gradient(160deg, rgba(10,20,70,0.80) 0%, rgba(15,31,92,0.65) 50%, rgba(10,20,70,0.78) 100%),
        url('/img/hero-bg-1.jpg') center center / cover no-repeat;
    /* WebP pour navigateurs compatibles */
    background:
        linear-gradient(160deg, rgba(10,20,70,0.80) 0%, rgba(15,31,92,0.65) 50%, rgba(10,20,70,0.78) 100%),
        image-set(
            url('/img/hero-bg-1.webp') type('image/webp'),
            url('/img/hero-bg-1.jpg')  type('image/jpeg')
        ) center center / cover no-repeat;
    background-color: var(--navy);
}
.qfx-hero-photo .qfx-hero-badge {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.20);
    color: rgba(255,255,255,0.85);
}
.qfx-hero-photo .qfx-badge-dot { background: #4ade80; }
.qfx-hero-photo .qfx-hero-title { color: #ffffff; }
.qfx-hero-photo .qfx-hero-title em { color: #93b8ff; }
.qfx-hero-photo .qfx-hero-sub { color: rgba(255,255,255,0.75); }

/* Boutons sur fond photo */
.qfx-hero-photo .flx-btn-primary {
    background: #ffffff; color: var(--navy);
}
.qfx-hero-photo .flx-btn-primary:hover {
    background: var(--blue-light); color: var(--navy);
    box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}
.qfx-hero-photo .qfx-btn-outline {
    border-color: rgba(255,255,255,0.40); color: rgba(255,255,255,0.85);
}
.qfx-hero-photo .qfx-btn-outline:hover {
    border-color: #ffffff; color: #ffffff;
}

/* Trust bar sur fond photo */
.qfx-hero-photo .qfx-trust-bar {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    box-shadow: none;
}
.qfx-hero-photo .qfx-trust-num { color: #ffffff; }
.qfx-hero-photo .qfx-trust-lbl { color: rgba(255,255,255,0.55); }
.qfx-hero-photo .qfx-trust-sep { background: rgba(255,255,255,0.12); }

/* Cadre écran sur fond photo */
.qfx-hero-photo .qfx-screen-frame {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 -8px 60px rgba(0,0,0,0.30);
}

/* Trust bar */
.qfx-trust-bar {
    display: flex; justify-content: center; align-items: stretch;
    flex-wrap: wrap; max-width: 820px; margin: 0 auto 56px;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-card);
    box-shadow: 0 2px 16px rgba(15,31,92,0.06);
}
.qfx-trust-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 18px 28px; flex: 1; min-width: 160px;
}
.qfx-trust-sep { width: 1px; background: var(--line-soft); flex-shrink: 0; }
.qfx-trust-num {
    font-size: 20px; font-weight: 800; color: var(--navy);
    letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
}
.qfx-trust-lbl { font-size: 11px; color: var(--fg-mute); margin-top: 3px; font-weight: 500; }

/* Hero screen */
.qfx-hero-screen { position: relative; }
.qfx-screen-frame {
    border: 1px solid var(--line); border-radius: 10px 10px 0 0;
    overflow: hidden; box-shadow: 0 -4px 40px rgba(75,124,244,0.10);
    max-width: 1100px; margin: 0 auto;
}
.qfx-screen-frame img { width: 100%; display: block; object-fit: cover; object-position: top; }
.qfx-screen-chrome {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 16px; background: #f0f4ff;
    border-bottom: 1px solid var(--line);
}
.flx-chrome-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.flx-chrome-url {
    margin-left: 10px; font-family: var(--mono); font-size: 10.5px;
    color: var(--fg-mute); background: #fff;
    border: 1px solid var(--line); border-radius: 4px; padding: 3px 10px;
}

/* Hero screen SM (dans les features) */
.qfx-screen-frame-sm {
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 40px rgba(15,31,92,0.10);
}
.qfx-screen-frame-sm img { max-height: 440px; object-fit: contain; object-position: top; }
.qfx-feature-placeholder {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    color: var(--fg-mute);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

/* ================================================================
   SECTIONS
   ================================================================ */
.qfx-section         { padding: 100px 0; }

/* Séparateur hero → section sombre */
#problemes {
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,0.55) 100%) 1;
}
.qfx-section-alt     { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.qfx-section-dark    { background: var(--bg-dark); color: var(--fg-inv); border-top: none; border-bottom: none; }
.qfx-section-salmon  { background: var(--bg-salmon); border-top: 1px solid #f5e0e0; border-bottom: 1px solid #f5e0e0; }

.qfx-section-header  { text-align: center; max-width: 680px; margin: 0 auto 64px; }

.qfx-section-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 0.10em;
    text-transform: uppercase; color: var(--blue);
    background: var(--blue-light); border-radius: var(--radius-pill);
    padding: 4px 14px; margin-bottom: 16px;
}
.qfx-section-dark .qfx-section-eyebrow {
    background: rgba(75,124,244,0.20); color: #93b8ff;
}

.qfx-section-title {
    font-size: clamp(28px, 4vw, 52px); font-weight: 800;
    line-height: 1.08; letter-spacing: -0.035em;
    color: var(--navy); margin: 0 0 16px;
    text-wrap: balance;
}
.qfx-section-dark .qfx-section-title { color: var(--fg-inv); }
.qfx-section-title em { color: var(--blue); font-style: normal; }
.qfx-section-dark .qfx-section-title em { color: #93b8ff; }

.qfx-section-sub {
    font-size: 17px; font-weight: 400; color: var(--fg-dim);
    max-width: 560px; margin: 0 auto; line-height: 1.65;
}
.qfx-section-dark .qfx-section-sub { color: var(--fg-inv-dim); }

/* ================================================================
   SPLIT LAYOUT
   ================================================================ */
.qfx-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
}
.qfx-split-text .qfx-section-eyebrow { display: inline-block; }
.qfx-split-text .qfx-section-title   { font-size: clamp(26px, 3vw, 42px); text-align: left; }
.qfx-section-dark .qfx-split-text .qfx-section-title { color: var(--fg-inv); }

/* Illustration stack (section problèmes) */
.qfx-illu-stack { display: flex; flex-direction: column; gap: 16px; }
.qfx-illu-card {
    background: var(--bg-card); border: 1px solid var(--line-soft);
    border-radius: 10px; padding: 20px 24px;
    box-shadow: 0 2px 12px rgba(15,31,92,0.05);
}
.qfx-section-dark .qfx-illu-card {
    background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14);
    box-shadow: none;
}
.qfx-illu-card-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.07em;
    text-transform: uppercase; color: var(--fg-mute); margin-bottom: 12px;
}
.qfx-section-dark .qfx-illu-card-label { color: rgba(255,255,255,0.55); }

.qfx-illu-bar-wrap { background: var(--bg-soft); border-radius: 4px; height: 28px; overflow: hidden; }
.qfx-section-dark .qfx-illu-bar-wrap { background: rgba(255,255,255,0.10); }
.qfx-illu-bar { height: 100%; border-radius: 4px; display: flex; align-items: center; padding: 0 12px; font-size: 12px; font-weight: 700; font-family: var(--mono); }
.qfx-illu-bar-bad  { background: rgba(239,68,68,0.12); color: #dc2626; }
.qfx-illu-bar-good { background: rgba(75,124,244,0.15); color: var(--blue); }
.qfx-section-dark .qfx-illu-bar-bad  { background: rgba(239,68,68,0.25); color: #f87171; }
.qfx-section-dark .qfx-illu-bar-good { background: rgba(75,124,244,0.30); color: #93b8ff; }
.qfx-illu-card-quote { border-left: 3px solid var(--blue); }
.qfx-section-dark .qfx-illu-card-quote { border-left: 3px solid #93b8ff; }
.qfx-illu-quote { font-size: 15px; font-style: italic; line-height: 1.55; color: var(--fg-dim); }
.qfx-section-dark .qfx-illu-quote { color: rgba(255,255,255,0.70); }
.qfx-illu-quote-from { font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--fg-mute); margin-top: 10px; letter-spacing: 0.05em; }
.qfx-section-dark .qfx-illu-quote-from { color: rgba(255,255,255,0.40); }

/* Portrait (section pourquoi moi) */
.qfx-split-portrait { align-self: start; }
.qfx-portrait-caption { margin-top: 16px; }
.qfx-portrait-name { font-size: 20px; font-weight: 700; color: var(--navy); }
.qfx-portrait-role { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--fg-dim); margin-top: 4px; }
.qfx-portrait-loc  { font-size: 12px; color: var(--fg-mute); margin-top: 2px; }

/* ================================================================
   CHECK LISTS
   ================================================================ */
.qfx-check-list { list-style: none; padding: 0; margin: 24px 0; }
.qfx-check-list li {
    padding: 9px 0 9px 30px; position: relative;
    font-size: 15px; color: var(--fg-dim); font-weight: 400;
    border-top: 1px solid var(--line-soft);
}
.qfx-check-list li:first-child { border-top: 0; padding-top: 0; }
.qfx-check-list li::before {
    content: "✓"; color: var(--blue); position: absolute; left: 0;
    font-size: 13px; font-weight: 700; top: 10px;
}
.qfx-check-list li:first-child::before { top: 1px; }
.qfx-list-bad li { color: var(--fg-dim); }
.qfx-list-bad li::before { content: "✕"; color: #ef4444; }

/* Dark section check list */
.qfx-section-dark .qfx-check-list li { color: var(--fg-inv-dim); border-color: rgba(255,255,255,0.10); }
.qfx-section-dark .qfx-check-list li::before { color: #93b8ff; }
.qfx-section-dark .qfx-list-bad li::before { color: #f87171; }

.qfx-check-list-sm li { font-size: 13.5px; padding: 7px 0 7px 26px; }
.qfx-check-list-sm li::before { font-size: 11px; top: 8px; }
.qfx-check-list-sm li:first-child::before { top: 0; }

/* ================================================================
   FEATURES ALTERNÉES
   ================================================================ */
.qfx-feature     { padding: 90px 0; }
.qfx-feature-alt { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.qfx-feature-inner {
    display: grid; grid-template-columns: 55fr 45fr;
    gap: 72px; align-items: center;
}
.qfx-feature-inner-reverse { grid-template-columns: 45fr 55fr; }
.qfx-feature-inner-reverse .qfx-feature-visual { order: 2; }
.qfx-feature-inner-reverse .qfx-feature-text   { order: 1; }

.qfx-feature-badge {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--blue); background: var(--blue-light);
    border-radius: var(--radius-pill); padding: 4px 12px; margin-bottom: 16px;
}
.qfx-feature-title {
    font-size: clamp(24px, 2.8vw, 40px); font-weight: 800;
    line-height: 1.1; letter-spacing: -0.03em;
    color: var(--navy); margin: 0 0 14px;
}
.qfx-feature-title em { color: var(--blue); font-style: normal; }
.qfx-feature-desc { font-size: 15.5px; color: var(--fg-dim); line-height: 1.7; margin: 0; }
.qfx-feature-price {
    font-size: 17px; font-weight: 700; color: var(--navy);
    margin-top: 8px; letter-spacing: -0.02em;
}
.qfx-feature-cta {
    display: inline-block; margin-top: 22px;
    background: var(--blue); color: #fff;
    border-radius: var(--radius-pill);
    padding: 11px 24px; font-size: 14px; font-weight: 600;
    transition: background .15s, transform .15s;
}
.qfx-feature-cta:hover { background: var(--blue-hover); color: #fff; transform: translateY(-1px); }

/* ================================================================
   TÉMOIGNAGES
   ================================================================ */
.qfx-testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.qfx-testi {
    background: var(--bg-card); border: 1px solid var(--line-soft);
    border-radius: var(--radius-card); padding: 36px 32px;
    display: flex; flex-direction: column; gap: 20px;
    box-shadow: 0 2px 16px rgba(15,31,92,0.05);
    transition: box-shadow .2s, transform .2s;
}
.qfx-testi:hover { box-shadow: 0 8px 32px rgba(75,124,244,0.12); transform: translateY(-2px); }

.qfx-testi-metric {
    display: inline-block; align-self: flex-start;
    font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--blue); background: var(--blue-light);
    border-radius: var(--radius-pill); padding: 5px 13px;
}
.qfx-testi-quote {
    font-size: 17px; font-weight: 400; line-height: 1.65;
    color: var(--navy); flex-grow: 1; margin: 0;
}
.qfx-testi-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line-soft); padding-top: 18px; }
.qfx-testi-avatar {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: var(--blue-mid); border: 2px solid var(--blue-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800; color: var(--blue);
}
.qfx-testi-avatar--logo {
    background: #fff;
    border-color: var(--line);
    border-radius: 8px;
    padding: 4px;
}
.qfx-testi-avatar--logo img {
    width: 100%; height: 100%;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}
.qfx-testi-name { font-size: 15px; font-weight: 700; color: var(--navy); }
.qfx-testi-role { font-size: 11px; color: var(--fg-mute); font-weight: 500; margin-top: 2px; }

/* ================================================================
   PRICING
   ================================================================ */
.qfx-pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 56px;
}
.qfx-price-card {
    background: var(--bg-card); border: 1px solid var(--line);
    border-radius: var(--radius-card); padding: 36px 28px;
    display: flex; flex-direction: column; position: relative;
    transition: box-shadow .2s, transform .2s;
}
.qfx-price-card:hover { box-shadow: 0 8px 32px rgba(15,31,92,0.10); transform: translateY(-2px); }

.qfx-price-card-featured {
    background: var(--navy); border-color: var(--navy);
    color: var(--fg-inv);
    box-shadow: 0 12px 48px rgba(15,31,92,0.25);
}
.qfx-price-card-featured:hover { box-shadow: 0 16px 56px rgba(15,31,92,0.32); }

.qfx-price-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--blue); color: #fff;
    border-radius: var(--radius-pill); padding: 4px 14px; white-space: nowrap;
}
.qfx-price-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--fg-mute); margin-bottom: 18px;
}
.qfx-price-card-featured .qfx-price-label { color: rgba(255,255,255,0.55); }

.qfx-price-amount {
    font-size: 52px; font-weight: 800; line-height: 1;
    color: var(--navy); font-variant-numeric: tabular-nums;
    letter-spacing: -0.04em;
}
.qfx-price-amount span { font-size: 18px; font-weight: 400; color: var(--fg-dim); }
.qfx-price-card-featured .qfx-price-amount { color: var(--fg-inv); }
.qfx-price-card-featured .qfx-price-amount span { color: rgba(255,255,255,0.60); }

.qfx-price-amount-alt {
    font-size: 34px; font-weight: 800; color: var(--navy);
    margin-top: 10px; letter-spacing: -0.03em;
}
.qfx-price-note {
    font-size: 11px; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--fg-mute); margin-top: 6px;
}
.qfx-price-card-featured .qfx-price-note { color: rgba(255,255,255,0.45); }

.qfx-price-card .qfx-check-list {
    flex-grow: 1; border-top: 1px solid var(--line-soft); margin-top: 24px; padding-top: 4px;
}
.qfx-price-card-featured .qfx-check-list { border-top-color: rgba(255,255,255,0.15); }
.qfx-price-card-featured .qfx-check-list li { color: rgba(255,255,255,0.80); border-top-color: rgba(255,255,255,0.10); }
.qfx-price-card-featured .qfx-check-list li::before { color: #93b8ff; }

.qfx-price-cta {
    display: block; text-align: center; margin-top: 24px;
    border: 2px solid var(--line); border-radius: var(--radius-pill);
    padding: 12px 18px; font-size: 14px; font-weight: 600; color: var(--navy);
    transition: border-color .15s, background .15s, color .15s;
}
.qfx-price-cta:hover { border-color: var(--navy); color: var(--navy); }
.qfx-price-cta-featured {
    background: var(--blue); border-color: var(--blue); color: #fff;
}
.qfx-price-cta-featured:hover {
    background: var(--blue-hover); border-color: var(--blue-hover); color: #fff;
}

.qfx-pricing-note {
    margin-top: 28px; font-size: 12px; font-weight: 500;
    color: var(--fg-mute); text-align: center; letter-spacing: 0.02em;
}

/* ================================================================
   POURQUOI MOI — liste numérotée
   ================================================================ */
.qfx-why-list { display: flex; flex-direction: column; gap: 0; margin-top: 12px; }
.qfx-why-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 22px 0; border-top: 1px solid var(--line-soft);
}
.qfx-why-item:first-child { border-top: 0; padding-top: 0; }
.qfx-why-icon {
    font-size: 13px; font-weight: 800; letter-spacing: 0.04em;
    color: var(--blue); flex-shrink: 0;
    background: var(--blue-light); border-radius: 50%;
    width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.qfx-why-title { font-size: 17px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.qfx-why-body  { font-size: 14.5px; color: var(--fg-dim); line-height: 1.65; margin: 0; }
.qfx-why-body a { color: var(--blue); }

/* ================================================================
   FAQ
   ================================================================ */
.qfx-faq-wrap { display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start; }
.qfx-faq-aside { position: sticky; top: 110px; }
.qfx-faq-aside .qfx-section-title { font-size: clamp(24px, 2.8vw, 38px); text-align: left; }
.qfx-faq-sub { font-size: 15px; color: var(--fg-dim); line-height: 1.65; margin-top: 0; }

.qfx-accordion-item {
    border: none !important; border-bottom: 1px solid var(--line-soft) !important;
    background: transparent !important; border-radius: 0 !important;
}
.qfx-accordion-item:first-child { border-top: 1px solid var(--line-soft) !important; }
.qfx-accordion-btn {
    background: transparent; color: var(--navy);
    font-size: 16px; font-weight: 600;
    padding: 20px 0; box-shadow: none !important;
    border-radius: 0 !important;
}
.qfx-accordion-btn:not(.collapsed) { color: var(--blue); background: transparent; }
.qfx-accordion-btn::after { opacity: 0.5; }
.qfx-accordion-body {
    padding: 0 0 20px 0;
    font-size: 15px; color: var(--fg-dim); line-height: 1.7;
}

/* ================================================================
   CTA CONTACT
   ================================================================ */
.qfx-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2d6e 100%);
    color: var(--fg-inv);
}
.qfx-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.qfx-cta-title {
    font-size: clamp(30px, 4vw, 52px); font-weight: 800;
    line-height: 1.08; letter-spacing: -0.035em;
    color: var(--fg-inv); margin: 0 0 16px;
}
.qfx-cta-title em { color: #93b8ff; font-style: normal; }
.qfx-cta-sub { font-size: 16px; color: var(--fg-inv-dim); line-height: 1.7; }
.qfx-cta .qfx-section-eyebrow { background: rgba(75,124,244,0.20); color: #93b8ff; }
.qfx-cta-trust { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.qfx-cta-trust-item { font-size: 14px; color: var(--fg-inv-dim); }
.qfx-cta-trust-item strong { color: var(--fg-inv); font-weight: 700; }

/* ================================================================
   FORMULAIRE DE CONTACT
   ================================================================ */
.flx-contact-form { margin: 0; }
.flx-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.flx-form-field { display: flex; flex-direction: column; margin-bottom: 14px; }
.flx-form-field:last-of-type { margin-bottom: 0; }
.flx-form-input, .flx-form-textarea {
    width: 100%; padding: 13px 16px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm); color: #fff; font-family: var(--sans);
    font-size: 14px; font-weight: 400;
    transition: border-color .15s, background .15s;
}
.flx-form-input::placeholder, .flx-form-textarea::placeholder { color: rgba(255,255,255,0.40); }
.flx-form-input:focus, .flx-form-textarea:focus {
    outline: none; border-color: #93b8ff;
    background: rgba(255,255,255,0.12);
}
.flx-form-textarea { resize: vertical; min-height: 110px; }
.flx-form-actions { display: flex; align-items: center; gap: 18px; margin-top: 18px; flex-wrap: wrap; }
.flx-form-note { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; }
.flx-form-feedback { margin-top: 14px; font-size: 14px; border-radius: var(--radius-sm); }
.flx-form-success { color: #86efac; background: rgba(34,197,94,0.12); padding: 12px 16px; }
.flx-form-error   { color: #fca5a5; background: rgba(239,68,68,0.12); padding: 12px 16px; }
.flx-form-error a { color: #93c5fd; }

/* ================================================================
   RÉALISATIONS — blocs alternés 60/40
   ================================================================ */
.flx-projects-list { margin-top: 56px; display: flex; flex-direction: column; gap: 0; }

.flx-project-sep {
    display: flex; align-items: center; gap: 16px;
    padding: 40px 0;
    color: var(--fg-mute); font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; font-family: 'Inconsolata', monospace;
}
.flx-project-sep::before,
.flx-project-sep::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.flx-project-row {
    display: grid; grid-template-columns: 60fr 40fr;
    border: 1px solid var(--line); border-radius: var(--radius-card);
    overflow: hidden; min-height: 420px;
    box-shadow: 0 2px 16px rgba(15,31,92,0.06);
    transition: box-shadow .2s, transform .2s;
}
.flx-project-row:hover { box-shadow: 0 8px 40px rgba(15,31,92,0.12); transform: translateY(-2px); }
.flx-project-row-reverse { grid-template-columns: 40fr 60fr; }
.flx-project-row-reverse .flx-project-visual { order: 2; }
.flx-project-row-reverse .flx-project-info   { order: 1; }

.flx-project-visual {
    display: flex; flex-direction: column;
    background: var(--bg-soft); border-right: 1px solid var(--line-soft);
}
.flx-project-row-reverse .flx-project-visual { border-right: none; border-left: 1px solid var(--line-soft); }

/* Cadre navigateur */
.flx-project-chrome {
    display: flex; align-items: center; gap: 7px; flex-shrink: 0;
    padding: 11px 16px; background: #f0f4ff;
    border-bottom: 1px solid var(--line);
}
.flx-chrome-url {
    margin-left: 10px; font-family: var(--mono); font-size: 10.5px;
    color: var(--fg-mute); background: #fff;
    border: 1px solid var(--line); border-radius: 3px; padding: 3px 10px;
}

/* Zone image */
.flx-project-img-wrap { flex: 1; overflow: hidden; background: var(--bg-soft); }
.flx-project-img-wrap img {
    width: 100%; height: 100%;
    object-fit: contain; object-position: center top; display: block;
}

/* Carousel dans les blocs projet */
.flx-project-img-wrap.carousel { aspect-ratio: unset; }
.flx-project-img-wrap .carousel-inner,
.flx-project-img-wrap .carousel-item { height: 100%; background: var(--bg-soft); }
.flx-project-img-wrap .carousel-item img { height: 100%; object-fit: contain; object-position: center top; }

.flx-carousel-btn {
    width: 36px; opacity: 0; transition: opacity .2s; background: none; border: none;
}
.flx-project-row:hover .flx-carousel-btn { opacity: 1; }
.flx-carousel-arrow {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,0.90);
    border: 1px solid var(--line); color: var(--navy);
    font-size: 18px; line-height: 1; backdrop-filter: blur(6px);
}
.flx-carousel-dots { bottom: 12px; gap: 6px; margin: 0; padding: 0; }
.flx-carousel-dots button,
.flx-carousel-dots button.active {
    width: 6px !important; height: 6px !important;
    border-radius: 50% !important;
    border-top: none !important; border-bottom: none !important;
    padding: 0 !important; margin: 0 !important; flex: none !important;
    background: var(--fg-mute) !important;
    opacity: 0.5; transition: opacity .2s, background .2s;
}
.flx-carousel-dots button.active { background: var(--blue) !important; opacity: 1; }

/* Panneau info */
.flx-project-info {
    background: var(--bg-card); padding: 48px 40px;
    display: flex; flex-direction: column; justify-content: center; gap: 20px;
    position: relative; overflow: hidden;
}
.flx-project-num {
    position: absolute; bottom: -24px; right: 16px;
    font-size: 140px; font-weight: 900; line-height: 1;
    color: var(--line-soft); pointer-events: none; user-select: none;
    letter-spacing: -0.06em;
}
.flx-project-client { display: flex; align-items: center; gap: 14px; position: relative; }
.flx-project-logo-wrap {
    width: 48px; height: 48px; border-radius: var(--radius-sm); flex-shrink: 0;
    background: var(--bg-soft); border: 1px solid var(--line-soft);
    overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.flx-project-logo  { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.flx-project-name  { font-size: 20px; font-weight: 800; color: var(--navy); }
.flx-project-type  {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--fg-mute); margin-top: 4px;
}
.flx-project-desc  { font-size: 15px; color: var(--fg-dim); line-height: 1.7; margin: 0; }

/* ================================================================
   TAGS & PILLS
   ================================================================ */
.flx-tag {
    display: inline-block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--blue); background: var(--blue-light);
    border-radius: var(--radius-pill); padding: 3px 10px;
}
.flx-why-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

/* ================================================================
   PORTRAIT (section pourquoi moi)
   ================================================================ */
.flx-portrait {
    border-radius: var(--radius-card); overflow: hidden;
    border: 1px solid var(--line); aspect-ratio: 3/4; background: var(--bg-soft);
    box-shadow: 0 4px 24px rgba(15,31,92,0.10);
}
.flx-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
@media (max-width: 991px) {
    .flx-portrait { max-height: 340px; aspect-ratio: 4/3; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.flx-footer {
    background: var(--navy); color: var(--fg-inv);
    padding-top: 72px; padding-bottom: 32px;
    border-top: none;
}
.flx-footer-brand {
    font-size: 22px; font-weight: 800; color: var(--fg-inv);
    letter-spacing: -0.03em; margin-bottom: 14px;
}
.flx-footer-brand .flx-brand-glyph { color: var(--blue); }
.flx-footer-tag { font-size: 14px; color: var(--fg-inv-dim); line-height: 1.65; max-width: 320px; margin-bottom: 18px; }
.flx-footer-loc { font-size: 12px; color: rgba(255,255,255,0.40); letter-spacing: 0.04em; }

.flx-footer-h {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.40); margin-bottom: 14px;
}
.flx-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.flx-footer-list a, .flx-footer-list li {
    font-size: 13.5px; color: var(--fg-inv-dim); font-weight: 400;
}
.flx-footer-list a:hover { color: #fff; }

.flx-footer-top { border-bottom: 1px solid rgba(255,255,255,0.08); }
.flx-footer-bottom { padding-top: 24px; font-size: 12.5px; color: rgba(255,255,255,0.35); font-weight: 400; }

/* ================================================================
   ROTATOR HERO
   ================================================================ */
.flx-rotator {
    display: inline-block; vertical-align: baseline; color: var(--blue);
    font-style: normal; font-weight: 800;
    transition: opacity 0.32s ease-out, transform 0.32s ease-out;
    will-change: opacity, transform;
}

/* ================================================================
   PAGES DÉDIÉES (abonnements, développement…)
   ================================================================ */
.flx-page-hero { padding: 148px 0 72px; }
@media (max-width: 991px) { .flx-page-hero { padding: 100px 0 56px; } }
.flx-back-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em;
    color: var(--fg-mute); border-bottom: 1px solid var(--line);
    padding-bottom: 3px; transition: color .15s, border-color .15s;
}
.flx-back-link:hover { color: var(--blue); border-color: var(--blue); }

/* Eyebrow + titre pour les pages dédiées */
.flx-section-eyebrow {
    display: flex; align-items: center; gap: 14px;
    font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--fg-mute); margin-bottom: 18px;
}
.flx-section-num  { color: var(--blue); font-weight: 700; }
.flx-section-line { width: 36px; height: 1px; background: var(--line); }
.flx-section-title {
    font-size: clamp(30px, 4vw, 56px); font-weight: 800;
    line-height: 1.08; letter-spacing: -0.035em; color: var(--navy);
    margin: 0 0 18px; text-wrap: balance;
}
.flx-section-sub { font-size: 17px; color: var(--fg-dim); max-width: 600px; margin: 0; }

.flx-section      { padding: 100px 0; position: relative; }
.flx-section-soft {
    background: var(--bg-soft);
    border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}

/* ---- Abonnements — grille des formules ---- */
.flx-subscriptions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.flx-offer {
    background: var(--bg-card); border: 1px solid var(--line);
    border-radius: var(--radius-card); padding: 36px 32px;
    display: flex; flex-direction: column; position: relative;
    transition: box-shadow .2s, transform .2s;
}
.flx-offer:hover { box-shadow: 0 8px 32px rgba(15,31,92,0.10); transform: translateY(-2px); }
.flx-offer-featured {
    background: var(--navy); border-color: var(--navy); color: var(--fg-inv);
    box-shadow: 0 12px 48px rgba(15,31,92,0.25);
}
.flx-offer-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--blue); color: #fff;
    border-radius: var(--radius-pill); padding: 4px 14px; white-space: nowrap;
}
.flx-offer-ref {
    font-family: var(--mono); font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-mute);
    margin-bottom: 12px;
}
.flx-offer-featured .flx-offer-ref { color: rgba(255,255,255,0.40); }
.flx-offer-name { font-size: 24px; font-weight: 800; color: var(--navy); margin: 0 0 20px; letter-spacing: -0.02em; }
.flx-offer-featured .flx-offer-name { color: var(--fg-inv); }
.flx-offer-price-block { margin-bottom: 16px; }
.flx-offer-price {
    font-size: 48px; font-weight: 800; line-height: 1; color: var(--navy);
    letter-spacing: -0.04em; font-variant-numeric: tabular-nums;
}
.flx-offer-featured .flx-offer-price { color: var(--fg-inv); }
.flx-offer-price-alt { font-size: 18px; font-weight: 400; color: var(--fg-dim); }
.flx-offer-featured .flx-offer-price-alt { color: rgba(255,255,255,0.55); }
.flx-offer-price-note {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--fg-mute); margin-top: 5px;
}
.flx-offer-featured .flx-offer-price-note { color: rgba(255,255,255,0.40); }
.flx-offer-tag { font-size: 14.5px; color: var(--fg-dim); line-height: 1.65; margin: 0 0 20px; }
.flx-offer-featured .flx-offer-tag { color: rgba(255,255,255,0.75); }
.flx-offer-list { list-style: none; padding: 0; margin: 0 0 20px; flex-grow: 1; }
.flx-offer-list li {
    padding: 8px 0 8px 26px; position: relative;
    font-size: 14px; color: var(--fg-dim); border-top: 1px solid var(--line-soft);
}
.flx-offer-list li:first-child { border-top: 0; padding-top: 0; }
.flx-offer-list li::before {
    content: "✓"; color: var(--blue); position: absolute; left: 0;
    font-size: 12px; font-weight: 700; top: 9px;
}
.flx-offer-list li:first-child::before { top: 1px; }
.flx-offer-featured .flx-offer-list li { color: rgba(255,255,255,0.80); border-color: rgba(255,255,255,0.10); }
.flx-offer-featured .flx-offer-list li::before { color: #93b8ff; }

.flx-sub-customize { margin-bottom: 20px; }
.flx-sub-customize-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-mute); margin-bottom: 8px; }
.flx-offer-featured .flx-sub-customize-label { color: rgba(255,255,255,0.40); }
.flx-sub-customize-items { display: flex; flex-wrap: wrap; gap: 6px; }
.flx-offer-featured .flx-tag { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.75); }
.flx-offer-foot-aides { font-size: 12px; color: rgba(255,255,255,0.55); }

.flx-offer-cta {
    display: block; text-align: center; margin-top: auto;
    border: 2px solid var(--line); border-radius: var(--radius-pill);
    padding: 13px 18px; font-size: 14px; font-weight: 600; color: var(--navy);
    transition: border-color .15s, background .15s;
}
.flx-offer-cta:hover { border-color: var(--navy); color: var(--navy); background: var(--bg-soft); }
.flx-offer-cta.primary {
    background: var(--blue); border-color: var(--blue); color: #fff;
}
.flx-offer-cta.primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); color: #fff; }

.flx-offer-foot {
    margin-top: 28px; font-size: 12px; color: var(--fg-mute);
    background: var(--bg-soft); border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm); padding: 14px 18px; line-height: 1.65;
}

/* Process flow (abonnements) */
.flx-flow { display: grid; align-items: start; gap: 0; margin-top: 56px; }
.flx-flow-step { padding: 0 8px; }
.flx-flow-num {
    font-size: 13px; font-weight: 800; letter-spacing: 0.06em;
    color: var(--blue); background: var(--blue-light);
    border-radius: 50%; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.flx-flow-title { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.flx-flow-body  { font-size: 14.5px; color: var(--fg-dim); line-height: 1.65; margin: 0; }
.flx-flow-tag {
    display: inline-block; margin-top: 12px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--blue); background: var(--blue-light); border-radius: var(--radius-pill); padding: 3px 10px;
}
.flx-flow-arrow { font-size: 22px; color: var(--line); display: flex; align-items: flex-start; padding-top: 8px; }

/* CTA pages dédiées */
.flx-cta { padding: 80px 0; background: var(--navy); position: relative; overflow: hidden; }
.flx-cta-h2 {
    font-size: clamp(34px, 5vw, 68px); font-weight: 800;
    color: var(--fg-inv); letter-spacing: -0.04em; margin: 0 0 16px;
    text-wrap: balance;
}
.flx-cta-h2 em { color: #93b8ff; font-style: normal; }
.flx-cta-sub { font-size: 17px; color: var(--fg-inv-dim); max-width: 560px; margin: 0 auto 28px; }
.flx-bg-grain {
    position: absolute; inset: 0; opacity: 0.10; mix-blend-mode: screen; pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
}

/* ================================================================
   PAGE AUTOMATISATION — flow, compare, offres
   ================================================================ */

/* Flow (process en étapes) */
.flx-flow { display: grid; align-items: start; gap: 0; margin-top: 56px; }
.flx-flow-step { padding: 0 8px; text-align: center; }
.flx-flow-num {
    font-size: 11px; font-weight: 800; letter-spacing: 0.06em;
    color: var(--blue); background: var(--blue-light);
    border-radius: 50%; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
}
.flx-flow-icon { margin-bottom: 12px; color: var(--blue); }
.flx-flow-icon svg { width: 40px; height: 40px; display: block; margin: 0 auto; }
.flx-flow-title { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.flx-flow-body  { font-size: 13px; color: var(--fg-dim); line-height: 1.6; margin: 0; }
.flx-flow-tag {
    display: inline-block; margin-top: 10px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--blue); background: var(--blue-light); border-radius: var(--radius-pill); padding: 3px 10px;
}
.flx-flow-arrow {
    font-size: 20px; color: var(--line); display: flex;
    align-items: flex-start; padding-top: 22px; justify-content: center;
}

/* Tableau avant/après */
.flx-compare {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; margin-top: 48px;
}
.flx-compare-col {
    border-radius: var(--radius-card); padding: 28px 32px;
    border: 1px solid var(--line);
}
.flx-compare-before { background: #fff5f5; border-color: #fecaca; }
.flx-compare-after  { background: #f0f9ff; border-color: var(--blue-mid); }
.flx-compare-h {
    font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em;
    margin-bottom: 16px;
}
.flx-compare-before .flx-compare-h { color: #dc2626; }
.flx-compare-after  .flx-compare-h { color: var(--blue); }
.flx-compare-col ul { list-style: none; padding: 0; margin: 0; }
.flx-compare-col ul li {
    padding: 7px 0; font-size: 14px; color: var(--fg-dim);
    border-top: 1px solid rgba(0,0,0,0.06);
}
.flx-compare-col ul li:first-child { border-top: 0; padding-top: 0; }
.flx-compare-before ul li strong { color: #dc2626; }
.flx-compare-after  ul li strong { color: var(--navy); }

/* Grille des offres (4 cartes) */
.flx-offers-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px; margin-top: 48px;
}
.flx-offer-ghost {
    background: var(--bg-soft); border: 1px dashed var(--line);
}
.flx-offer-price.free {
    font-size: 32px; font-weight: 800; color: #16a34a; letter-spacing: -0.03em;
}
.flx-offer-foot-aides { margin-top: 12px; }

/* ================================================================
   PAGE DÉVELOPPEMENT — grille de cartes + avantage
   ================================================================ */
.flx-dev-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 48px;
}
.flx-dev-card {
    background: var(--bg-card); border: 1px solid var(--line);
    border-radius: var(--radius-card); padding: 32px 28px;
    display: flex; flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.flx-dev-card:hover { box-shadow: 0 8px 32px rgba(15,31,92,0.10); transform: translateY(-2px); }
.flx-dev-card-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--blue); background: var(--blue-light);
    border-radius: var(--radius-pill); padding: 3px 12px;
    display: inline-block; margin-bottom: 14px; align-self: flex-start;
}
.flx-dev-card-title {
    font-size: 22px; font-weight: 800; color: var(--navy);
    letter-spacing: -0.02em; margin: 0 0 16px;
}
.flx-dev-card-list {
    list-style: none; padding: 0; margin: 0 0 20px; flex-grow: 1;
}
.flx-dev-card-list li {
    padding: 8px 0 8px 24px; position: relative;
    font-size: 14px; color: var(--fg-dim);
    border-top: 1px solid var(--line-soft);
}
.flx-dev-card-list li:first-child { border-top: 0; padding-top: 0; }
.flx-dev-card-list li::before {
    content: "→"; color: var(--blue); position: absolute; left: 0;
    font-size: 12px; top: 9px;
}
.flx-dev-card-list li:first-child::before { top: 1px; }
.flx-dev-stack {
    font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
    color: var(--fg-mute); border-top: 1px solid var(--line-soft);
    padding-top: 14px; margin-top: auto;
}

/* Avantage intégré */
.flx-dev-advantage {
    border: 1px solid var(--line); border-radius: var(--radius-card);
    padding: 44px 48px; background: var(--bg-card);
}
.flx-dev-advantage-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 28px;
}
.flx-dev-advantage-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.flx-dev-advantage-title {
    font-size: clamp(20px, 2.2vw, 28px); font-weight: 800;
    color: var(--navy); letter-spacing: -0.025em; margin: 0 0 14px;
}
.flx-dev-advantage-text {
    font-size: 15px; color: var(--fg-dim); line-height: 1.7; margin: 0;
}
.flx-dev-advantage-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 0;
}
.flx-dev-advantage-list li {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 0; border-top: 1px solid var(--line-soft);
    font-size: 15px; color: var(--fg-dim);
}
.flx-dev-advantage-list li:first-child { border-top: 0; padding-top: 0; }
.flx-dev-adv-icon {
    font-size: 11px; font-weight: 700; color: var(--blue);
    background: var(--blue-light); border-radius: var(--radius-pill);
    padding: 3px 10px; white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1199px) {
    .qfx-faq-wrap { grid-template-columns: 260px 1fr; gap: 56px; }
}

@media (max-width: 991px) {
    .flx-dev-grid { grid-template-columns: 1fr; max-width: 480px; }
    .flx-dev-advantage { padding: 32px 28px; }
    .flx-dev-advantage-inner { grid-template-columns: 1fr; gap: 36px; }
    .flx-compare { grid-template-columns: 1fr; }
    .flx-offers-grid { grid-template-columns: 1fr; max-width: 480px; }
    /* Flow auto : empile les étapes sur mobile */
    .flx-flow[style] { display: flex; flex-direction: column; gap: 24px; }
    .flx-flow-arrow { transform: rotate(90deg); align-self: center; padding-top: 0; }
    .qfx-hero { padding-top: 100px; }
    .qfx-trust-bar { max-width: 100%; }
    .qfx-trust-item { padding: 14px 20px; min-width: 120px; }
    .qfx-split { grid-template-columns: 1fr; gap: 40px; }
    .qfx-feature-inner,
    .qfx-feature-inner-reverse { grid-template-columns: 1fr; gap: 40px; }
    .qfx-feature-inner-reverse .qfx-feature-visual { order: 0; }
    .qfx-feature-inner-reverse .qfx-feature-text   { order: 0; }
    .qfx-testi-grid { grid-template-columns: 1fr; }
    .qfx-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .qfx-faq-wrap { grid-template-columns: 1fr; gap: 40px; }
    .qfx-faq-aside { position: static; }
    .qfx-cta-inner { grid-template-columns: 1fr; gap: 48px; }
    .flx-subscriptions-grid { grid-template-columns: 1fr; }
    .flx-project-row,
    .flx-project-row-reverse { grid-template-columns: 1fr; min-height: auto; }
    .flx-project-row-reverse .flx-project-visual { order: 0; border-left: none; border-top: 1px solid var(--line); }
    .flx-project-row-reverse .flx-project-info   { order: 0; }
    .flx-project-visual { border-right: none; border-bottom: 1px solid var(--line); min-height: 280px; }
    .flx-project-info { padding: 32px 28px; }
    .flx-project-num { font-size: 90px; }
}

@media (max-width: 767px) {
    .flx-form-row { grid-template-columns: 1fr; }
    .qfx-cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
    .qfx-trust-bar { flex-direction: column; }
    .qfx-trust-sep { width: 100%; height: 1px; }
    .qfx-trust-item { padding: 12px 20px; min-width: auto; }
    .qfx-section { padding: 72px 0; }
    .qfx-feature { padding: 56px 0; }
    .flx-section { padding: 72px 0; }
    .flx-nav-links { display: none !important; }
    .flx-brand-tag { display: none; }
}

/* ================================================================
   COOKIE CONSENT BANNER
   ================================================================ */
#ka-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    width: 360px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(15,31,92,0.14);
    padding: 24px;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease;
}
#ka-cookie-banner.ka-cookie--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.ka-cookie-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.ka-cookie-logo-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}
.ka-cookie-logo-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.03em;
}
.ka-cookie-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.ka-cookie-text {
    font-size: 13px;
    color: var(--fg-dim);
    line-height: 1.6;
    margin-bottom: 18px;
}
.ka-cookie-text a {
    color: var(--blue);
    text-decoration: underline;
}
.ka-cookie-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ka-btn-accept {
    padding: 10px 16px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}
.ka-btn-accept:hover { background: var(--navy-mid); }
.ka-btn-refuse {
    padding: 10px 16px;
    background: transparent;
    color: var(--fg-dim);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .15s, color .15s;
}
.ka-btn-refuse:hover { border-color: var(--navy); color: var(--navy); }
.ka-btn-text {
    background: none;
    border: none;
    color: var(--fg-mute);
    font-size: 12px;
    cursor: pointer;
    padding: 4px 0;
    text-align: center;
    text-decoration: underline;
    transition: color .15s;
}
.ka-btn-text:hover { color: var(--navy); }

/* Panel personnaliser */
.ka-cookie-panel {
    display: none;
}
#ka-cookie-banner.ka-cookie--customize .ka-cookie-main { display: none; }
#ka-cookie-banner.ka-cookie--customize .ka-cookie-panel { display: block; }

.ka-cookie-panel-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}
.ka-cookie-category {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--line-soft);
}
.ka-cookie-category:first-of-type { border-top: none; }
.ka-cookie-cat-info {}
.ka-cookie-cat-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}
.ka-cookie-cat-desc {
    font-size: 12px;
    color: var(--fg-mute);
    margin-top: 2px;
    line-height: 1.5;
}
/* Toggle switch */
.ka-toggle-wrap { flex-shrink: 0; padding-top: 2px; }
.ka-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}
.ka-toggle input { opacity: 0; width: 0; height: 0; }
.ka-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--line);
    border-radius: 22px;
    transition: background .2s;
}
.ka-toggle-slider::before {
    content: '';
    position: absolute;
    height: 16px; width: 16px;
    left: 3px; bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s;
}
.ka-toggle input:checked + .ka-toggle-slider { background: var(--blue); }
.ka-toggle input:checked + .ka-toggle-slider::before { transform: translateX(18px); }
.ka-toggle input:disabled + .ka-toggle-slider { background: var(--blue); opacity: 0.5; cursor: not-allowed; }

.ka-cookie-panel-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
}

/* Identifiant de consentement */
.ka-cookie-consent-id {
    display: none;
    margin-top: 14px;
    padding: 10px 12px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    font-size: 11px;
    color: var(--fg-mute);
    line-height: 1.7;
    word-break: break-all;
}
.ka-cookie-consent-id strong {
    color: var(--fg-dim);
    font-family: var(--mono);
    font-size: 11px;
}

/* Lien footer */
.ka-cookie-prefs-link {
    color: var(--fg-mute);
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
}
.ka-cookie-prefs-link:hover { color: var(--navy); }

@media (max-width: 480px) {
    #ka-cookie-banner { bottom: 0; left: 0; right: 0; width: 100%; max-width: 100%; border-radius: 16px 16px 0 0; }
}

/* ================================================================
   MENTIONS LÉGALES / PAGES LÉGALES
   ================================================================ */
.flx-legal-content {
    max-width: 760px;
    margin: 0 auto;
}
.flx-legal-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin: 2.5rem 0 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--line);
}
.flx-legal-content h2:first-child { margin-top: 0; }
.flx-legal-content p,
.flx-legal-content ul {
    font-size: 15px;
    color: var(--fg-dim);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.flx-legal-content ul {
    padding-left: 1.5rem;
}
.flx-legal-content ul li { margin-bottom: 0.25rem; }
.flx-legal-content a {
    color: var(--blue);
    text-decoration: underline;
}
.flx-legal-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin: 1.75rem 0 0.5rem;
}
.flx-legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 1rem 0 1.5rem;
}
.flx-legal-table th {
    background: var(--bg-soft);
    color: var(--navy);
    font-weight: 600;
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid var(--line);
}
.flx-legal-table td {
    padding: 9px 12px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--fg-dim);
    vertical-align: top;
}
.flx-legal-table code {
    font-family: var(--mono);
    font-size: 12px;
    background: var(--bg-soft);
    padding: 1px 5px;
    border-radius: 3px;
    color: var(--navy);
}
@media (max-width: 640px) {
    .flx-legal-table { display: block; overflow-x: auto; }
}
.flx-legal-date {
    margin-top: 3rem;
    font-size: 13px;
    color: var(--fg-mute);
    font-style: italic;
}

/* ================================================================
   TOOLTIP — .ka-roi (bulle flottante sur les sigles)
   ================================================================ */
.ka-roi {
    position: relative;
    cursor: help;
    border-bottom: 1px dashed currentColor;
    text-decoration: none;
    font-style: normal;
    white-space: nowrap;
}
.ka-roi::before,
.ka-roi::after {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.18s ease;
}
/* Bulle */
.ka-roi::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a2332;
    color: #e8ede6;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.5;
    width: 230px;
    padding: 9px 13px;
    border-radius: 7px;
    white-space: normal;
    text-align: left;
    z-index: 200;
    box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
/* Flèche */
.ka-roi::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1a2332;
    z-index: 201;
}
.ka-roi:hover::before,
.ka-roi:hover::after,
.ka-roi:focus-visible::before,
.ka-roi:focus-visible::after {
    opacity: 1;
}

/* ================================================================
   ANIMATIONS — Hero entrance · Scroll reveal · Compteurs
   ================================================================ */

/* --- Keyframe commun --- */
@keyframes kaFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Hero entrance (séquentiel) --- */
.qfx-hero-badge  { animation: kaFadeUp 0.50s ease both; animation-delay: 0.05s; }
.qfx-hero-title  { animation: kaFadeUp 0.60s ease both; animation-delay: 0.18s; }
.qfx-hero-sub    { animation: kaFadeUp 0.60s ease both; animation-delay: 0.32s; }
.qfx-hero-ctas   { animation: kaFadeUp 0.60s ease both; animation-delay: 0.45s; }
.qfx-trust-bar   { animation: kaFadeUp 0.60s ease both; animation-delay: 0.58s; }
.qfx-hero-screen { animation: kaFadeUp 0.70s ease both; animation-delay: 0.72s; }

/* --- Scroll reveal --- */
.ka-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.ka-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   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;
    }
}

/* ============================================================
   CHAT TEASER — accroche discrète à côté de la bulle Chatwoot
   ============================================================ */
.ka-chat-teaser {
    position: fixed;
    right: 24px;
    bottom: 92px;            /* juste au-dessus de la bulle Chatwoot (~64px) */
    z-index: 2147483000;     /* sous l'iframe Chatwoot mais au-dessus du reste */
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 280px;
    padding: 13px 38px 13px 14px;
    background: #fff;
    border: 1px solid var(--blue-mid, #dce7ff);
    border-radius: 16px 16px 4px 16px;
    box-shadow: 0 12px 32px -8px rgba(15, 31, 92, 0.28),
                0 4px 12px -4px rgba(15, 31, 92, 0.16);
    cursor: pointer;
    font-family: var(--sans, system-ui, sans-serif);
    /* État caché par défaut */
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity .35s ease, transform .35s cubic-bezier(.21,1.02,.73,1), visibility .35s;
}
.ka-chat-teaser.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: kaTeaserNudge 2.6s ease 1s 2;
}
@keyframes kaTeaserNudge {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-4px) scale(1.015); }
}
.ka-chat-teaser:hover {
    border-color: var(--blue, #4b7cf4);
    box-shadow: 0 16px 38px -8px rgba(15, 31, 92, 0.34);
}
.ka-chat-teaser-avatar {
    flex: 0 0 auto;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--blue, #4b7cf4);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px;
    box-shadow: 0 0 0 3px rgba(75, 124, 244, 0.18);
}
.ka-chat-teaser-text {
    display: flex; flex-direction: column;
    font-size: 13px; line-height: 1.35;
    color: var(--fg-dim, #3a4570);
}
.ka-chat-teaser-text strong {
    color: var(--navy, #0f1f5c);
    font-size: 14px; font-weight: 700;
    margin-bottom: 1px;
}
.ka-chat-teaser-close {
    position: absolute;
    top: 6px; right: 8px;
    width: 22px; height: 22px;
    padding: 0; border: 0;
    background: transparent;
    color: var(--fg-mute, #8a93b8);
    font-size: 19px; line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    transition: background .15s, color .15s;
}
.ka-chat-teaser-close:hover {
    background: var(--blue-light, #eef2fe);
    color: var(--navy, #0f1f5c);
}

/* Mobile : on garde le teaser mais un peu plus compact */
@media (max-width: 600px) {
    .ka-chat-teaser {
        right: 16px;
        bottom: 84px;
        max-width: calc(100vw - 90px);
    }
}

/* ============================================================
   reCAPTCHA v3 — badge masqué (mention légale affichée sous le form)
   ============================================================ */
.grecaptcha-badge {
    visibility: hidden;   /* évite le chevauchement avec la bulle Chatwoot */
}
.flx-form-recaptcha-note {
    margin: 14px 0 0;
    font-size: 11.5px;
    line-height: 1.5;
    color: var(--fg-mute, #8a93b8);
}
.flx-form-recaptcha-note a {
    color: var(--fg-dim, #3a4570);
    text-decoration: underline;
}
.flx-form-recaptcha-note a:hover {
    color: var(--blue, #4b7cf4);
}

/* ============================================================
   STATS BAND — barre de preuves/crédibilité (après le hero)
   ============================================================ */
.qfx-stats-band {
    background: #fff;
    padding: 56px 0;
}
.qfx-stat {
    padding: 8px 12px;
    position: relative;
}
/* Séparateur vertical entre stats (desktop) */
.qfx-stat:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    width: 1px; height: 56px;
    background: var(--line-soft);
}
.qfx-stat-num {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}
.qfx-stat-lbl {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fg-mute);
}
/* Sur mobile (2 colonnes) : on retire les séparateurs verticaux */
@media (max-width: 991px) {
    .qfx-stat::after { display: none; }
    .qfx-stats-band { padding: 40px 0; }
}

/* ============================================================
   OFFRES — grille 2 colonnes + toggle facturation (page /abonnements)
   ============================================================ */
.qfx-section-soft { background: var(--bg-soft); }

/* En-tête de ligne d'offres — plus compact que le titre de page */
.qfx-ligne-header { margin-bottom: 36px; }
.qfx-ligne-title { font-size: clamp(26px, 3.2vw, 40px) !important; }

/* Section de tête de la page Offre web — dégage la nav fixe */
.qfx-offre-lead { padding-top: 128px; }
@media (max-width: 768px) { .qfx-offre-lead { padding-top: 100px; } }

/* Aperçu mockup (laptop + mobile) sur la page Offre web */
.qfx-offre-showcase {
    max-width: 940px; margin: 8px auto 48px; text-align: center;
}
.qfx-offre-showcase img {
    width: 100%; height: auto; display: block;
}

.qfx-pricing-grid.is-duo {
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px; margin-left: auto; margin-right: auto;
}

/* Toggle one-shot / abonnement */
.qfx-billing-switch {
    display: inline-flex; gap: 4px; margin: 0 auto 8px;
    background: var(--blue-light); border-radius: var(--radius-pill); padding: 4px;
}
.qfx-billing-opt {
    border: 0; background: transparent; cursor: pointer;
    display: flex; flex-direction: column; align-items: center; line-height: 1.15;
    padding: 9px 22px; border-radius: var(--radius-pill);
    font-size: 14px; font-weight: 700; color: var(--fg-dim);
    transition: background .15s, color .15s, box-shadow .15s;
}
.qfx-billing-opt span {
    font-size: 10px; font-weight: 500; text-transform: uppercase;
    letter-spacing: 0.06em; opacity: 0.75; margin-top: 2px;
}
.qfx-billing-opt.is-active {
    background: #fff; color: var(--navy);
    box-shadow: 0 2px 8px rgba(15, 31, 92, 0.12);
}
/* Affichage conditionnel des prix selon le mode choisi */
.qfx-billing[data-billing="oneshot"] .qfx-price-abo { display: none; }
.qfx-billing[data-billing="abo"] .qfx-price-oneshot { display: none; }

/* Astérisque HT sur les prix */
.qfx-price-star {
    font-size: 0.45em; font-weight: 700; color: var(--blue);
    vertical-align: super; margin-left: 1px;
}
.qfx-price-card-featured .qfx-price-star { color: #93b8ff; }

/* Pied de page offres */
.qfx-offers-foot {
    max-width: 760px; margin: 40px auto 0; text-align: center;
    font-size: 13px; line-height: 1.6; color: var(--fg-mute);
}

@media (max-width: 768px) {
    .qfx-pricing-grid.is-duo { grid-template-columns: 1fr; max-width: 420px; }
}
