
  :root {
    --navy: #0B3554;
    --navy-dark: #061E33;
    --orange: #F39F61;
    --amber: #D97A3A;
    --cream: #F8E3CE;
    --bg: #F3F1EA;
    --sage: #4E725A;
    --green: #16A34A;
    --ink-soft: rgba(11, 53, 84, 0.72);
    --ink-faint: rgba(11, 53, 84, 0.55);
    --line: rgba(11, 53, 84, 0.12);
    --display: 'Fraunces', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
    --body: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  }
  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
  }
  /* Neutralise les contraintes de largeur du conteneur hôte (reset de la preview) */
  html, body { max-width: none !important; width: 100% !important; margin: 0 !important; padding: 0 !important; }
  body { background: var(--bg); color: var(--navy); font-family: var(--body); line-height: 1.6; }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
  a { color: inherit; }
  a:focus-visible, button:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 6px; }
  h1, h2, h3 { text-wrap: balance; }
  .page[hidden] { display: none; }

  /* ── Header ─────────────────────────────────────────── */
  .top {
    position: sticky; top: 0; z-index: 50;
    background: rgba(243, 241, 234, 0.92); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .top-in { display: flex; align-items: center; gap: 24px; padding: 14px 0; }
  .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
  .brand img { width: 34px; height: 34px; }
  .brand b { font-family: var(--display); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }
  .top nav { display: flex; gap: 20px; font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); }
  .top nav a { text-decoration: none; padding-bottom: 2px; border-bottom: 2px solid transparent; }
  .top nav a:hover { color: var(--navy); }
  .top nav a.active { color: var(--navy); border-bottom-color: var(--orange); }
  .btn {
    display: inline-block; text-decoration: none; font-weight: 600; font-size: 0.92rem;
    padding: 10px 20px; border-radius: 10px; transition: background 0.15s, transform 0.15s;
  }
  .btn-primary { background: var(--orange); color: #fff; }
  .btn-primary:hover { background: var(--amber); transform: translateY(-1px); }
  .btn-ghost { border: 1px solid var(--line); color: var(--navy); }
  .btn-ghost:hover { background: rgba(11, 53, 84, 0.05); }
  .btn-big { padding: 14px 28px; font-size: 1rem; border-radius: 12px; }
  @media (max-width: 860px) { .top nav { display: none; } }

  /* ── Hero ───────────────────────────────────────────── */
  .hero { background: var(--navy-dark); color: #fff; position: relative; overflow: hidden; padding: 84px 0 200px; }
  .hero svg.curve { position: absolute; inset: auto 0 0 0; width: 100%; height: 46%; opacity: 0.5; }
  .hero-in { position: relative; max-width: 820px; margin: 0 auto; padding: 0 24px; text-align: center; }
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--cream); border: 1px solid rgba(248, 227, 206, 0.35);
    padding: 6px 14px; border-radius: 999px; margin-bottom: 28px;
  }
  .pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
  .hero h1 {
    font-family: var(--display); font-weight: 600; letter-spacing: -0.015em;
    font-size: clamp(2.3rem, 5.4vw, 3.9rem); line-height: 1.08; margin-bottom: 22px;
  }
  .hero h1 em { font-style: italic; color: var(--orange); }
  .hero p.lead { font-size: 1.08rem; line-height: 1.65; color: rgba(255, 255, 255, 0.78); max-width: 640px; margin: 0 auto 34px; }
  .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
  .hero .btn-ghost { border-color: rgba(255, 255, 255, 0.3); color: #fff; }
  .hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }
  .hero-stats { display: flex; gap: 34px; justify-content: center; flex-wrap: wrap; font-size: 0.88rem; color: rgba(255, 255, 255, 0.66); }
  .hero-stats b { color: var(--cream); font-weight: 600; }

  .shot-wrap { margin-top: -150px; position: relative; z-index: 2; }
  .shot {
    background: #fff; border-radius: 16px; overflow: hidden;
    box-shadow: 0 30px 80px rgba(6, 30, 51, 0.35), 0 4px 16px rgba(6, 30, 51, 0.18);
    border: 1px solid rgba(6, 30, 51, 0.14);
  }
  .shot-bar { display: flex; align-items: center; gap: 7px; padding: 11px 16px; background: #EEEBE2; border-bottom: 1px solid var(--line); }
  .shot-bar i { width: 11px; height: 11px; border-radius: 50%; background: #D8D3C6; }
  .shot-bar span {
    margin-left: 10px; font-size: 0.75rem; color: var(--ink-faint);
    background: #fff; border-radius: 6px; padding: 3px 14px;
  }
  .shot img { display: block; width: 100%; height: auto; }
  .shot-caption { text-align: center; font-size: 0.82rem; color: var(--ink-faint); margin-top: 14px; font-style: italic; font-family: var(--display); }
  .shot-mid { max-width: 920px; margin: 6px auto 12px; }
  .shot-mid + .shot-caption { margin-bottom: 40px; }

  /* ── Blocs communs ──────────────────────────────────── */
  .credo { padding: 76px 0 30px; }
  .credo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .credo-item { border-top: 3px solid var(--orange); padding-top: 18px; }
  .credo-item h3 { font-family: var(--display); font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
  .credo-item p { font-size: 0.92rem; color: var(--ink-soft); }
  @media (max-width: 820px) { .credo-grid { grid-template-columns: 1fr; gap: 24px; } }

  .section { padding: 72px 0; }
  .section.tight { padding: 48px 0; }
  .eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; }
  .section h2, .page-head h1 { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 14px; }
  .section p.sub, .page-head p.sub { color: var(--ink-soft); max-width: 780px; margin-bottom: 44px; }

  .page-head { padding: 64px 0 8px; }
  .page-head h1 em { font-style: italic; color: var(--amber); }

  .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .feat {
    background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--orange);
    border-radius: 16px; padding: 24px 22px; display: flex; flex-direction: column;
  }
  .feat h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
  .feat p { font-size: 0.9rem; color: var(--ink-soft); flex: 1; }
  .feat a { font-size: 0.85rem; font-weight: 600; color: var(--amber); text-decoration: none; margin-top: 14px; }
  .feat a:hover { text-decoration: underline; }
  @media (max-width: 980px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .feat-grid { grid-template-columns: 1fr; } }

  .dive { display: grid; grid-template-columns: 5fr 6fr; gap: 52px; align-items: center; padding: 56px 0; }
  .dive.flip .dive-txt { order: 2; }
  .dive h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 14px; }
  .dive p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 12px; }
  .dive ul { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
  .dive li { padding-left: 26px; position: relative; font-size: 0.93rem; }
  .dive li::before { content: "→"; position: absolute; left: 0; color: var(--amber); font-weight: 700; }
  .dive .shot { border-radius: 12px; }
  @media (max-width: 880px) { .dive { grid-template-columns: 1fr; gap: 28px; } .dive.flip .dive-txt { order: 0; } }

  /* ── Page Fonctionnalités : catégories + checklists ── */
  .cat { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px 32px 26px; margin-bottom: 22px; }
  .cat h3 { font-family: var(--display); font-size: 1.35rem; font-weight: 600; margin-bottom: 6px; }
  .cat > p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 20px; max-width: 720px; }
  .checks { list-style: none; columns: 3; column-gap: 34px; }
  .checks.two { columns: 2; }
  .checks li {
    break-inside: avoid; font-size: 0.9rem; color: var(--ink-soft);
    padding: 5px 0 5px 24px; position: relative;
  }
  .checks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
  .checks li b { color: var(--navy); font-weight: 600; }
  @media (max-width: 980px) { .checks { columns: 2; } }
  @media (max-width: 640px) { .checks, .checks.two { columns: 1; } }

  /* ── Tarifs ─────────────────────────────────────────── */
  .beta-note {
    background: var(--cream); border-radius: 14px; padding: 18px 24px; margin-bottom: 36px;
    font-size: 0.95rem; display: flex; gap: 12px; align-items: baseline; flex-wrap: wrap;
  }
  .beta-note b { font-family: var(--display); white-space: nowrap; }
  .price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); gap: 22px; justify-content: center; }
  .price-grid.solo { grid-template-columns: minmax(0, 620px); }
  .price {
    background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px;
    display: flex; flex-direction: column;
  }
  .price.hot { border: 2px solid var(--orange); position: relative; }
  .price.hot .tag {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--orange); color: #fff; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 14px; border-radius: 999px;
  }
  .price h3 { font-family: var(--display); font-size: 1.25rem; font-weight: 600; margin-bottom: 4px; }
  .price .who { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 18px; }
  .price .amount { font-variant-numeric: tabular-nums; font-size: 2.2rem; font-weight: 700; letter-spacing: -0.02em; }
  .price .amount small { font-size: 0.9rem; font-weight: 500; color: var(--ink-faint); letter-spacing: 0; }
  .price ul { list-style: none; margin: 20px 0 26px; display: grid; gap: 9px; flex: 1; }
  .price li { font-size: 0.9rem; padding-left: 22px; position: relative; color: var(--ink-soft); }
  .price li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
  .price li.hdr { padding-left: 0; font-weight: 600; color: var(--navy); }
  .price li.hdr::before { content: none; }
  .price .btn { text-align: center; }
  .price .alt { font-size: 0.9rem; color: var(--ink-soft); margin-top: 8px; }
  .price .alt b { color: var(--navy); font-weight: 600; }
  .price .free { font-size: 0.85rem; color: var(--green); font-weight: 600; margin-top: 12px; }
  .price ul.two { columns: 2; column-gap: 30px; display: block; }
  .price ul.two li { break-inside: avoid; margin-bottom: 9px; }
  .price-foot { font-size: 0.8rem; color: var(--ink-faint); margin-top: 22px; font-style: italic; text-align: center; }
  @media (max-width: 820px) { .price-grid, .price-grid.solo { grid-template-columns: 1fr; } .price ul.two { columns: 1; } }

  /* ── Sécurité ───────────────────────────────────────── */
  .sec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sec {
    background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px;
  }
  .sec h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
  .sec h3::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--sage); flex-shrink: 0; }
  .sec p { font-size: 0.9rem; color: var(--ink-soft); }
  @media (max-width: 720px) { .sec-grid { grid-template-columns: 1fr; } }
  .sec-note {
    margin-top: 34px; border-left: 4px solid var(--orange); background: #fff;
    border-radius: 0 14px 14px 0; padding: 20px 24px; font-size: 0.92rem; color: var(--ink-soft);
  }

  /* ── FAQ ────────────────────────────────────────────── */
  .faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 22px; margin-bottom: 12px; }
  .faq summary { cursor: pointer; font-weight: 600; font-size: 0.98rem; padding: 14px 0; list-style: none; position: relative; padding-right: 30px; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); font-size: 1.3rem; color: var(--amber); font-weight: 400; }
  .faq details[open] summary::after { content: "–"; }
  .faq details p { padding: 0 0 18px; font-size: 0.92rem; color: var(--ink-soft); max-width: 720px; }

  /* ── CTA final + footer ─────────────────────────────── */
  .final { padding: 30px 0 90px; }
  .final-card {
    background: var(--navy); color: #fff; border-radius: 22px; padding: 60px 40px; text-align: center;
  }
  .final-card h2 { font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 12px; }
  .final-card h2 em { font-style: italic; color: var(--orange); }
  .final-card p { color: rgba(255, 255, 255, 0.75); margin-bottom: 30px; max-width: 540px; margin-inline: auto; }
  footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.65); padding: 44px 0; font-size: 0.85rem; }
  .foot-in { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
  .foot-in .brand b { color: #fff; font-size: 1.05rem; }
  .foot-links { display: flex; gap: 20px; margin-left: auto; flex-wrap: wrap; }
  .foot-links a { text-decoration: none; }
  .foot-links a:hover { color: #fff; }
  .foot-legal { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.78rem; color: rgba(255, 255, 255, 0.45); }
