*, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--font-secondary);
    color: var(--text-body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  [data-division="formation"] { }
  h1, h2, h3, h4 { font-family: var(--font-primary); color: var(--text-strong); margin: 0; }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
  .accent { color: var(--accent-500); }
  .ital { font-style: italic; }

  /* ---------- Eyebrow ---------- */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-secondary);
    font-size: var(--fs-eyebrow); font-weight: 700;
    letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
    color: var(--accent-500);
    background: var(--accent-100);
    padding: 7px 14px; border-radius: var(--radius-pill);
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-secondary); font-weight: 600; font-size: 15px;
    padding: 15px 26px; border-radius: var(--radius-pill);
    border: 1px solid transparent; cursor: pointer;
    transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), background var(--dur-base);
    line-height: 1; white-space: nowrap;
  }
  .btn-primary { background: var(--accent-500); color: #fff; box-shadow: var(--glow-accent); }
  .btn-primary:hover { background: var(--accent-600); transform: translateY(-2px); }
  .btn-primary:active { transform: scale(0.98); }
  .btn-dark { background: var(--ink-900); color: #fff; }
  .btn-dark:hover { background: var(--ink-700); transform: translateY(-2px); }
  .btn-ghost { background: #fff; color: var(--text-strong); border-color: var(--border-strong); }
  .btn-ghost:hover { border-color: var(--accent-500); color: var(--accent-500); transform: translateY(-2px); }
  .btn-lg { padding: 17px 30px; font-size: 16px; }

  /* ---------- Nav ---------- */
  .nav-outer { position: sticky; top: 0; z-index: 100; padding: 16px 0; }
  .nav {
    max-width: 1180px; margin: 0 auto;
    display: flex; align-items: center; gap: 20px;
    background: rgba(255,255,255,0.82); backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-card); border-radius: var(--radius-pill);
    padding: 10px 12px 10px 16px; box-shadow: var(--shadow-sm);
  }
  .nav-back {
    height: 44px; padding: 0 16px 0 14px; flex: none; border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle); background: #fff;
    display: flex; align-items: center; gap: 9px; color: var(--ink-700);
  }
  .nav-back svg { width: 18px; height: 18px; }
  .nav-mark { width: 32px; height: 32px; border-radius: 8px; display: block; }
  .brand { display: flex; align-items: center; flex: none; }
  .brand-img { height: 26px; width: auto; display: block; }
  .nav-links { display: flex; align-items: center; gap: 2px; margin: 0 auto; }
  .nav-links a {
    display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
    font-size: 14.5px; font-weight: 500; color: var(--ink-800);
    padding: 9px 13px; border-radius: var(--radius-pill);
    transition: background var(--dur-fast), color var(--dur-fast);
  }
  .nav-links a svg { width: 15px; height: 15px; }
  .nav-links a:hover { background: var(--accent-050); color: var(--accent-500); }
  .nav-links a.active { color: var(--ink-900); }
  .nav-cta .btn, .btn.nav-cta { padding: 13px 22px; }
  .nav-cta svg { width: 16px; height: 16px; }
  .nav-cta { flex: none; }
  @media (max-width: 1080px) { .nav-links { display: none; } }

  /* ---------- Section rhythm ---------- */
  section { padding: 84px 0; }
  .section-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
  .section-head h2 { font-size: var(--fs-display-md); font-weight: 900; line-height: var(--lh-heading); letter-spacing: var(--ls-tight); }
  .section-head p { margin-top: 16px; font-size: var(--fs-body-lg); color: var(--text-muted); line-height: var(--lh-body); }

  .wash-blue { background: linear-gradient(180deg, var(--accent-050) 0%, #fff 70%); }
  .wash-blue-rev { background: linear-gradient(180deg, #fff 0%, var(--accent-050) 100%); }

  /* ---------- Hero ---------- */
  .hero { position: relative; padding: 56px 0 88px; background: radial-gradient(120% 80% at 70% 0%, var(--accent-050) 0%, #fff 60%); overflow: hidden; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
  .hero h1 {
    font-size: clamp(34px, 4.4vw, 56px); font-weight: 900; line-height: 1.05;
    letter-spacing: var(--ls-tight); margin: 22px 0 0;
  }
  .hero-sub { margin-top: 22px; font-size: var(--fs-body-lg); line-height: var(--lh-body); color: var(--text-body); max-width: 540px; }
  .hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 14px; }
  .stars { color: #f5a623; display: flex; gap: 2px; }
  .stars svg { width: 16px; height: 16px; fill: currentColor; }
  .trust-meta { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
  .trust-meta b { color: var(--text-strong); }

  .hero-visual { position: relative; }
  .media-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-float); aspect-ratio: 4/3.1; border: 1px solid var(--border-card);
  }
  .ph {
    width: 100%; height: 100%;
    background:
      linear-gradient(135deg, color-mix(in srgb, var(--accent-500) 16%, #fff), color-mix(in srgb, var(--accent-500) 4%, #fff));
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    color: var(--accent-500);
  }
  .ph svg { width: 34px; height: 34px; }
  .ph span { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: color-mix(in srgb, var(--accent-600) 75%, #555); text-align: center; padding: 0 20px; }
  .play-btn {
    position: absolute; inset: 0; margin: auto; width: 74px; height: 74px; border-radius: 50%;
    background: rgba(255,255,255,0.92); display: grid; place-items: center; color: var(--accent-500);
    box-shadow: var(--shadow-md);
  }
  .play-btn svg { width: 26px; height: 26px; fill: currentColor; margin-left: 3px; }
  .media-card img.fill { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* ---------- WhatsApp mockup ---------- */
  .wa-phone { width: 100%; max-width: 390px; margin: 0 auto; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-float); border: 1px solid var(--border-card); background: #e7ded6; font-family: var(--font-secondary); }
  .wa-head { display: flex; align-items: center; gap: 11px; background: #0c8a74; color: #fff; padding: 13px 15px; }
  .wa-head .wa-av { width: 38px; height: 38px; border-radius: 50%; background: #fff; display: grid; place-items: center; flex: none; }
  .wa-head .wa-av img { width: 30px; height: 30px; border-radius: 7px; }
  .wa-head b { font-size: 14.5px; font-weight: 600; display: block; line-height: 1.25; }
  .wa-head small { font-size: 11.5px; color: rgba(255,255,255,0.82); }
  .wa-head .wa-ico { margin-left: auto; display: flex; gap: 17px; color: rgba(255,255,255,0.92); }
  .wa-head .wa-ico svg { width: 18px; height: 18px; }
  .wa-body { padding: 16px 13px 14px; display: flex; flex-direction: column; gap: 9px; background-color: #e6ddd4; background-image: radial-gradient(rgba(0,0,0,0.022) 1px, transparent 1px); background-size: 16px 16px; }
  .wa-date { align-self: center; background: #d8e7f0; color: #5b6b78; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 8px; text-transform: capitalize; margin: 2px 0; }
  .wa-msg { max-width: 84%; border-radius: 12px; padding: 9px 12px 6px; font-size: 13.5px; line-height: 1.46; color: #0f1f1c; box-shadow: 0 1px 1px rgba(0,0,0,0.07); }
  .wa-msg p { margin: 0; }
  .wa-msg.out { align-self: flex-end; background: #d7f4c5; border-top-right-radius: 3px; }
  .wa-msg.in { align-self: flex-start; background: #fff; border-top-left-radius: 3px; }
  .wa-time { display: block; text-align: right; font-size: 10px; color: #7a8a86; margin-top: 3px; }
  .wa-time .ck { color: #34b7f1; font-weight: 700; }
  .wa-tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.02em; padding: 3px 9px; border-radius: 6px; margin-bottom: 6px; }
  .wa-tag.t1 { background: var(--accent-100); color: var(--accent-600); }
  .wa-tag.t2 { background: #e2f3eb; color: #137a52; }
  .wa-tag.t3 { background: #fdeede; color: #b5701a; }
  .wa-input { display: flex; align-items: center; gap: 10px; background: #f4efe9; padding: 10px 13px; }
  .wa-input .field { flex: 1; background: #fff; border-radius: 18px; padding: 9px 15px; color: #9aa0a3; font-size: 13px; }
  .wa-input .snd { width: 36px; height: 36px; border-radius: 50%; background: #0c8a74; display: grid; place-items: center; color: #fff; flex: none; }
  .wa-input .snd svg { width: 17px; height: 17px; }

  /* ---------- Persona visual (Public visé) ---------- */
  .persona-stage {
    position: relative; height: 100%; width: 100%; border-radius: var(--radius-lg); overflow: hidden;
    background:
      radial-gradient(120% 90% at 80% 0%, var(--accent-100) 0%, transparent 55%),
      linear-gradient(165deg, #fff 0%, var(--accent-050) 100%);
    border: 1px solid var(--border-card); box-shadow: var(--shadow-card);
    padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; justify-content: center;
  }
  .persona-stage::before {
    content: "K"; position: absolute; right: -18px; bottom: -40px; font-family: var(--font-primary);
    font-weight: 900; font-size: 200px; color: color-mix(in srgb, var(--accent-500) 7%, transparent);
    line-height: 1; pointer-events: none;
  }
  .persona-card {
    position: relative; z-index: 2; display: flex; align-items: center; gap: 14px;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--border-card); border-radius: 16px; box-shadow: var(--shadow-md);
    padding: 15px 17px;
  }
  .persona-card .pic {
    width: 50px; height: 50px; flex: none; border-radius: 13px; display: grid; place-items: center; color: #fff;
    background: linear-gradient(150deg, var(--accent-400), var(--accent-600));
  }
  .persona-card .pic svg { width: 25px; height: 25px; }
  .persona-card .who b { font-family: var(--font-primary); font-size: 15.5px; font-weight: 700; color: var(--ink-900); display: block; line-height: 1.2; }
  .persona-card .who span { font-size: 12.5px; color: var(--text-muted); }
  .persona-card .badge {
    margin-left: auto; flex: none; display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700; color: var(--accent-600);
    background: var(--accent-100); padding: 5px 10px; border-radius: var(--radius-pill);
  }
  .persona-card .badge svg { width: 13px; height: 13px; }
  .persona-card.mid { margin-left: 26px; }
  .persona-prog {
    position: relative; z-index: 2; margin-top: 6px; background: rgba(255,255,255,0.92);
    border: 1px solid var(--border-card); border-radius: 14px; box-shadow: var(--shadow-sm); padding: 16px 17px;
  }
  .persona-prog .row { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 600; margin-bottom: 9px; }
  .persona-prog .row .a { color: var(--text-muted); }
  .persona-prog .row .b { color: var(--accent-600); }
  .persona-prog .track { height: 8px; border-radius: var(--radius-pill); background: var(--accent-100); overflow: hidden; }
  .persona-prog .fill { height: 100%; width: 84%; border-radius: var(--radius-pill); background: linear-gradient(90deg, var(--accent-400), var(--accent-600)); }
  .float-chip {
    position: absolute; background: #fff; border: 1px solid var(--border-card);
    border-radius: 14px; box-shadow: var(--shadow-md); padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .float-chip .ic { width: 34px; height: 34px; flex: none; border-radius: 9px; background: var(--accent-100); color: var(--accent-500); display: grid; place-items: center; }
  .float-chip .ic svg { width: 18px; height: 18px; }
  .float-chip b { font-family: var(--font-primary); font-size: 17px; color: var(--ink-900); display: block; line-height: 1; }
  .float-chip small { font-size: 11px; color: var(--text-muted); }
  .chip-tl { top: -22px; left: -28px; }
  .chip-br { bottom: -22px; right: -26px; }
  .chip-mr { top: 50%; right: -30px; transform: translateY(-50%); }

  /* ---------- Qualiopi ---------- */
  .ql-solo { max-width: 940px; margin: 0 auto; background: #fff; border: 1px solid var(--border-card); border-radius: 22px; box-shadow: 0 10px 30px rgba(20,20,20,0.07); padding: 34px 40px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 40px; }
  .ql-solo .ql-media { display: flex; align-items: center; justify-content: center; padding-right: 40px; border-right: 1px solid var(--border-subtle); }
  .ql-solo .ql-media img { max-width: 100%; max-height: 180px; width: auto; height: auto; display: block; }
  .ql-solo p { font-size: 15px; line-height: 1.65; color: var(--text-muted); }
  .ql-solo p b { color: var(--ink-800); font-weight: 600; }
  @media (max-width: 700px){ .ql-solo { grid-template-columns: 1fr; gap: 24px; text-align: center; } .ql-solo .ql-media { border-right: none; border-bottom: 1px solid var(--border-subtle); padding-right: 0; padding-bottom: 24px; } }
  .qualiopi-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    max-width: 880px; margin: 0 auto;
  }
  .ql-card {
    background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card); padding: 32px 34px;
    display: flex; align-items: center; justify-content: center;
  }
  .ql-card p { font-size: 15px; line-height: 1.65; color: var(--text-muted); }
  .ql-card p b { color: var(--ink-800); font-weight: 600; }
  .ql-logo { text-align: center; }
  .ql-top { display: flex; align-items: center; justify-content: center; gap: 12px; }
  .ql-name { font-family: var(--font-primary); font-weight: 900; font-size: 30px; color: #1b2a6b; letter-spacing: -0.01em; line-height: 1; }
  .ql-arrows { display: flex; }
  .ql-arrows .a1, .ql-arrows .a2 { width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; }
  .ql-arrows .a1 { border-left: 13px solid #e30a17; }
  .ql-arrows .a2 { border-left: 13px solid #1b2a6b; margin-left: -4px; }
  .ql-sub { font-family: var(--font-secondary); font-size: 13px; color: var(--ink-700); margin-top: 7px; }
  .ql-rf { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; }
  .ql-flag { display: inline-flex; width: 26px; height: 17px; border-radius: 2px; overflow: hidden; box-shadow: 0 0 0 1px rgba(0,0,0,0.06); }
  .ql-flag i { flex: 1; }
  .ql-flag .b { background: #1b2a6b; } .ql-flag .w { background: #fff; } .ql-flag .r { background: #e30a17; }
  .ql-rf span { font-family: var(--font-secondary); font-weight: 700; font-size: 11px; letter-spacing: 0.04em; color: #1b2a6b; }
  @media (max-width: 700px){ .qualiopi-row { grid-template-columns: 1fr; } }

  /* ---------- Partner logos ---------- */
  .partners { text-align: center; }
  .partners .lead { font-family: var(--font-primary); font-size: clamp(20px,2.4vw,27px); font-weight: 800; color: var(--ink-900); line-height: 1.3; }
  .partners .lead i { display: block; color: var(--accent-500); font-style: italic; }
  .logo-strip { margin: 34px auto 0; max-width: 980px; border: 1px solid var(--border-card); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; }
  .logo-strip img { width: 100%; display: block; }
  .logo-marquee { margin-top: 38px; position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
  .logo-marquee .track { display: flex; align-items: center; gap: 22px; width: max-content; animation: logoScroll 48s linear infinite; }
  .logo-marquee:hover .track { animation-play-state: paused; }
  .logo-cell { flex: none; width: 188px; height: 104px; background: #fff; border: 1px solid var(--border-card); border-radius: 16px; box-shadow: 0 2px 10px rgba(20,20,20,0.05); display: grid; place-items: center; padding: 16px 24px; transition: box-shadow 220ms, transform 220ms; }
  .logo-cell:hover { box-shadow: 0 10px 26px rgba(20,20,20,0.1); transform: translateY(-3px); }
  @media (prefers-reduced-motion: reduce) { .logo-marquee .track { animation: none; flex-wrap: wrap; justify-content: center; } }
  .logo-cell img { max-width: 144px; max-height: 66px; width: auto; height: auto; object-fit: contain; display: block; }
  @keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 11px)); } }

  /* ---------- Two-col blocks ---------- */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .split.media-left { grid-template-columns: 0.9fr 1.1fr; }
  .block-eyebrow { margin-bottom: 18px; }
  .block h2 { font-size: var(--fs-display-md); font-weight: 900; line-height: 1.08; letter-spacing: var(--ls-tight); }
  .block .lead { margin-top: 18px; font-size: var(--fs-body-lg); line-height: var(--lh-body); color: var(--text-body); }

  .card {
    background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-md);
    box-shadow: var(--shadow-card); padding: 28px 30px;
  }
  .meta-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-500); }
  .check-list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
  .check-list li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.5; color: var(--text-body); }
  .check-list li svg { width: 20px; height: 20px; flex: none; color: var(--accent-500); margin-top: 1px; }

  .objective {
    margin-top: 22px; display: flex; gap: 14px; align-items: flex-start;
    background: var(--accent-050); border: 1px solid var(--accent-100); border-radius: var(--radius-md);
    padding: 18px 20px;
  }
  .objective svg { width: 22px; height: 22px; flex: none; color: var(--accent-500); margin-top: 2px; }
  .objective p { font-size: 15px; line-height: 1.5; color: var(--ink-800); }
  .objective b { color: var(--accent-600); }

  /* ---------- Format stat cards ---------- */
  .format-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .fmt-card {
    background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card); padding: 30px 26px; text-align: left;
    transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
  }
  .fmt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .fmt-card .chip { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-100); color: var(--accent-500); display: grid; place-items: center; margin-bottom: 20px; }
  .fmt-card .chip svg { width: 26px; height: 26px; }
  .fmt-card .big { font-family: var(--font-primary); font-weight: 900; font-size: 22px; color: var(--ink-900); line-height: 1.1; }
  .fmt-card p { margin-top: 8px; font-size: 14px; line-height: 1.5; color: var(--text-muted); }

  .format-banner {
    margin-top: 26px; text-align: center; font-size: 14.5px; color: var(--accent-600); font-weight: 600;
    background: var(--accent-050); border: 1px dashed var(--accent-200); border-radius: var(--radius-pill);
    padding: 14px 22px; display: inline-flex; gap: 10px; align-items: center;
  }
  .format-banner svg { width: 18px; height: 18px; }
  .center { text-align: center; }

  /* ---------- Programme accordion ---------- */
  .programme { display: flex; flex-direction: column; gap: 14px; max-width: 940px; margin: 0 auto; }
  .week {
    background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow var(--dur-base);
  }
  .week[open] { box-shadow: var(--shadow-md); border-color: var(--accent-200); }
  .week summary {
    list-style: none; cursor: pointer; padding: 22px 26px;
    display: flex; align-items: center; gap: 20px;
  }
  .week summary::-webkit-details-marker { display: none; }
  .week-num {
    flex: none; font-family: var(--font-secondary); font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-500);
    background: var(--accent-100); padding: 7px 13px; border-radius: var(--radius-pill);
  }
  .week-title { font-family: var(--font-primary); font-size: 19px; font-weight: 700; color: var(--ink-900); flex: 1; line-height: 1.2; }
  .week-toggle { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-subtle); display: grid; place-items: center; color: var(--ink-600); transition: transform var(--dur-base), background var(--dur-base); }
  .week[open] .week-toggle { transform: rotate(180deg); background: var(--accent-500); color: #fff; border-color: var(--accent-500); }
  .week-toggle svg { width: 18px; height: 18px; }
  .week-body { padding: 0 26px 26px 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
  .week-body h4 { font-family: var(--font-secondary); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 12px; }
  .week-body .col-result h4 { color: var(--accent-500); }
  .mini-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
  .mini-list li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--text-body); }
  .mini-list li svg { width: 17px; height: 17px; flex: none; margin-top: 2px; }
  .col-content .mini-list li svg { color: var(--ink-400); }
  .col-result .mini-list li svg { color: var(--accent-500); }
  @media (max-width: 760px){ .week-body { grid-template-columns: 1fr; gap: 18px; } }

  /* ---------- Outils grid ---------- */
  .tools-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .tool-card { text-align: center; }
  .tool-thumb {
    border-radius: var(--radius-md); aspect-ratio: 3/3.4; overflow: hidden; margin-bottom: 16px;
    box-shadow: var(--shadow-card); border: 1px solid var(--border-card);
  }
  .tool-card h4 { font-family: var(--font-secondary); font-size: 15px; font-weight: 600; color: var(--ink-900); }

  /* ---------- Certification ---------- */
  .cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 920px; margin: 0 auto; }
  .cert-card { display: flex; gap: 22px; align-items: flex-start; }
  .cert-card .chip { width: 56px; height: 56px; flex: none; border-radius: 16px; background: var(--accent-500); color: #fff; display: grid; place-items: center; }
  .cert-card .chip svg { width: 28px; height: 28px; }
  .cert-card h3 { font-size: 20px; font-weight: 900; margin-bottom: 14px; }

  /* ---------- Testimonials ---------- */
  .testi-stage {
    position: relative; max-width: 1080px; margin: 0 auto;
    background: #fff; border: 1px solid var(--border-card); border-radius: 24px;
    box-shadow: var(--shadow-card); padding: 40px 16px 34px;
  }
  .testi-track {
    display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 4px 40px; scrollbar-width: none;
  }
  .testi-track::-webkit-scrollbar { display: none; }
  .testi-slide { flex: 0 0 auto; width: 210px; scroll-snap-align: center; }
  .testi-card { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 3/4.3; box-shadow: var(--shadow-md); }
  .testi-card .ph2 { width: 100%; height: 100%; background: linear-gradient(165deg, #353b56 0%, #14161f 100%); }
  .testi-card .ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,0.8)); }
  .testi-card .who { position: absolute; left: 16px; bottom: 15px; color: #fff; z-index: 2; }
  .testi-card .who b { display: block; font-family: var(--font-primary); font-weight: 700; font-size: 15px; line-height: 1.2; }
  .testi-card .who span { font-size: 12px; color: rgba(255,255,255,0.65); }
  .testi-card .play2 { position: absolute; inset: 0; margin: auto; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.92); display: grid; place-items: center; color: var(--ink-900); z-index: 2; }
  .testi-card .play2 svg { width: 18px; height: 18px; fill: currentColor; margin-left: 2px; }
  .testi-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%;
    background: #fff; border: 1px solid var(--border-card); box-shadow: var(--shadow-md);
    display: grid; place-items: center; color: var(--ink-800); cursor: pointer; z-index: 4;
    transition: background var(--dur-fast), color var(--dur-fast);
  }
  .testi-arrow:hover { background: var(--accent-500); color: #fff; border-color: var(--accent-500); }
  .testi-arrow svg { width: 20px; height: 20px; }
  .testi-arrow.prev { left: 6px; } .testi-arrow.next { right: 6px; }
  .testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 26px; }
  .testi-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); transition: all var(--dur-base); }
  .testi-dots i.on { width: 22px; border-radius: 5px; background: var(--accent-500); }

  /* ---------- FAQ ---------- */
  .faq-wrap { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq {
    background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); overflow: hidden;
  }
  .faq summary {
    list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; gap: 18px;
    font-family: var(--font-primary); font-weight: 700; font-size: 17px; color: var(--ink-900);
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary .q { flex: 1; }
  .faq-ic { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--accent-500); color: #fff; display: grid; place-items: center; transition: transform var(--dur-base); }
  .faq[open] .faq-ic { transform: rotate(45deg); }
  .faq-ic svg { width: 18px; height: 18px; }
  .faq-body { padding: 0 26px 24px 26px; font-size: 15px; line-height: var(--lh-body); color: var(--text-body); }
  .faq-body ul { margin: 10px 0 0; padding-left: 20px; }
  .faq-body li { margin-bottom: 6px; }

  /* ---------- Networks ---------- */
  .net-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px; margin-top: 36px; }
  .net-row span { font-family: var(--font-primary); font-weight: 800; font-size: 18px; color: rgba(255,255,255,0.7); letter-spacing: 0.03em; }
  .networks { background: linear-gradient(135deg, var(--accent-600), var(--accent-500)); color: #fff; }
  .networks .section-head h2, .networks .section-head p { color: #fff; }
  .networks .section-head p { color: rgba(255,255,255,0.85); }

  /* ---------- Final CTA ---------- */
  .final-cta {
    position: relative; border-radius: var(--radius-xl); overflow: hidden;
    background: linear-gradient(115deg, var(--accent-600) 0%, var(--accent-500) 48%, var(--accent-400) 100%);
    color: #fff; min-height: 360px; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  }
  .final-cta-text { padding: 60px 56px; align-self: center; position: relative; z-index: 2; }
  .final-cta h2 { color: #fff; font-size: var(--fs-display-md); font-weight: 900; line-height: 1.05; letter-spacing: var(--ls-tight); }
  .final-cta p { margin-top: 18px; font-size: var(--fs-body-lg); color: rgba(255,255,255,0.88); line-height: var(--lh-body); max-width: 400px; }
  .final-cta .btn-white { background: #fff; color: var(--ink-900); }
  .final-cta .btn-white:hover { background: var(--ink-50); transform: translateY(-2px); }
  .final-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
  .final-photo { position: relative; overflow: hidden; }
  .final-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
  .final-photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--accent-500) 0%, rgba(59,126,255,0.45) 26%, rgba(59,126,255,0) 60%); }
  .final-photo .ph { background: linear-gradient(160deg, rgba(255,255,255,0.18), rgba(20,20,20,0.28)); color: rgba(255,255,255,0.85); }
  .final-photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--accent-500) 0%, rgba(59,126,255,0) 38%); }

  /* ---------- Footer (light) ---------- */
  footer { position: relative; background: #fff; color: var(--text-muted); padding: 64px 0 36px; overflow: hidden; text-align: center; }
  .footer-watermark { position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 80%; height: 200px; background: var(--accent-500); -webkit-mask: url("/assets/img/forme-masque.webp") bottom center/contain no-repeat; mask: url("/assets/img/forme-masque.webp") bottom center/contain no-repeat; opacity: .65; pointer-events: none; }
  .footer-watermark img { display: none; }
  .footer-inner { position: relative; z-index: 2; }
  .footer-logo { display: inline-flex; align-items: center; }
  .footer-logo .fl-img { height: 30px; width: auto; display: block; }
  .footer-nav { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 30px; }
  .footer-nav a { font-size: 14.5px; color: var(--ink-800); transition: color var(--dur-fast); }
  .footer-nav a:hover { color: var(--accent-500); }
  .footer-social { margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 14px; }
  .footer-social .lbl { font-family: var(--font-primary); font-weight: 700; font-size: 15px; color: var(--ink-900); }
  .social-row { display: flex; gap: 10px; }
  .social-row a { width: 38px; height: 38px; border-radius: 50%; background: var(--ink-900); display: grid; place-items: center; color: #fff; transition: background var(--dur-fast); }
  .social-row a:hover { background: var(--accent-500); }
  .social-row svg { width: 18px; height: 18px; }
  .footer-bottom { position: relative; z-index: 2; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--border-subtle); display: flex; justify-content: center; gap: 8px 22px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
  .footer-bottom a { color: var(--text-muted); } .footer-bottom a:hover { color: var(--accent-500); }

  @media (max-width: 980px) {
    .hero-grid, .split, .split.media-left, .final-cta { grid-template-columns: 1fr; gap: 36px; }
    .format-grid, .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-grid { grid-template-columns: 1fr; }
    .final-cta { gap: 0; } .final-photo { min-height: 240px; }
  }
  @media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    .format-grid, .tools-grid { grid-template-columns: 1fr; }
    .qualiopi { flex-direction: column; text-align: center; }
    .qualiopi-logo { border-right: none; padding-right: 0; padding-bottom: 18px; border-bottom: 1px solid var(--border-subtle); }
  }

  .g-review { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--border-card); border-radius: 999px; box-shadow: 0 2px 10px rgba(20,20,20,0.06); padding: 9px 16px; text-decoration: none; transition: box-shadow 220ms, transform 220ms; }
  .g-review:hover { box-shadow: 0 10px 26px rgba(20,20,20,0.1); transform: translateY(-2px); }
  .g-review .g-mark { width: 18px; height: 18px; flex: none; }
  .g-review .g-label { font-size: 13px; font-weight: 600; color: var(--ink-900); }
  .g-review .g-sep { width: 1px; height: 16px; background: #e2e2e2; }
  .g-review .stars { color: #f5a623; display: flex; gap: 2px; }
  .g-review .stars svg { width: 14px; height: 14px; fill: currentColor; }
  .g-review b { color: var(--ink-900); font-size: 13px; font-weight: 700; }

  /* ===== Formation homepage ===== */
  .fhero { position: relative; padding: 40px 0 20px; background: radial-gradient(120% 80% at 50% 0%, var(--accent-050) 0%, #fff 62%); overflow: hidden; }
  .fhero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .fhero h1 { font-size: clamp(30px, 4.4vw, 52px); font-weight: 900; line-height: 1.06; letter-spacing: var(--ls-tight); max-width: 900px; }
  .fhero .btn { margin-top: 26px; }
  .fhero .g-review { margin-top: 22px; }
  .fhero-video { margin-top: 40px; width: 100%; max-width: 940px; }
  .media-card.wide { aspect-ratio: 16/9; position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-float); border: 1px solid var(--border-card); }
  .media-card.wide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

  .offers-intro { padding-bottom: 24px; }
  .offer { padding: 40px 0; }
  .offer-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: start; }
  .offer-num { font-family: var(--font-primary); font-weight: 900; font-size: clamp(60px, 8vw, 104px); line-height: 0.9; color: var(--accent-100); letter-spacing: -0.03em; }
  .offer-left h3 { font-size: clamp(26px, 3vw, 36px); font-weight: 900; line-height: 1.1; margin-top: 8px; }
  .offer-left > p { margin-top: 16px; font-size: 15.5px; line-height: 1.7; color: var(--text-muted); max-width: 420px; }
  .offer-photo { margin-top: 26px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border-card); aspect-ratio: 16/10; }
  .offer-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .offer-levels { display: flex; flex-direction: column; gap: 18px; padding-top: 18px; }
  .level-card { border-bottom: 1px solid var(--border-subtle); padding-bottom: 18px; }
  .level-card:last-child { border-bottom: none; }
  .lvl-eyebrow { display: inline-block; font-family: var(--font-secondary); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-500); background: var(--accent-050); padding: 5px 12px; border-radius: var(--radius-pill); }
  .level-card h4, .ostep h4 { font-family: var(--font-primary); font-size: 20px; font-weight: 800; color: var(--ink-900); margin: 12px 0 8px; }
  .level-card p, .ostep p { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }
  .level-card .btn, .offer-steps > .btn { margin-top: 14px; }
  .offer-steps { display: flex; flex-direction: column; gap: 22px; padding-top: 18px; }
  .ostep { display: flex; gap: 18px; align-items: flex-start; }
  .ostep-num { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--accent-050); color: var(--accent-500); font-family: var(--font-primary); font-weight: 800; font-size: 15px; display: grid; place-items: center; border: 1px solid var(--accent-100); }
  .offer-sep { max-width: 1180px; margin: 0 auto; height: 1px; background: var(--border-subtle); }

  /* Contenu offert */
  .offert-card { max-width: 1080px; margin: 0 auto; border-radius: var(--radius-xl); overflow: hidden; background: linear-gradient(120deg, var(--accent-600) 0%, var(--accent-500) 55%, var(--accent-400) 100%); color: #fff; display: grid; grid-template-columns: 1fr 1fr; }
  .offert-text { padding: 46px 44px; }
  .offert-text h2 { color: #fff; font-size: clamp(22px, 2.4vw, 30px); font-weight: 900; line-height: 1.15; }
  .offert-text > p { margin-top: 16px; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.9); }
  .offert-form { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; max-width: 380px; }
  .offert-row { display: flex; gap: 12px; }
  .offert-form input { flex: 1; width: 100%; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28); border-radius: var(--radius-pill); padding: 13px 18px; color: #fff; font-family: var(--font-secondary); font-size: 14px; }
  .offert-form input::placeholder { color: rgba(255,255,255,0.7); }
  .offert-form .btn-white { background: #fff; color: var(--accent-600); margin-top: 4px; }
  .offert-media { position: relative; background: rgba(0,0,0,0.12); display: flex; align-items: center; justify-content: center; padding: 24px; }
  .offert-media img { width: 100%; height: 100%; object-fit: contain; }

  /* Nos livres */
  .books { background: linear-gradient(180deg, var(--accent-050) 0%, #fff 60%); }
  .book-card { display: grid; grid-template-columns: 1fr 0.9fr; gap: 40px; align-items: center; max-width: 1000px; margin: 0 auto; background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 40px 44px; }
  .book-card + .book-card { margin-top: 28px; }
  .book-card.rev { grid-template-columns: 0.9fr 1fr; }
  .book-card.rev .book-img { order: -1; }
  .book-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-100); color: var(--accent-500); display: grid; place-items: center; margin-bottom: 18px; }
  .book-ic svg { width: 24px; height: 24px; }
  .book-card h3 { font-size: 24px; font-weight: 900; line-height: 1.15; }
  .book-card p { margin-top: 14px; font-size: 15px; line-height: 1.7; color: var(--text-muted); }
  .book-img img { width: 100%; height: auto; display: block; filter: drop-shadow(0 24px 40px rgba(20,20,20,0.18)); }

  /* Google reviews cards */
  .greviews { text-align: center; }
  .grev-head { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); padding: 10px 20px; margin-bottom: 40px; }
  .grev-head .g-mark { width: 22px; height: 22px; }
  .grev-head .stars { color: #f5a623; display: flex; gap: 2px; }
  .grev-head .stars svg { width: 16px; height: 16px; fill: currentColor; }
  .grev-head b { font-family: var(--font-primary); font-size: 16px; color: var(--ink-900); }
  .grev-head span { font-size: 13px; color: var(--text-muted); }
  .grev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left; }
  .grev-card { background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-md); box-shadow: var(--shadow-card); padding: 24px 26px; }
  .grev-top { display: flex; align-items: center; gap: 12px; }
  .grev-av { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-100); color: var(--accent-600); display: grid; place-items: center; font-family: var(--font-primary); font-weight: 800; font-size: 16px; flex: none; }
  .grev-id { flex: 1; }
  .grev-id b { display: block; font-size: 14.5px; color: var(--ink-900); }
  .grev-id small { font-size: 12px; color: var(--text-muted); }
  .grev-card .stars { color: #f5a623; display: flex; gap: 2px; margin-top: 16px; }
  .grev-card .stars svg { width: 15px; height: 15px; fill: currentColor; }
  .grev-card p { margin-top: 12px; font-size: 14px; line-height: 1.65; color: var(--text-body); }
  @media (max-width: 900px) {
    .offer-grid, .offert-card, .book-card, .book-card.rev { grid-template-columns: 1fr; gap: 30px; }
    .book-card.rev .book-img { order: 0; }
    .grev-grid { grid-template-columns: 1fr; }
    .offer-photo { max-width: 460px; }
  }
  /* ---------- Média offers ---------- */
  .moffer { max-width: 1080px; margin: 0 auto; }
  .moffer-card { display: grid; grid-template-columns: 0.68fr 1.32fr; gap: 34px; align-items: center; background: linear-gradient(135deg, var(--accent-050), #fff 72%); border: 1px solid var(--border-card); border-radius: var(--radius-xl); box-shadow: var(--shadow-card); padding: 40px 44px; }
  .moffer-card.rev .moffer-visual { order: -1; }
  .moffer-ic { width: 56px; height: 56px; border-radius: 15px; background: var(--accent-500); color: #fff; display: grid; place-items: center; margin-bottom: 22px; box-shadow: var(--glow-accent); }
  .moffer-ic svg { width: 27px; height: 27px; }
  .moffer-body h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; line-height: 1.08; }
  .moffer-body p { margin-top: 16px; font-size: 15.5px; line-height: 1.7; color: var(--text-muted); max-width: 380px; }
  .moffer-body .btn { margin-top: 24px; }
  .moffer-visual { position: relative; }
  .moffer-visual img { width: 100%; height: auto; display: block; }
  .mchip { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-pill); box-shadow: 0 10px 26px rgba(20,20,20,0.12); padding: 8px 14px 8px 10px; font-family: var(--font-secondary); font-weight: 700; font-size: 13px; color: var(--ink-900); }
  .mchip .ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; flex: none; color: #fff; }
  .mchip .ic svg { width: 15px; height: 15px; }
  .mchip.insta .ic { background: linear-gradient(135deg,#f9ce34,#ee2a7b,#6228d7); }
  .mchip.like .ic { background: var(--accent-500); }
  .mchip.view .ic { background: #141414; }
  .mchip.c-tl { top: 8%; left: -4%; }
  .mchip.c-bl { bottom: 14%; left: -6%; }
  .mchip.c-br { bottom: 6%; right: 2%; }
  @media (max-width: 560px){ .mchip { font-size: 11px; padding: 6px 11px 6px 8px; } .mchip.c-tl{left:2%} .mchip.c-bl{left:0} }
  @media (max-width: 900px){ .moffer-card, .moffer-card.rev { grid-template-columns: 1fr; gap: 26px; padding: 34px 26px; } .moffer-card.rev .moffer-visual { order: 0; } }
  /* ===== Storytelling page ===== */
  .shero { position: relative; padding: 30px 0 60px; background: radial-gradient(110% 80% at 78% 0%, var(--accent-050) 0%, #fff 60%); overflow: hidden; }
  .shero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px; align-items: center; }
  .shero h1 { font-size: clamp(30px,4vw,50px); font-weight: 900; line-height: 1.06; letter-spacing: var(--ls-tight); margin-top: 18px; }
  .shero .lead { margin-top: 20px; font-size: var(--fs-body-lg); line-height: 1.6; color: var(--text-body); max-width: 500px; }
  .shero .cta-row { margin-top: 28px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
  .shero .reassure { margin-top: 18px; font-size: 13px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 8px; }
  .shero .reassure svg { width: 15px; height: 15px; color: var(--accent-500); }
  .shero-visual { position: relative; }
  .shero-visual .hero-frame { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 24px 50px rgba(20,20,20,.16); border: 1px solid var(--border-card); aspect-ratio: 4/3.4; }
  .shero-visual .hero-frame img { width: 100%; height: 100%; object-fit: cover; display: block; filter: none; }
  .schip { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 9px; background: #fff; border-radius: 15px; box-shadow: 0 14px 30px rgba(20,20,20,.14); padding: 11px 15px; font-weight: 700; font-size: 15px; color: var(--ink-900); }
  .schip .cic { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 7px; }
  .schip .cic svg { width: 17px; height: 17px; }
  .schip.brandico { padding: 12px; border-radius: 16px; }
  .schip.brandico .cic { width: 34px; height: 34px; border-radius: 9px; }
  .schip.brandico .cic svg { width: 22px; height: 22px; }
  .schip-fb { top: 20px; left: 46%; }
  .schip-fb .cic { background: #1877f2; color: #fff; }
  .schip-ig { top: 40%; left: -4%; }
  .schip-ig .cic { background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); color: #fff; }
  .schip-in { top: 30%; right: -5%; }
  .schip-in .cic { background: #0a66c2; color: #fff; }
  .schip-heart { top: 12%; right: 2%; }
  .schip-heart .cic { color: var(--accent-500); }
  .schip-views { bottom: 12%; left: -3%; }
  .schip-views .cic { color: var(--ink-700); }
  @media (prefers-reduced-motion: no-preference){ .schip { animation: sChipFloat 5s ease-in-out infinite; } .schip-ig{animation-delay:.6s}.schip-in{animation-delay:1.1s}.schip-heart{animation-delay:1.6s}.schip-views{animation-delay:2.1s} }
  @keyframes sChipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
  @media (max-width: 900px){ .shero-grid { grid-template-columns: 1fr; gap: 34px; } }
  .constat-card { position: relative; overflow: hidden; border-radius: var(--radius-xl); border: 1px solid var(--border-card); box-shadow: var(--shadow-card); display: grid; grid-template-columns: 1fr 1fr; }
  .constat-text { padding: 48px 46px; background: linear-gradient(135deg, var(--accent-050), #fff 80%); }
  .constat-text h2 { font-size: var(--fs-display-md); font-weight: 900; line-height: 1.1; }
  .constat-text p { margin-top: 18px; font-size: 15.5px; line-height: 1.7; color: var(--text-muted); }
  .constat-text .hl { margin-top: 18px; font-family: var(--font-primary); font-weight: 800; color: var(--accent-600); font-style: italic; font-size: 18px; }
  .constat-media { position: relative; min-height: 340px; }
  .constat-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 900px){ .constat-card { grid-template-columns: 1fr; } .constat-media { min-height: 240px; } }
  .change-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 14px; align-items: center; }
  .change-lead h2 { font-size: clamp(24px,2.6vw,32px); font-weight: 900; line-height: 1.1; }
  .change-lead p { margin-top: 14px; font-size: 15px; line-height: 1.65; color: var(--text-muted); }
  .change-lead .btn { margin-top: 22px; }
  .change-cols { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 460px; margin-left: auto; }
  .change-col { background: #fff; border: 1px solid var(--border-card); border-radius: 14px; box-shadow: var(--shadow-card); padding: 18px 16px; display: flex; flex-direction: column; justify-content: center; }
  .change-col .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-100); color: var(--accent-500); display: grid; place-items: center; margin-bottom: 10px; }
  .change-col { background: #fff; border: 1px solid var(--border-card); border-radius: 14px; box-shadow: var(--shadow-card); padding: 18px 16px; display: flex; flex-direction: column; justify-content: center; transition: transform var(--dur-base) var(--ease-out); transform-origin: center; }
  .change-col:hover { transform: scale(1.04); }
  .change-lead { transition: transform var(--dur-base) var(--ease-out); transform-origin: left top; }
  .change-lead:hover { transform: scale(1.04); }
  .change-col .ic svg { width: 18px; height: 18px; }
  .change-col h4 { font-family: var(--font-primary); font-size: 14px; font-weight: 800; color: var(--ink-900); }
  .change-col p { margin-top: 6px; font-size: 12px; line-height: 1.45; color: var(--text-muted); }
  @media (max-width: 900px){ .change-grid { grid-template-columns: 1fr; gap: 26px; } .change-cols { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px){ .change-cols { grid-template-columns: 1fr; } .change-col { aspect-ratio: auto; } }
  .qvideo { display: grid; grid-template-columns: 1.25fr .9fr; gap: 40px; align-items: center; max-width: 1120px; margin: 0 auto; }
  .qvideo .frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-float); border: 1px solid var(--border-card); aspect-ratio: 16/10; cursor: pointer; }
  .qvideo .frame img { width: 100%; height: 100%; object-fit: cover; }
  .qvideo .frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
  /* YouTube modal */
  .yt-modal { position: fixed; inset: 0; z-index: 999; background: rgba(10,12,18,.82); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 24px; }
  .yt-modal.open { display: flex; }
  .yt-modal .box { position: relative; width: min(960px, 94vw); aspect-ratio: 16/9; background: #000; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
  .yt-modal .box iframe { width: 100%; height: 100%; border: 0; }
  .yt-modal .yt-close { position: absolute; top: -14px; right: -14px; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: none; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-md); color: var(--ink-900); }
  .yt-modal .yt-close svg { width: 22px; height: 22px; }
  @media (max-width: 560px){ .yt-modal .yt-close { top: 8px; right: 8px; } }
  .qvideo .qside .kick { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-500); }
  .qvideo .qside h3 { font-family: var(--font-primary); font-size: 26px; font-weight: 800; line-height: 1.15; color: var(--ink-900); margin: 10px 0 20px; }
  .qvideo .yt-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--accent-500); box-shadow: var(--shadow-md); }
  .qvideo .yt-play svg { width: 28px; height: 28px; fill: currentColor; margin-left: 3px; }
  .qbullets { display: flex; flex-direction: column; gap: 16px; }
  .qbullets li { display: flex; gap: 13px; font-size: 15px; line-height: 1.55; color: var(--text-body); }
  .qbullets li svg { width: 22px; height: 22px; flex: none; color: var(--accent-500); margin-top: 1px; }
  .qthumbs { margin: 40px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 1120px; }
  .qthumb { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; box-shadow: var(--shadow-card); border: 1px solid var(--border-card); cursor: pointer; }
  .qthumb img { width: 100%; height: 100%; object-fit: cover; }
  .qthumb .pl { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--accent-500); }
  .qthumb .pl svg { width: 18px; height: 18px; fill: currentColor; margin-left: 2px; }
  @media (max-width: 860px){ .qvideo { grid-template-columns: 1fr; gap: 28px; } .qthumbs { grid-template-columns: 1fr 1fr; } }
  .timeline{max-width:1040px;margin:0 auto;display:flex;flex-direction:column;gap:26px;position:relative}
  .timeline::before{content:"";position:absolute;top:36px;bottom:36px;left:50%;transform:translateX(-50%);width:2px;background:var(--accent-200);z-index:0}
  .sv{display:grid;grid-template-columns:1fr 96px 1fr;gap:26px;position:relative;align-items:center}
  .sv .rail{grid-column:2;position:relative;display:flex;flex-direction:column;align-items:center;align-self:stretch}
  .sv .card{grid-column:3}
  .sv.right .card{grid-column:1}
  .sv .rail .num{position:relative;z-index:1;width:72px;height:72px;border-radius:20px;background:linear-gradient(150deg,var(--accent-500),var(--accent-400));color:#fff;font-family:var(--font-primary);font-weight:800;font-size:26px;display:grid;place-items:center;box-shadow:0 10px 24px color-mix(in srgb,var(--accent-500) 32%,transparent)}
  .sv .card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--border-card);border-radius:20px;overflow:hidden;box-shadow:var(--shadow-card)}
  .sv .card .pic{overflow:hidden;aspect-ratio:16/9}
  .sv .card .pic img{width:100%;height:100%;object-fit:cover;display:block}
  .sv .card .txt{padding:24px 28px}
  .sv .card .lbl{font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--accent-500)}
  .sv .card h4{font-family:var(--font-primary);font-size:20px;font-weight:800;color:var(--ink-900);margin:8px 0 10px}
  .sv .card p{font-size:14.5px;line-height:1.6;color:var(--text-muted)}
  @media(max-width:760px){.sv{grid-template-columns:60px 1fr;gap:16px}.sv .rail{grid-column:1}.sv .card,.sv.right .card{grid-column:2}.sv .rail .num{width:52px;height:52px;font-size:19px;border-radius:15px}}
  .result-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .rcard { background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); overflow: hidden; }
  .rcard .rthumb { aspect-ratio: 16/11; overflow: hidden; background: var(--accent-050); }
  .rcard .rthumb img { width: 100%; height: 100%; object-fit: cover; }
  .rcard .rbody { padding: 18px 20px; }
  .rcard h4 { font-family: var(--font-primary); font-size: 15px; font-weight: 800; color: var(--ink-900); }
  .rcard p { margin-top: 7px; font-size: 12.5px; line-height: 1.55; color: var(--text-muted); }
  @media (max-width: 900px){ .result-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px){ .result-grid { grid-template-columns: 1fr; } }
  .price-wrap { max-width: 720px; margin: 0 auto; }
  .price-main { position: relative; background: #fff; border: 1px solid var(--accent-100); border-radius: 24px; box-shadow: 0 20px 48px color-mix(in srgb, var(--accent-500) 12%, transparent); padding: 40px 44px; }
  .price-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-600); background: var(--accent-100); padding: 6px 13px; border-radius: var(--radius-pill); }
  .price-amount { font-family: var(--font-primary); font-weight: 900; font-size: 56px; color: var(--ink-900); line-height: 1; margin-top: 16px; }
  .price-amount span { font-size: 20px; color: var(--text-muted); font-weight: 700; }
  .price-sub { font-size: 13.5px; color: var(--text-muted); margin-top: 8px; }
  .price-list { list-style: none; margin: 24px 0 0; padding: 22px 0 0; border-top: 1px solid var(--border-subtle); display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .price-list li { display: flex; gap: 10px; font-size: 14px; line-height: 1.45; color: var(--text-body); }
  .price-list li svg { width: 18px; height: 18px; flex: none; color: var(--accent-500); margin-top: 1px; }
  .price-main .btn { margin-top: 26px; width: 100%; }
  .price-alt { margin-top: 20px; background: var(--accent-050); border: 1px dashed var(--accent-200); border-radius: 18px; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
  .price-alt .pa-amount { font-family: var(--font-primary); font-weight: 900; font-size: 28px; color: var(--ink-900); }
  .price-note { margin-top: 18px; text-align: center; font-size: 12.5px; color: var(--text-muted); }
  @media (max-width: 560px){ .price-list { grid-template-columns: 1fr; } }
