*, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { margin: 0; font-family: var(--font-secondary); color: var(--text-body); background: #fff; overflow-x: hidden; }
  h1, h2, h3, h4 { font-family: var(--font-primary); color: var(--text-strong); margin: 0; }
  a { text-decoration: none; color: inherit; }
  a:hover { color: var(--accent-500); }
  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; }

  /* ---------- Buttons ---------- */
  .btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-secondary); font-size: 15px; font-weight: 600; 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 svg { width: 18px; height: 18px; }
  .btn-primary { background: var(--accent-500); color: #fff; box-shadow: var(--glow-accent); }
  .btn-primary:hover { background: var(--accent-600); transform: translateY(-2px); color: #fff; }
  .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); color: #fff; }

  /* ---------- 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: 14px; background: rgba(255,255,255,0.82); backdrop-filter: blur(12px); border: 1px solid var(--border-subtle); 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:hover { background: var(--accent-050); color: var(--accent-500); }
  .nav-links a.active { color: var(--ink-900); font-weight: 700; }
  .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; } }

  /* ---------- Hero ---------- */
  .hero { position: relative; padding: 30px 0 90px; overflow: hidden; background: radial-gradient(90% 70% at 82% 8%, var(--accent-100) 0%, var(--accent-050) 34%, #fff 68%); }
  .hero::before { content: ""; position: absolute; top: -20%; left: 40%; width: 60%; height: 120%; background: conic-gradient(from 210deg at 50% 40%, transparent 0deg, color-mix(in srgb, var(--accent-200) 55%, transparent) 40deg, transparent 90deg); filter: blur(30px); opacity: .5; pointer-events: none; }
  .hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 40px; align-items: center; }
  .eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-900); background: #fff; box-shadow: var(--shadow-sm); padding: 9px 16px; border-radius: var(--radius-pill); }
  .eyebrow .eb-ic { width: 22px; height: 22px; border-radius: 6px; background: var(--accent-500); color: #fff; display: grid; place-items: center; }
  .eyebrow .eb-ic svg { width: 13px; height: 13px; }
  .hero h1 { margin-top: 26px; font-size: clamp(34px, 4.4vw, 56px); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink-900); }
  .hero h1 .ln1 { color: var(--accent-500); display: block; }
  .hero p.lead { margin-top: 24px; font-size: 17px; line-height: 1.62; color: var(--text-muted); max-width: 500px; }
  .hero .cta-row { margin-top: 32px; }
  .hero .btn-primary { padding: 18px 34px; font-size: 16px; }

  .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 18px; margin-top: 34px; transition: box-shadow var(--dur-base), transform var(--dur-base); }
  .g-review:hover { box-shadow: 0 10px 26px rgba(20,20,20,0.1); transform: translateY(-2px); color: inherit; }
  .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; }
  .hero .reassure { margin-top: 18px; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
  .hero .reassure svg { width: 15px; height: 15px; color: var(--accent-500); flex: none; }

  /* ---------- Hero visual (phones) ---------- */
  .hero-visual { position: relative; height: 620px; }
  .hero-visual .glow { display: none; }
  .hero-visual .disc { display: none; }
  .phone { position: absolute; z-index: 2; }
  .hero-photo { position: absolute; z-index: 2; top: 20px; left: 50%; transform: translateX(-50%); width: min(94%, 500px); aspect-ratio: 1/1; border-radius: 26px; overflow: hidden; box-shadow: 0 30px 55px rgba(20,20,20,.24); border: 1px solid var(--border-card); }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .phone img { width: 100%; display: block; filter: drop-shadow(0 30px 55px rgba(20,20,20,.24)); }
  .phone.back { width: 340px; top: 30px; left: 6%; transform: rotate(-9deg); z-index: 1; }
  .phone.front { width: 366px; top: 120px; right: 4%; transform: rotate(7deg); z-index: 3; }

  .chip { 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); }
  .chip .cic { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 7px; }
  .chip .cic svg { width: 17px; height: 17px; }
  .chip.brandico { padding: 12px; border-radius: 16px; }
  .chip.brandico .cic { width: 34px; height: 34px; border-radius: 9px; }
  .chip.brandico .cic svg { width: 22px; height: 22px; }
  .chip-fb { top: 46px; left: 52%; }
  .chip-fb .cic { background: #1877f2; color: #fff; }
  .chip-ig { top: 52%; left: 2%; }
  .chip-ig .cic { background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); color: #fff; }
  .chip-in { top: 47%; right: -2%; }
  .chip-in .cic { background: #0a66c2; color: #fff; }
  .chip-heart { top: 30%; right: 4%; color: var(--ink-900); }
  .chip-heart .cic { color: var(--accent-500); }
  .chip-likes { top: 40%; left: 6%; }
  .chip-likes .cic { color: var(--accent-500); }
  .chip-views { bottom: 20%; left: 8%; }
  .chip-views .cic { color: var(--ink-700); }
  .report { position: absolute; z-index: 4; bottom: 8%; right: 2%; width: 190px; background: #fff; border-radius: 16px; box-shadow: 0 16px 34px rgba(20,20,20,.16); padding: 16px 18px; }
  .report .rt { font-size: 10px; font-weight: 700; letter-spacing: .1em; color: var(--text-muted); text-transform: uppercase; }
  .report .bars { display: flex; align-items: flex-end; gap: 6px; height: 66px; margin-top: 12px; }
  .report .bars i { flex: 1; border-radius: 4px 4px 0 0; background: var(--accent-200); }
  .report .bars i.hi { background: var(--accent-500); }
  .report .rf { font-size: 10px; color: var(--text-muted); margin-top: 8px; text-align: center; }

  @media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-visual { height: 500px; max-width: 560px; margin: 0 auto; width: 100%; }
  }
  @media (max-width: 520px) {
    .hero-visual { height: 420px; }
    .phone.back { width: 190px; } .phone.front { width: 205px; }
    .report { width: 150px; }
  }

  /* ---------- 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-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: 18px; transition: box-shadow var(--dur-base), transform var(--dur-base); }
  .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)); } }

  /* ---------- Image de marque ---------- */
  .marque { padding: 84px 0; }
  .marque-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
  .marque h2 { font-size: var(--fs-display-md); font-weight: 900; line-height: var(--lh-heading); letter-spacing: var(--ls-tight); color: var(--accent-500); }
  .marque-timeline { position: relative; margin-top: 34px; padding-left: 34px; }
  .marque-timeline::before { content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 2px; border-left: 2px dashed var(--border-strong); }
  .mt-node { position: relative; }
  .mt-node::before { content: ""; position: absolute; left: -34px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent-500); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-500) 20%, transparent); }
  .mt-node.gray::before { background: var(--ink-400); box-shadow: 0 0 0 4px var(--ink-100); }
  .mt-node h3 { font-family: var(--font-primary); font-size: 20px; font-weight: 800; color: var(--ink-900); line-height: 1.2; }
  .mt-node > p { margin-top: 12px; font-size: 15.5px; line-height: 1.7; color: var(--ink-800); }
  .mt-node .muted { color: var(--text-muted); font-size: 14.5px; margin-top: 14px; }
  .res-tag { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--border-card); box-shadow: var(--shadow-sm); border-radius: var(--radius-pill); padding: 9px 18px; font-weight: 700; color: var(--ink-900); margin-top: 22px; }
  .res-tag .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent-500); }
  .res-list { margin-top: 20px; display: flex; flex-direction: column; gap: 15px; }
  .res-list li { display: flex; align-items: center; gap: 13px; font-size: 14.5px; color: var(--ink-800); }
  .res-list li svg { flex: none; width: 20px; height: 20px; color: var(--accent-500); }
  .marque-end { margin-top: 34px; background: var(--accent-050); border-radius: var(--radius-lg); padding: 26px 30px; }
  .marque-end h3 { font-family: var(--font-primary); font-size: 18px; font-weight: 800; color: var(--ink-900); }
  .marque-end p { margin-top: 8px; font-size: 16px; font-weight: 600; line-height: 1.45; color: var(--ink-900); }
  .marque-visual { position: relative; }
  .marque-visual img { width: 100%; height: auto; display: block; }
  .marque-visual .ma-badge { position: absolute; z-index: 2; display: inline-flex; align-items: center; font-family: var(--font-primary); font-weight: 800; font-size: 13px; letter-spacing: .12em; padding: 8px 20px; border-radius: var(--radius-pill); background: #fff; color: var(--accent-500); border: 1.5px solid var(--accent-500); box-shadow: var(--shadow-sm); }
  .marque-visual .ma-apres { left: 50%; bottom: 4%; }
  @media (max-width: 900px){ .marque-grid { grid-template-columns: 1fr; gap: 32px; } .marque-visual { order: -1; max-width: 520px; margin: 0 auto; } }

  /* ---------- On s'occupe du reste ---------- */
  .reste { padding: 84px 0; }
  .reste-head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
  .reste-head h2 { font-size: var(--fs-display-md); font-weight: 900; line-height: 1.08; letter-spacing: var(--ls-tight); color: var(--ink-900); }
  .reste-head h2 i { display: block; font-style: italic; color: var(--accent-500); }
  .reste-head .sub { margin-top: 18px; font-family: var(--font-primary); font-weight: 800; font-size: 17px; color: var(--accent-500); }
  .reste-head > p { margin-top: 12px; font-size: 15.5px; line-height: 1.65; color: var(--text-muted); }
  .svc-card { max-width: 1180px; margin: 0 auto; background: #fff; border: 1px solid var(--border-card); border-radius: var(--radius-xl); box-shadow: var(--shadow-card); padding: 44px 46px; }
  .svc-card.accent { background: linear-gradient(180deg, #fff, var(--accent-050)); border-color: var(--accent-200); }
  .svc-card + .svc-card { margin-top: 28px; }
  .svc-top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
  .svc-top h3 { font-family: var(--font-primary); font-size: clamp(26px, 3vw, 34px); font-weight: 900; line-height: 1.08; color: var(--accent-500); }
  .svc-top > div > p { margin-top: 16px; font-size: 15.5px; line-height: 1.7; color: var(--text-muted); max-width: 440px; }
  .svc-checks { display: flex; flex-direction: column; gap: 14px; }
  .svc-checks .inc { font-family: var(--font-primary); font-weight: 800; color: var(--accent-500); font-size: 15px; }
  .svc-checks li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; line-height: 1.5; color: var(--ink-800); }
  .svc-checks li svg { flex: none; width: 20px; height: 20px; color: var(--accent-500); margin-top: 1px; }
  .svc-checks li b { color: var(--accent-500); font-weight: 700; }
  .res-pill { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; background: var(--accent-050); border-radius: var(--radius-pill); padding: 7px 20px 7px 7px; font-size: 14.5px; color: var(--ink-800); }
  .res-pill b { background: var(--accent-500); color: #fff; font-family: var(--font-secondary); font-weight: 700; font-size: 13px; padding: 7px 15px; border-radius: var(--radius-pill); }
  .svc-line { grid-column: 1 / -1; height: 1px; background: var(--border-subtle); margin: 6px 0 0; }
  .carousel { position: relative; margin-top: 30px; }
  .carousel-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px; scrollbar-width: none; }
  .carousel-track::-webkit-scrollbar { display: none; }
  .svc-slide { flex: none; width: 260px; scroll-snap-align: start; }
  .svc-media { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-card); background: var(--ink-100); }
  .svc-media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
  .svc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
  .svc-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; display: block; }
  .svc-media .ov { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20,20,20,.72)); pointer-events: none; z-index: 2; }
  .svc-media .who { position: absolute; right: 18px; bottom: 16px; text-align: right; z-index: 3; color: #fff; }
  .svc-media .who b { display: block; font-family: var(--font-primary); font-weight: 800; font-size: 15px; }
  .svc-media .who span { font-size: 12.5px; opacity: .85; }
  .svc-media .play { position: absolute; bottom: 14px; left: 14px; top: auto; transform: none; z-index: 4; width: 46px; height: 46px; border-radius: 50%; background: var(--accent-500); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 16px rgba(255,122,1,.4); border: none; pointer-events: none; }
  .svc-media .play svg { width: 18px; height: 18px; fill: currentColor; margin-left: 2px; }d; place-items: center; color: var(--accent-500); }
  .svc-media .play svg { width: 22px; height: 22px; fill: currentColor; margin-left: 3px; }
  .carousel-arrow { position: absolute; top: 46%; 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: 5; transition: background var(--dur-fast), color var(--dur-fast); }
  .carousel-arrow:hover { background: var(--accent-500); color: #fff; border-color: var(--accent-500); }
  .carousel-arrow svg { width: 20px; height: 20px; }
  .carousel-arrow.prev { left: -14px; } .carousel-arrow.next { right: -14px; }
  .carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
  .carousel-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); transition: all var(--dur-base); }
  .carousel-dots i.on { width: 22px; border-radius: 5px; background: var(--accent-500); }
  .reste-cta { text-align: center; margin-top: 44px; }
  .reste-cta .btn-primary { padding: 18px 40px; font-size: 16px; }
  @media (max-width: 820px){ .svc-top { grid-template-columns: 1fr; gap: 24px; } .svc-card { padding: 32px 24px; } }

  /* ---------- Kit complet ---------- */
  .kit { padding: 84px 0; }
  .kit-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
  .kit-head h2 { font-size: var(--fs-display-md); font-weight: 900; line-height: 1.08; letter-spacing: var(--ls-tight); color: var(--ink-900); }
  .kit-head h2 i { display: block; font-style: italic; color: var(--accent-500); }
  .kit-head p { margin-top: 16px; font-size: 15.5px; line-height: 1.65; color: var(--text-muted); }
  .kit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .kit-card { background: #fff; border: 2px solid var(--accent-200); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
  .kit-visual { position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--accent-050), #fff); }
  .kit-visual image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
  .kit-body { background: #fff; margin-top: -22px; border-radius: var(--radius-xl) var(--radius-xl) 0 0; position: relative; padding: 26px 28px 30px; flex: 1; }
  .kit-body h3 { font-family: var(--font-primary); font-size: 22px; font-weight: 800; line-height: 1.15; color: var(--ink-900); padding-bottom: 18px; border-bottom: 1px solid var(--border-subtle); min-height: calc(2 * 1.15em + 18px); }
  .kit-list { margin-top: 20px; display: flex; flex-direction: column; gap: 16px; }
  .kit-list li { display: flex; gap: 12px; font-size: 14.5px; line-height: 1.5; color: var(--ink-800); }
  .kit-list li .pl { flex: none; color: var(--accent-500); font-weight: 800; font-size: 18px; line-height: 1.3; }
  .kit-turnkey { margin-top: 30px; border: 1px solid var(--border-card); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); padding: 40px 46px; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: center; }
  .kit-turnkey h3 { font-family: var(--font-primary); font-size: clamp(22px, 2.4vw, 28px); font-weight: 900; color: var(--ink-900); line-height: 1.15; }
  .kit-turnkey ul { display: flex; flex-direction: column; gap: 18px; border-left: 1px solid var(--border-subtle); padding-left: 40px; }
  .kit-turnkey li { display: flex; align-items: center; gap: 13px; font-size: 15.5px; color: var(--ink-800); }
  .kit-turnkey li svg { flex: none; width: 22px; height: 22px; color: var(--accent-500); }
  @media (max-width: 900px){ .kit-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } .kit-turnkey { grid-template-columns: 1fr; gap: 26px; } .kit-turnkey ul { border-left: none; padding-left: 0; } }

  /* ---------- Feed avant/après ---------- */
  .feed { padding: 84px 0; }
  .feed-panel { position: relative; background: linear-gradient(160deg, var(--accent-500) 0%, var(--accent-400) 46%, color-mix(in srgb, var(--accent-050) 88%, #fff) 100%); border-radius: var(--radius-xl); padding: 56px 40px 80px; overflow: hidden; }
  .feed-panel h2 { text-align: center; color: #fff; font-size: clamp(26px, 3.2vw, 40px); font-weight: 900; letter-spacing: var(--ls-tight); }
  .feed-stage { position: relative; max-width: 780px; margin: 40px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .feed-col { display: flex; flex-direction: column; align-items: center; }
  .feed-badge { display: inline-block; background: #fff; color: var(--ink-700); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 8px 20px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); margin-bottom: 20px; }
  .feed-col.after .feed-badge { color: var(--accent-500); }
  .feed-phone { position: relative; width: 100%; max-width: 250px; border-radius: 28px; overflow: hidden; aspect-ratio: 9/19; box-shadow: 0 26px 54px rgba(20,20,20,.28); background: var(--ink-900); }
  .feed-phone image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
  .feed-arrow { position: absolute; top: 34%; left: 50%; transform: translate(-50%,-50%); z-index: 6; width: 54px; height: 54px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md); display: grid; place-items: center; color: var(--accent-500); }
  .feed-arrow svg { width: 24px; height: 24px; }
  .feed-note { position: absolute; z-index: 5; background: #fff; border-radius: 18px; box-shadow: 0 18px 40px rgba(20,20,20,.16); padding: 20px 22px; width: 300px; }
  .feed-note.neg { top: 20%; left: -20%; border-top: 3px solid #e5484d; }
  .feed-note.pos { top: 20%; right: -20%; border-top: 3px solid #2fa84f; }
  .feed-note li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.4; color: var(--ink-800); }
  .feed-note li + li { margin-top: 15px; }
  .feed-note li svg { flex: none; width: 20px; height: 20px; margin-top: 1px; }
  .feed-note.neg li svg { color: #e5484d; }
  .feed-note.pos li svg { color: #2fa84f; }
  .feed-cta { text-align: center; margin-top: 40px; }
  @media (max-width: 860px){ .feed-note { position: static; width: 100%; margin-top: 16px; } .feed-arrow { display: none; } .feed-stage { grid-template-columns: 1fr; gap: 36px; max-width: 360px; } }

  /* ---------- Financement ---------- */
  .finance { padding: 84px 0; }
  .finance-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
  .finance-head h2 { font-size: var(--fs-display-md); font-weight: 900; line-height: 1.08; letter-spacing: var(--ls-tight); color: var(--ink-900); }
  .finance-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 15.5px; color: var(--text-muted); }
  .finance-eyebrow .pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border-card); box-shadow: var(--shadow-sm); border-radius: var(--radius-pill); padding: 7px 14px; font-weight: 700; color: var(--ink-900); }
  .finance-eyebrow .pill .eb-ic { width: 20px; height: 20px; border-radius: 5px; background: var(--accent-500); color: #fff; display: grid; place-items: center; }
  .finance-eyebrow .pill .eb-ic svg { width: 12px; height: 12px; }
  .price-wrap { max-width: 620px; margin: 0 auto; position: relative; }
  .price-glow { position: absolute; inset: -40px -80px; background: radial-gradient(ellipse at 50% 40%, color-mix(in srgb, var(--accent-100) 70%, transparent), transparent 62%); z-index: 0; pointer-events: none; }
  .price-main { position: relative; z-index: 1; background: #fff; border: 2px solid var(--accent-500); border-radius: 26px; box-shadow: 0 20px 48px color-mix(in srgb, var(--accent-500) 16%, transparent); overflow: hidden; }
  .price-head { padding: 30px 34px 26px; border-bottom: 1px solid var(--border-subtle); position: relative; }
  .price-tag { display: inline-block; background: var(--accent-500); color: #fff; font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: var(--radius-pill); }
  .price-amount { display: flex; align-items: flex-start; gap: 2px; margin-top: 16px; font-family: var(--font-primary); font-weight: 900; color: var(--ink-900); line-height: 1; }
  .price-amount .num { font-size: 56px; letter-spacing: -0.02em; }
  .price-amount .cur { font-size: 26px; margin-top: 6px; }
  .price-head .chev { position: absolute; right: 34px; top: 50%; transform: translateY(-50%); color: var(--accent-500); }
  .price-head .chev svg { width: 26px; height: 26px; }
  .price-sub { margin-top: 14px; font-size: 15px; color: var(--text-muted); }
  .price-sub b { color: var(--ink-900); font-weight: 700; }
  .price-body { padding: 28px 34px 34px; }
  .price-body .inc-t { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-900); }
  .price-list { margin-top: 20px; display: flex; flex-direction: column; gap: 15px; }
  .price-list li { display: flex; align-items: center; gap: 13px; font-size: 15.5px; color: var(--ink-800); }
  .price-list li svg { flex: none; width: 22px; height: 22px; color: var(--accent-500); }
  .price-body .btn-primary { width: 100%; justify-content: center; margin-top: 28px; padding: 17px; font-size: 16px; }
  .price-rest { position: relative; z-index: 1; max-width: 500px; margin: 26px auto 0; background: #fff; border: 2px solid var(--accent-500); border-radius: 22px; box-shadow: 0 14px 34px color-mix(in srgb, var(--accent-500) 12%, transparent); padding: 28px 34px; }
  .price-rest .rtag { display: inline-block; background: var(--ink-100); color: var(--ink-700); font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: var(--radius-pill); }
  .price-rest .price-amount { margin-top: 14px; }
  .price-rest .chev { position: absolute; right: 34px; top: 44%; color: var(--accent-500); }
  .price-rest .chev svg { width: 26px; height: 26px; }
  .price-rest .rsub { margin-top: 12px; font-size: 15px; color: var(--text-muted); }
  .finance-note { max-width: 720px; margin: 30px auto 0; background: var(--ink-50); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 22px 30px; text-align: center; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }

  /* ---------- Final CTA ---------- */
  .btn-white { background: #fff; color: var(--ink-900); }
  .btn-white:hover { background: var(--ink-50); transform: translateY(-2px); color: var(--ink-900); }
  .btn-lg { padding: 17px 34px; font-size: 16px; }
  .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-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%, color-mix(in srgb, var(--accent-500) 0%, transparent) 38%); }
  @media (max-width: 980px){ .final-cta { grid-template-columns: 1fr; gap: 0; } .final-photo { min-height: 240px; } }

  /* ---------- Footer ---------- */
  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; display: flex; flex-direction: column; align-items: center; text-align: center; }.03; letter-spacing: 0.05em; pointer-events: none; }
  .footer-inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .fl-img { height: 30px; width: auto; }
  .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; 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); color: #fff; }
  .social-row svg { width: 18px; height: 18px; }
  .footer-bottom { margin-top: 34px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px; font-size: 13px; color: var(--text-muted); }
  .footer-bottom a { color: var(--text-muted); }
  .footer-bottom a:hover { color: var(--accent-500); }
