
  /* Variables de marque injectées par le MU-plugin litl-brand (wp_head) */

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    background: var(--brand-primary);
    color: var(--brand-text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ═══════════════════════════════════════════════════════
     WIREFRAME UTILITIES
     ═══════════════════════════════════════════════════════ */
  .placeholder {
    display: inline-block;
    color: var(--brand-text-dim);
    font-style: italic;
    font-weight: 400;
    background: rgba(249,93,51,0.04);
    border: 1px dashed rgba(249,93,51,0.25);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.92em;
  }
  .placeholder.block {
    display: block;
    padding: 16px 20px;
    margin: 8px 0;
  }

  /* ── Image placeholders ── */
  .img-placeholder {
    background: linear-gradient(135deg, rgba(249,93,51,0.04) 0%, rgba(249,93,51,0.08) 100%);
    border: 2px dashed rgba(249,93,51,0.35);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--brand-text-muted);
    font-size: 12px;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
  }
  .img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 12px,
      rgba(249,93,51,0.025) 12px,
      rgba(249,93,51,0.025) 13px
    );
    pointer-events: none;
  }
  .img-placeholder .ph-icon {
    width: 48px;
    height: 48px;
    color: var(--brand-accent);
    opacity: 0.8;
    position: relative;
    z-index: 1;
  }
  .img-placeholder .ph-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .img-placeholder .label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-accent);
    opacity: 0.95;
    position: relative;
    z-index: 1;
  }
  .img-placeholder .desc {
    font-size: 11px;
    color: var(--brand-text-muted);
    max-width: 90%;
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }

  /* ── Source badge (which HTML file the section comes from) ── */
  .src-tag {
    position: absolute;
    top: 12px;
    right: 16px;
    background: var(--brand-accent);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 4px 9px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0.9;
    pointer-events: none;
  }
  body.hide-sources .src-tag { display: none; }

  /* ── Section labels in wireframe mode ── */
  .wf-section {
    position: relative;
    border: 1px dashed transparent;
    transition: border-color 0.3s;
  }
  body.show-wireframe .wf-section {
    border-color: rgba(249,93,51,0.4);
  }
  body.show-wireframe .wf-section::before {
    content: attr(data-section-name);
    position: absolute;
    top: -11px;
    left: 24px;
    /* IMPORTANT : reset des propriétés héritées de .hero::before (width/height/right
       à 700px/-200px) qui transformaient sinon ce label en rectangle solide
       de 700x700 px masquant tout le contenu hero-inner */
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    background: var(--brand-primary);
    color: var(--brand-accent);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 0 10px;
    text-transform: uppercase;
    z-index: 5;
  }

  /* ── Brand variable highlight (always visible) ── */
  body.show-vars [data-brand-var]:not(.img-placeholder):not(.hero-bg-placeholder) {
    background: rgba(249,93,51,0.12);
    outline: 1px dashed rgba(249,93,51,0.6);
    outline-offset: 2px;
    border-radius: 2px;
    position: relative;
  }
  body.show-vars [data-brand-var]:not(.img-placeholder):not(.hero-bg-placeholder)::after {
    content: '{{ ' attr(data-brand-var) ' }}';
    position: absolute;
    top: -14px;
    left: 0;
    background: var(--brand-accent);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 2px 2px 0 0;
    white-space: nowrap;
    text-transform: lowercase;
    letter-spacing: 0;
    pointer-events: none;
    z-index: 50;
    line-height: 1.4;
  }
  /* Image placeholders carry their own visible label with a {{ var }} chip */
  body.show-vars .img-placeholder[data-brand-var]::before,
  body.show-vars .hero-bg-placeholder[data-brand-var]::before {
    content: '{{ ' attr(data-brand-var) ' }}';
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--brand-accent);
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 3px;
    text-transform: lowercase;
    letter-spacing: 0;
    z-index: 3;
    pointer-events: none;
  }
  /* Avoid overlapping tags when nested vars are close */
  body.show-vars [data-brand-var] [data-brand-var]:not(.img-placeholder):not(.hero-bg-placeholder)::after {
    top: -10px;
  }

  /* ═══════════════════════════════════════════════════════
     SECTION 01 — NAV
     ═══════════════════════════════════════════════════════ */
  .nav-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--brand-divider);
    padding: 18px 0;
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.5px;
  }
  .nav-logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: var(--brand-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
  }
  .nav-logo-sub {
    font-size: 13px;
    color: var(--brand-text-muted);
    font-weight: 500;
    margin-left: 2px;
  }
  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
  }
  .nav-links a {
    color: var(--brand-text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--brand-accent); }

  .btn-primary {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    background: var(--brand-accent);
    color: #fff;
    border: none;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
  }
  .btn-primary:hover {
    background: var(--brand-accent-dark);
    transform: translateY(-1px);
  }
  .btn-secondary {
    background: transparent;
    color: var(--brand-text);
    border: 1px solid rgba(13,27,42,0.22);
    padding: 12px 22px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
  }
  .btn-secondary:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
  }

  /* ═══════════════════════════════════════════════════════
     SECTION 02 — HERO
     ═══════════════════════════════════════════════════════ */
  .hero {
    padding: 100px 32px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--brand-accent-glow) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-bg-placeholder {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(249,93,51,0.04) 0%, rgba(249,93,51,0.07) 100%);
    border: 2px dashed rgba(249,93,51,0.25);
    /* Plus de flex : on positionne le label en absolu pour le contraindre
       à un coin (top-left), sans risque de débordement vers le contenu */
    overflow: hidden;
  }
  .hero-bg-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 18px,
      rgba(249,93,51,0.025) 18px,
      rgba(249,93,51,0.025) 19px
    );
    pointer-events: none;
  }
  .hero-bg-placeholder .bg-label {
    /* Repositionné en bottom-right (zone padding du hero, hors contenu hero-inner
       qui est centré verticalement et occupe les colonnes gauche/droite) */
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 2;
    background: rgba(0,0,0,0.88);
    border: 1px solid rgba(249,93,51,0.4);
    border-radius: 6px;
    padding: 10px 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    backdrop-filter: blur(4px);
    /* Largeur contrainte selon le viewport, pas le parent */
    max-width: min(300px, calc(100vw - 48px));
    box-sizing: border-box;
  }
  .hero-bg-placeholder .bg-label .bg-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--brand-accent);
    margin-top: 1px;
  }
  .hero-bg-placeholder .bg-label .bg-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .hero-bg-placeholder .bg-label .bg-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hero-bg-placeholder .bg-label .bg-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--brand-accent);
    font-weight: 500;
  }
  .hero-bg-placeholder .bg-label .bg-desc {
    font-size: 10px;
    color: var(--brand-text-muted);
    line-height: 1.4;
  }
  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 28px;
    padding: 6px 12px;
    background: rgba(249,93,51,0.08);
    border-radius: 4px;
    border: 1px solid rgba(249,93,51,0.2);
  }
  .hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 68px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 24px;
  }
  .hero h1 em {
    color: var(--brand-accent);
    font-style: normal;
    font-weight: 700;
  }
  .hero p.subtitle {
    font-size: 18px;
    color: var(--brand-text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 480px;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    padding: 18px 28px;
    font-size: 12px;
  }
  .btn-text {
    background: transparent !important;
    border-color: transparent !important;
    color: var(--brand-text-muted) !important;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(249,93,51,0.4);
  }
  .btn-text:hover {
    color: var(--brand-accent) !important;
    text-decoration-color: var(--brand-accent);
  }
  .hero-reassurance {
    display: flex;
    gap: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--brand-divider);
  }
  .hero-reassurance .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--brand-text-muted);
  }
  .hero-reassurance .item .dot {
    width: 6px;
    height: 6px;
    background: var(--brand-accent);
    border-radius: 50%;
  }

  .hero-visual {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .hero-visual .img-placeholder {
    aspect-ratio: 3/4;
    width: 100%;
    max-width: 440px;
    min-height: 520px;
  }

  /* ═══════════════════════════════════════════════════════
     SECTION 03 — STEPS (Comment ça marche)
     ═══════════════════════════════════════════════════════ */
  .steps {
    padding: 100px 32px;
    background: var(--brand-tertiary);
    border-top: 1px solid var(--brand-divider);
    border-bottom: 1px solid var(--brand-divider);
  }
  .section-header {
    max-width: 1280px;
    margin: 0 auto 56px;
    text-align: center;
  }
  .section-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 16px;
    display: inline-block;
  }
  .section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .section-header p {
    color: var(--brand-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
  }
  .steps-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .step-card {
    padding: 36px 28px;
    background: var(--brand-card);
    border: 1px solid var(--brand-card-border);
    border-radius: 16px;
    position: relative;
  }
  .step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-accent);
    margin-bottom: 16px;
    letter-spacing: 1px;
  }
  .step-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .step-card p {
    color: var(--brand-text-muted);
    font-size: 14px;
    line-height: 1.6;
  }

  /* ═══════════════════════════════════════════════════════
     SECTION 04 — FEATURES (Bénéfices)
     ═══════════════════════════════════════════════════════ */
  .features {
    padding: 100px 32px;
  }
  .features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .feature-card {
    padding: 32px 24px;
    background: var(--brand-card);
    border: 1px solid var(--brand-card-border);
    border-radius: 14px;
    transition: border-color 0.2s;
  }
  .feature-card:hover {
    border-color: rgba(249,93,51,0.35);
  }
  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(249,93,51,0.1);
    color: var(--brand-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
  }
  .feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .feature-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .feature-card p {
    color: var(--brand-text-muted);
    font-size: 13px;
    line-height: 1.55;
  }

  /* ═══════════════════════════════════════════════════════
     SECTION 05 — SPECS (Fiche technique)
     ═══════════════════════════════════════════════════════ */
  .specs {
    padding: 100px 32px;
    background: var(--brand-tertiary);
    border-top: 1px solid var(--brand-divider);
    border-bottom: 1px solid var(--brand-divider);
  }
  .specs-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
  }
  .specs-visual .img-placeholder {
    aspect-ratio: 1/1;
    width: 100%;
  }
  .specs-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 14px;
  }
  .specs-intro {
    color: var(--brand-text-muted);
    margin-bottom: 32px;
    font-size: 15px;
  }
  .specs-table {
    border-top: 1px solid var(--brand-divider);
  }
  .specs-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid var(--brand-divider);
    font-size: 13px;
  }
  .specs-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-text-muted);
    padding-top: 2px;
  }
  .specs-value {
    color: var(--brand-text);
    font-weight: 500;
  }
  .specs-disclaimer {
    margin-top: 24px;
    padding: 14px 16px;
    background: rgba(249,93,51,0.05);
    border-left: 3px solid var(--brand-accent);
    border-radius: 4px;
    font-size: 12px;
    color: var(--brand-text-muted);
    line-height: 1.5;
  }

  /* ═══════════════════════════════════════════════════════
     SECTION 06 — TARGETS (Pour qui)
     ═══════════════════════════════════════════════════════ */
  .targets {
    padding: 100px 32px;
  }
  .targets-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .target-card {
    padding: 0;
    background: var(--brand-card);
    border: 1px solid var(--brand-card-border);
    border-radius: 14px;
    text-align: left;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
  }
  .target-card:hover {
    border-color: rgba(13,27,42,0.18);
    transform: translateY(-3px);
  }
  .target-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }
  .target-card-body {
    padding: 20px 18px;
  }
  .target-icon {
    font-size: 28px;
    margin-bottom: 14px;
    color: var(--brand-accent);
  }
  .target-icon img,
  .feature-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    /* Filtre pour rendre les pictos turquoise vers blanc (s'intègre à toutes palettes sombres) */
    filter: brightness(0) invert(1) opacity(0.85);
    transition: filter 0.2s, opacity 0.2s;
  }
  .feature-card:hover .feature-icon img {
    filter: brightness(0) invert(1) opacity(1);
  }
  .target-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .target-card p {
    color: var(--brand-text-muted);
    font-size: 12px;
    line-height: 1.5;
  }

  /* ═══════════════════════════════════════════════════════
     SECTION 07 — SECURITY (Certifications)
     ═══════════════════════════════════════════════════════ */
  .security {
    padding: 100px 32px;
    background: var(--brand-tertiary);
    border-top: 1px solid var(--brand-divider);
    border-bottom: 1px solid var(--brand-divider);
  }
  .security-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .security-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 14px;
    line-height: 1.1;
  }
  .security-content p {
    color: var(--brand-text-muted);
    margin-bottom: 28px;
  }
  .cert-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cert-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--brand-card);
    border: 1px solid var(--brand-card-border);
    border-radius: 8px;
    font-size: 12px;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .cert-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--brand-accent);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .security-visual .img-placeholder {
    aspect-ratio: 4/5;
    width: 100%;
  }

  /* ═══════════════════════════════════════════════════════
     SECTION 08 — PRICING
     ═══════════════════════════════════════════════════════ */
  .pricing {
    padding: 100px 32px;
  }
  .pricing-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 56px 48px;
    background: var(--brand-card);
    border: 1px solid var(--brand-accent);
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 60px rgba(249,93,51,0.08);
  }
  .pricing-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 20px;
  }
  .pricing-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
  }
  .price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--brand-accent);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
  }
  .price-currency {
    font-size: 32px;
    color: var(--brand-text-muted);
    font-weight: 500;
    margin-left: 6px;
  }
  .price-mention {
    font-size: 13px;
    color: var(--brand-text-muted);
    margin-bottom: 36px;
  }
  .pricing-features {
    list-style: none;
    text-align: left;
    margin: 0 auto 36px;
    max-width: 380px;
  }
  .pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--brand-divider);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .pricing-features li::before {
    content: '✓';
    color: var(--brand-accent);
    font-weight: 700;
  }
  .pricing-features li:last-child { border-bottom: none; }
  .pricing-disclaimer {
    margin-top: 24px;
    padding: 12px 16px;
    background: rgba(249,93,51,0.05);
    border-left: 3px solid var(--brand-accent);
    border-radius: 4px;
    font-size: 11px;
    color: var(--brand-text-muted);
    text-align: left;
  }

  /* ═══════════════════════════════════════════════════════
     SECTION 09 — FAQ
     ═══════════════════════════════════════════════════════ */
  .faq {
    padding: 100px 32px;
    background: var(--brand-tertiary);
    border-top: 1px solid var(--brand-divider);
    border-bottom: 1px solid var(--brand-divider);
  }
  .faq-inner {
    max-width: 880px;
    margin: 0 auto;
  }
  .faq-list {
    margin-top: 48px;
  }
  .faq-item {
    border-bottom: 1px solid var(--brand-divider);
  }
  .faq-item summary {
    padding: 24px 0;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 500;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    color: var(--brand-accent);
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.2s;
  }
  .faq-item[open] summary::after {
    transform: rotate(45deg);
  }
  .faq-item summary:hover { color: var(--brand-accent); }
  .faq-answer {
    padding: 0 0 24px;
    color: var(--brand-text-muted);
    font-size: 14px;
    line-height: 1.7;
  }

  /* ═══════════════════════════════════════════════════════
     SECTION 10 — CTA FINAL
     ═══════════════════════════════════════════════════════ */
  .cta-final {
    padding: 140px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Version Corail de la charte (accroche / zone de conversion) */
    background: linear-gradient(160deg, #f95d33 0%, #e54a22 100%);
  }
  .cta-final::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.14) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
  }
  /* CTA final = fond corail → texte blanc + boutons inversés */
  .cta-final h2,
  .cta-final h2 em,
  .cta-final p { color: #fff !important; }
  .cta-final .btn-primary { background: #fff; color: var(--brand-accent); }
  .cta-final .btn-primary:hover { background: var(--brand-night); color: #fff; }
  .cta-final .btn-secondary { border-color: rgba(255,255,255,0.6); color: #fff; }
  .cta-final .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }
  .cta-final-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .cta-final h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 24px;
  }
  .cta-final h2 em {
    color: var(--brand-accent);
    font-style: normal;
  }
  .cta-final p {
    color: var(--brand-text-muted);
    font-size: 17px;
    max-width: 540px;
    margin: 0 auto 36px;
  }
  .cta-final .cta-img {
    aspect-ratio: 8/3;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 40px;
  }

  /* ═══════════════════════════════════════════════════════
     SECTION 11 — CONTACT
     ═══════════════════════════════════════════════════════ */
  .contact {
    padding: 100px 32px;
    background: var(--brand-tertiary);
    border-top: 1px solid var(--brand-divider);
    border-bottom: 1px solid var(--brand-divider);
  }
  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
  }
  .contact h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 14px;
  }
  .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .contact-form .full {
    grid-column: 1 / -1;
  }
  .contact-form label {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-text-muted);
    margin-bottom: 6px;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid var(--brand-card-border);
    color: var(--brand-text);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
  }
  .contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--brand-accent) 50%), linear-gradient(135deg, var(--brand-accent) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 32px;
  }
  .contact-form textarea { min-height: 120px; resize: vertical; }
  .contact-form input:focus,
  .contact-form textarea:focus,
  .contact-form select:focus {
    outline: none;
    border-color: var(--brand-accent);
  }
  /* Sub-section header inside form (Identité / Entreprise / Commande / Livraison) */
  .form-section {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--brand-divider);
  }
  .form-section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .form-section .form-section-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--brand-accent);
    background: rgba(249,93,51,0.1);
    border: 1px solid rgba(249,93,51,0.3);
    border-radius: 3px;
    padding: 2px 6px;
  }
  .form-section .form-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-text);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .form-section .form-section-hint {
    font-size: 11px;
    color: var(--brand-text-dim);
    font-style: italic;
    margin-left: auto;
  }
  /* Conditional sub-block (e.g. adresse postale visible only if "Livraison postale") */
  .form-conditional {
    grid-column: 1 / -1;
    padding: 14px;
    background: rgba(249,93,51,0.03);
    border-left: 3px solid var(--brand-accent);
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .form-conditional .full { grid-column: 1 / -1; }
  .form-conditional-tag {
    grid-column: 1 / -1;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 4px;
  }
  .form-rgpd {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    color: var(--brand-text-muted);
    line-height: 1.5;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--brand-divider);
  }
  .form-rgpd input { width: auto; margin-top: 3px; }
  .contact-info {
    background: var(--brand-card);
    border: 1px solid var(--brand-card-border);
    border-radius: 14px;
    padding: 32px;
    margin-top: 32px;
    height: fit-content;
  }
  .contact-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
  }
  .contact-info-row {
    padding: 10px 0;
    border-bottom: 1px solid var(--brand-divider);
    font-size: 13px;
    color: var(--brand-text-muted);
  }
  .contact-info-row strong {
    color: var(--brand-text);
    font-weight: 600;
  }
  .contact-info-row:last-child { border-bottom: none; }

  /* ═══════════════════════════════════════════════════════
     SECTION 12 — FOOTER
     ═══════════════════════════════════════════════════════ */
  footer {
    background: var(--brand-night);
    padding: 64px 32px 28px;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--brand-divider);
  }
  .footer-brand .nav-logo { margin-bottom: 16px; }
  .footer-brand p {
    color: var(--brand-text-dim);
    font-size: 13px;
    max-width: 320px;
    line-height: 1.6;
  }
  .footer-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 16px;
  }
  .footer-links {
    list-style: none;
  }
  .footer-links li,
  .footer-links a {
    color: var(--brand-text-muted);
    font-size: 13px;
    text-decoration: none;
    padding: 5px 0;
    display: block;
  }
  .footer-links a:hover { color: var(--brand-accent); }
  .footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 11px;
    color: var(--brand-text-dim);
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 1px;
  }
  .footer-powered {
    color: var(--brand-accent);
    opacity: 0.85;
  }
  /* Footer = fond bleu nuit → texte clair */
  footer .footer-brand p { color: rgba(255,255,255,0.55); }
  footer .footer-links li,
  footer .footer-links a { color: rgba(255,255,255,0.6); }
  footer .footer-links a:hover { color: var(--brand-accent); }
  footer .footer-bottom { color: rgba(255,255,255,0.45); }
  footer .footer-grid { border-bottom-color: rgba(255,255,255,0.12); }
  footer .nav-logo-word { color: #fff; }

  /* ═══ Wordmark LITL — "litl." minuscules + point corail ═══ */
  .nav-logo-word {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -1.5px;
    line-height: 1;
    color: var(--brand-text);
  }
  .nav-logo-word .logo-dot { color: var(--brand-accent); }


  /* ═══════════════════════════════════════════════════════
     MODE PRÉSENTATION — override des annotations wireframe
     (cache toutes les annotations debug pour rendu "site réel")
     ═══════════════════════════════════════════════════════ */
  .src-tag { display: none !important; }
  .wf-section { border-color: transparent !important; }
  .wf-section::before { display: none !important; }
  /* Override des chips wireframe SAUF pour les éléments qui ont leur propre style */
  [data-brand-var]:not(.nav-logo-mark) {
    background: transparent !important;
    outline: none !important;
    padding: 0 !important;
  }
  [data-brand-var]::after { display: none !important; }
  .placeholder {
    background: transparent !important;
    border: none !important;
    color: inherit !important;
    font-style: normal !important;
    padding: 0 !important;
    font-size: inherit !important;
  }
  /* Image placeholders : rendu propre */
  .img-placeholder {
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-tertiary) 100%) !important;
    border: 1px solid var(--brand-card-border) !important;
  }
  .img-placeholder::after { display: none !important; }
  .img-placeholder .ph-icon {
    color: var(--brand-text-dim) !important;
    opacity: 0.4 !important;
  }
  .img-placeholder .label,
  .img-placeholder .desc { display: none !important; }
  .hero-bg-placeholder {
    background: linear-gradient(135deg, rgba(249,93,51,0.05) 0%, rgba(249,93,51,0.02) 100%) !important;
    border: none !important;
  }
  .hero-bg-placeholder::after { display: none !important; }
  .hero-bg-placeholder .bg-label { display: none !important; }

  /* ═══════════════════════════════════════════════════════
     RESPONSIVE
     ═══════════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .hero h1 { font-size: 50px; }
    .hero-inner,
    .specs-inner,
    .security-inner,
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .steps-grid,
    .targets-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .nav-links { display: none; }
  }
  @media (max-width: 640px) {
    .hero h1 { font-size: 40px; }
    .cta-final h2 { font-size: 36px; }
    .section-header h2 { font-size: 32px; }
    .steps-grid,
    .targets-grid,
    .features-grid,
    .contact-form,
    .footer-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 36px 24px; }
    .price-amount { font-size: 48px; }
  }
