/* ============================================================
   Aimantio — Stylesheet
   ============================================================ */

/* === Self-hosted Inter (variable, weights 400→900) === */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:focus-visible {
  outline: 3px solid var(--accent-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === Design tokens === */
:root {
  --bg: #FFFFFF;
  --bg-soft: #FAF7FF;
  --bg-dark: #0F0F1E;
  --bg-dark-2: #1A1A2E;
  --ink: #0F0F1E;
  --ink-soft: #3A3A52;
  --muted: #6E6E8A;
  --line: #ECEAF5;

  --accent-pink: #FF3D7F;
  --accent-orange: #FF6B35;
  --accent-amber: #FFA630;
  --accent-purple: #A855F7;
  --accent-blue: #6366F1;
  --accent-cyan: #00D9FF;
  --accent-yellow: #FFD60A;
  --accent-green: #10D9A0;

  --grad-warm: linear-gradient(135deg, #FF3D7F 0%, #FF6B35 50%, #FFA630 100%);
  --grad-cool: linear-gradient(135deg, #6366F1 0%, #A855F7 50%, #EC4899 100%);
  --grad-magnet: linear-gradient(135deg, #FF3D7F 0%, #A855F7 50%, #6366F1 100%);
  --grad-electric: linear-gradient(135deg, #00D9FF 0%, #6366F1 100%);
  --grad-sun: linear-gradient(135deg, #FFD60A 0%, #FF6B35 100%);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(15,15,30,0.06);
  --shadow: 0 8px 30px rgba(15,15,30,0.08);
  --shadow-lg: 0 24px 60px rgba(15,15,30,0.12);
  --shadow-glow: 0 20px 50px rgba(168, 85, 247, 0.25);

  --container: 1200px;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.25; }
h4 { font-size: 1.15rem; line-height: 1.3; }

p { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.08);
  color: var(--accent-purple);
  border: 1px solid rgba(168, 85, 247, 0.18);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.15);
}

.gradient-text {
  background: var(--grad-magnet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 60ch;
}

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section-head { max-width: 720px; margin-bottom: 3.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 1rem; }
.section-head .lead { margin-left: auto; margin-right: auto; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad-magnet);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 26px 60px rgba(168, 85, 247, 0.35); }
.btn-ghost {
  background: rgba(15, 15, 30, 0.04);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(15, 15, 30, 0.08); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #2A2A45; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* === Navigation === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(236, 234, 245, 0);
  transition: border-color .25s, background .25s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,0.95); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { color: var(--ink); display: inline-flex; align-items: center; }
.nav-logo svg { height: 32px; width: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-menu a {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.95rem;
  position: relative;
  transition: color .2s;
}
.nav-menu a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }

.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  position: relative;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s;
}
.nav-burger span::before, .nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s;
}
.nav-burger span::before { top: -6px; }
.nav-burger span::after { top: 6px; }
.nav-burger[aria-expanded="true"] span { background: transparent; }
.nav-burger[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
.nav-burger[aria-expanded="true"] span::after { transform: rotate(-45deg); top: 0; }

/* === Call button (Vapi trigger in nav) === */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--accent-purple);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-call:hover {
  background: #9333EA;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}
.btn-call__icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-call__icon svg { width: 100%; height: 100%; }
.btn-call.is-loading { background: var(--accent-blue); cursor: wait; }
.btn-call.is-active { background: #FF3D7F; }
.btn-call.is-active:hover { background: #e0306d; }
.btn-call.is-active .btn-call__icon { animation: btn-call-pulse 1.4s ease-in-out infinite; }
@keyframes btn-call-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

/* Cache la bulle flottante par défaut de Vapi : on n'utilise que .btn-call */
.vapi-btn,
[class*="vapi-btn-"] { display: none !important; }

/* === Pages SEO local === */
.local-head { text-align: center; }
.local-head .hs-actions,
.local-head .local-actions { justify-content: center; }
.local-prose { max-width: 720px; margin: 0 auto; text-align: center; }
.local-prose p { margin-bottom: 1rem; }
.local-prose .lead { margin-left: auto; margin-right: auto; }
.local-hero-img {
  width: 100%; max-width: 940px;
  aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 2.25rem auto 0; display: block;
  box-shadow: var(--shadow-lg);
}
.local-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}
/* Listes "pour qui" et maillage : pills centrées */
.local-pills,
.local-links {
  list-style: none; padding: 0; margin: 0 auto;
  max-width: 860px;
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center;
}
.local-pills li,
.local-links li a {
  display: inline-block;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.local-links li a { transition: color .2s, border-color .2s; }
.local-links li a:hover { color: var(--ink); border-color: var(--accent-purple); }
@media (max-width: 640px) {
  .local-method-grid { grid-template-columns: 1fr; }
}

/* === Bandeau cookies === */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 560px; margin: 0 auto;
  background: var(--bg-dark); color: #fff;
  border-radius: var(--radius); padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-lg); z-index: 200;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.cookie-banner p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0; line-height: 1.5; }
.cookie-banner__actions { display: flex; gap: 0.6rem; justify-content: flex-end; }
.cookie-banner__actions .btn { padding: 0.55rem 1.1rem; font-size: 0.9rem; }

/* === Hero === */
.hero {
  position: relative;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: -1;
  animation: float 12s ease-in-out infinite;
  pointer-events: none;
}
.blob-1 { width: 480px; height: 480px; background: var(--accent-pink); top: -120px; left: -120px; }
.blob-2 { width: 520px; height: 520px; background: var(--accent-purple); top: -80px; right: -150px; animation-delay: -4s; }
.blob-3 { width: 380px; height: 380px; background: var(--accent-cyan); bottom: -120px; left: 30%; animation-delay: -8s; opacity: 0.35; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.08); }
  66%      { transform: translate(-30px,40px) scale(0.95); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-title { margin-bottom: 1.5rem; }
.hero-title span.under { position: relative; white-space: nowrap; }
.hero-title span.under::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 12px;
  background: var(--grad-sun);
  z-index: -1;
  border-radius: 4px;
  transform: skew(-8deg);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
}
.hero-meta-item strong {
  font-size: 1.85rem;
  font-weight: 800;
  background: var(--grad-magnet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.hero-meta-item span {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Hero visual: floating cards */
.hero-visual {
  position: relative;
  height: 480px;
}
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  animation: bob 6s ease-in-out infinite;
}
.float-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.float-card .icon svg { width: 22px; height: 22px; color: #fff; }
.float-card .label { font-size: 0.78rem; color: var(--muted); }
.float-card .value { font-weight: 800; font-size: 1.15rem; }

.fc-1 { top: 30px; left: 20px; }
.fc-1 .icon { background: var(--grad-warm); }
.fc-2 { top: 130px; right: 0; animation-delay: -2s; }
.fc-2 .icon { background: var(--grad-electric); }
.fc-3 { bottom: 80px; left: 60px; animation-delay: -4s; }
.fc-3 .icon { background: var(--grad-cool); }
.fc-4 { bottom: 0; right: 40px; animation-delay: -3s; }
.fc-4 .icon { background: linear-gradient(135deg, #10D9A0, #00D9FF); }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.hero-orb {
  position: absolute;
  inset: 50px;
  border-radius: 50%;
  background: var(--grad-magnet);
  opacity: 0.18;
  filter: blur(40px);
  z-index: -1;
}

/* === Trust bar / marquee === */
.trust {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.marquee {
  display: flex;
  gap: 4rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  animation: scroll 40s linear infinite;
  flex-shrink: 0;
}
.marquee-track span {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  opacity: 0.45;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* === Cards generic === */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  height: 100%;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* === Problem section === */
.problem { background: var(--bg-soft); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.problem-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid var(--line);
}
.problem-card .x {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255, 61, 127, 0.1);
  color: var(--accent-pink);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 800;
}
.problem-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.95rem; }

/* === Services / Pillars === */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pillar {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad-magnet);
}
.pillar:nth-child(2)::before { background: var(--grad-warm); }
.pillar:nth-child(3)::before { background: var(--grad-electric); }
.pillar:nth-child(4)::before { background: var(--grad-sun); }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pillar .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad-magnet);
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
  color: #fff;
}
.pillar:nth-child(2) .icon { background: var(--grad-warm); }
.pillar:nth-child(3) .icon { background: var(--grad-electric); }
.pillar:nth-child(4) .icon { background: var(--grad-sun); }
.pillar .icon svg { width: 26px; height: 26px; }
.pillar h3 { margin-bottom: 0.6rem; }
.pillar p { font-size: 0.96rem; }
.pillar ul {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}
.pillar ul li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.pillar ul li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad-magnet);
}

/* === Method (process) === */
.method { position: relative; }
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.method-step {
  position: relative;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem 1.75rem;
  counter-increment: step;
  border: 1px solid var(--line);
  overflow: hidden;
}
.method-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -10px; right: -10px;
  font-size: 6rem;
  font-weight: 900;
  background: var(--grad-magnet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.12;
  line-height: 1;
}
.method-step h3 { margin-bottom: 0.5rem; }
.method-step p { font-size: 0.96rem; }
.method-step .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-purple);
  background: rgba(168, 85, 247, 0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* === Pricing === */
.pricing { background: var(--bg-soft); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.plan {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan.featured {
  border-color: transparent;
  background: var(--bg-dark);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.plan.featured h3, .plan.featured .plan-price__amount { color: #fff; }
.plan.featured .plan-price__from, .plan.featured .plan-price__per { color: rgba(255,255,255,0.75); }
.plan.featured p, .plan.featured li { color: rgba(255,255,255,0.78); }
.plan.featured .plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-warm);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}
.plan h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.plan .plan-desc { font-size: 0.95rem; margin-bottom: 1.5rem; }
.plan-price { margin-bottom: 1.75rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 0.4rem; }
.plan-price__from { width: 100%; font-size: 0.9rem; color: var(--muted); margin-bottom: 0.15rem; }
.plan-price__amount { font-size: clamp(2.1rem, 4vw, 2.6rem); font-weight: 800; color: var(--ink); white-space: nowrap; }
.plan-price__per { color: var(--muted); font-size: 0.95rem; }
.plan-price strong { font-size: 2.6rem; font-weight: 800; color: var(--ink); }
.plan-price small { color: var(--muted); font-size: 0.9rem; }
.plan ul { display: grid; gap: 0.75rem; margin-bottom: 2rem; flex-grow: 1; }
.plan li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.plan li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  color: var(--accent-green);
}
.plan.featured li svg { color: var(--accent-cyan); }
.plan .btn { width: 100%; justify-content: center; }
.plan.featured .btn-primary { background: var(--grad-warm); }

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--accent-purple); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent-purple);
  transition: transform .2s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); }

/* === CTA section === */
.cta-final {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.cta-card {
  position: relative;
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-card h2 { color: #fff; margin-bottom: 1rem; }
.cta-card p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2rem; }

/* === Form === */
.form-section { background: var(--bg-soft); }
.form-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.form-field label .req { color: var(--accent-pink); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  font-size: 1rem;
  color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; font-family: inherit; }
.form-radio-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.form-radio {
  cursor: pointer;
  padding: 0.6rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all .2s;
  position: relative;
}
.form-radio input { position: absolute; opacity: 0; pointer-events: none; }
.form-radio:hover { border-color: var(--accent-purple); }
.form-radio:has(input:checked) {
  border-color: transparent;
  background: var(--grad-magnet);
  color: #fff;
}
.form-submit {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-submit .btn { align-self: flex-start; }
.form-message {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  display: none;
}
.form-message.success { display: block; background: rgba(16, 217, 160, 0.1); color: #047857; border: 1px solid rgba(16, 217, 160, 0.3); }
.form-message.error { display: block; background: rgba(255, 61, 127, 0.1); color: #b91c4f; border: 1px solid rgba(255, 61, 127, 0.3); }

/* Honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* === Footer === */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer h3 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer ul { display: grid; gap: 0.7rem; }
.footer ul a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color .2s;
}
.footer ul a:hover { color: #fff; }
.footer-about p { color: rgba(255,255,255,0.65); margin-top: 1rem; max-width: 36ch; font-size: 0.95rem; }
.footer-about svg { height: 36px; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
}
.footer-bottom small { color: rgba(255,255,255,0.5); }

/* === Page header (for inner pages) === */
.page-head {
  position: relative;
  padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(3rem, 5vw, 4rem);
  overflow: hidden;
  text-align: center;
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { margin-bottom: 1rem; max-width: 18ch; margin-left: auto; margin-right: auto; }
.page-head .lead { margin: 0 auto; }

/* === Stat strip === */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding: 2.5rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-magnet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat span { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 0.5rem; display: inline-block; }

/* === Reveal on scroll === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* === Responsive === */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { height: 380px; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .nav-menu, .nav-cta .btn:not(.btn-burger) { display: none; }
  .nav-burger { display: inline-flex; }
  /* Bouton appel compact en icône seule, juste à gauche du burger */
  .btn-call {
    padding: 0;
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 50%;
  }
  .btn-call__label { display: none; }
  .btn-call__icon { width: 18px; height: 18px; }
  .nav.open .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: #fff;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open .nav-menu a { padding: 0.5rem 0; font-size: 1.1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; }
  .fc-2 { right: 10px; }
  .fc-4 { right: 20px; }
  .hero-meta { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-visual { height: 340px; }
  .float-card { padding: 1rem 1.1rem; }
  .float-card .icon { width: 38px; height: 38px; }
  .float-card .value { font-size: 1rem; }
}

/* === Prose (legal & long-form) === */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin: 2.5rem 0 1rem;
}
.prose h3 {
  font-size: 1.1rem;
  margin: 2rem 0 0.75rem;
}
.prose p, .prose li {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.prose ul, .prose ol {
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}
.prose ul li, .prose ol li {
  list-style: disc;
  margin-bottom: 0.5rem;
}
.prose ol li { list-style: decimal; }
.prose a {
  color: var(--accent-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.prose a:hover { color: var(--accent-pink); }
.prose strong { color: var(--ink); font-weight: 700; }

/* === Utilities === */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.flex { display: flex; }
.gap-1 { gap: 1rem; }
.wrap { flex-wrap: wrap; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─────────────────────────────────────────────────────────────────────────── */
/*  HERO — Animated geometric shapes (port of 21st.dev shape-landing-hero)     */
/* ─────────────────────────────────────────────────────────────────────────── */

.hero-shapes {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0F0F1E;
  isolation: isolate;
  margin-top: -1px; /* glue sous la nav */
}

.hero-shapes__bg {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 50% 45% at 18% 28%, rgba(99,102,241,0.20), transparent 70%),
    radial-gradient(ellipse 55% 45% at 82% 72%, rgba(255,61,127,0.22), transparent 70%),
    radial-gradient(ellipse 45% 40% at 68% 22%, rgba(168,85,247,0.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 32% 78%, rgba(255,107,53,0.14), transparent 70%);
  filter: blur(50px);
  z-index: 0;
  animation: hero-mesh-breathe 18s ease-in-out infinite;
  will-change: transform;
}

@keyframes hero-mesh-breathe {
  0%, 100% { transform: scale(1) translate(0, 0) rotate(0deg); }
  33%      { transform: scale(1.06) translate(-1.5%, 1%) rotate(0.5deg); }
  66%      { transform: scale(1.03) translate(2%, -1.5%) rotate(-0.5deg); }
}

/* Dot grid pattern avec masque radial pour fondre sur les bords */
.hero-shapes__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 65% at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at center, #000 30%, transparent 80%);
  opacity: 0.9;
}

/* Halo qui suit la souris */
.hero-shapes__spotlight {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 30%),
    rgba(255, 61, 127, 0.10),
    rgba(168, 85, 247, 0.05) 30%,
    transparent 65%
  );
  transition: background 0.2s ease;
  mix-blend-mode: screen;
}

/* Grain subtil */
.hero-shapes__noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

/* Aurora — fine ligne de lumière qui balaye en bas */
.hero-shapes__aurora {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  z-index: 3;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 61, 127, 0) 30%,
    rgba(255, 61, 127, 0.9) 48%,
    rgba(168, 85, 247, 0.9) 52%,
    rgba(99, 102, 241, 0) 70%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: hero-aurora-sweep 9s linear infinite;
  filter: drop-shadow(0 0 12px rgba(255, 61, 127, 0.6));
  pointer-events: none;
}

@keyframes hero-aurora-sweep {
  0%   { background-position: -110% 0; }
  100% { background-position: 110% 0; }
}

/* Particules lumineuses */
.hero-shapes__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hs-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.8),
    0 0 14px rgba(255, 61, 127, 0.50);
  opacity: 0;
  animation: hs-particle-twinkle 6s ease-in-out infinite;
  will-change: opacity, transform;
}

.hs-particle:nth-child(1) { top: 14%; left: 9%;  animation-delay: 0s;    }
.hs-particle:nth-child(2) { top: 22%; left: 88%; animation-delay: 0.8s;  }
.hs-particle:nth-child(3) { top: 42%; left: 18%; animation-delay: 1.6s;  }
.hs-particle:nth-child(4) { top: 36%; left: 76%; animation-delay: 2.4s;  }
.hs-particle:nth-child(5) { top: 58%; left: 12%; animation-delay: 3.2s;  }
.hs-particle:nth-child(6) { top: 62%; left: 84%; animation-delay: 0.4s;  }
.hs-particle:nth-child(7) { top: 78%; left: 28%; animation-delay: 2.0s;  }
.hs-particle:nth-child(8) { top: 82%; left: 68%; animation-delay: 1.2s;  }
.hs-particle:nth-child(9) { top: 50%; left: 50%; animation-delay: 2.8s;  }

@keyframes hs-particle-twinkle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.4); }
  50%      { opacity: 1; transform: translateY(-12px) scale(1.2); }
}

.hero-shapes__layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hs-shape {
  position: absolute;
  opacity: 0;
  animation: hs-enter 2.4s cubic-bezier(0.23, 0.86, 0.39, 0.96) forwards;
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

@keyframes hs-enter {
  0%   { opacity: 0; transform: translateY(-150px) rotate(calc(var(--rot, 0deg) - 15deg)); }
  100% { opacity: 1; transform: translateY(0) rotate(var(--rot, 0deg)); }
}

.hs-shape__float {
  width: var(--w);
  height: var(--h);
  position: relative;
  animation: hs-float 12s ease-in-out infinite;
  animation-delay: calc(var(--delay, 0s) + 2.4s);
}

@keyframes hs-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(15px); }
}

.hs-shape__inner {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--col, rgba(255,61,127,0.15)), transparent);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.10);
}

.hs-shape__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2), transparent 70%);
}

.hs-shape--1 { --delay: 0.3s; --w: 600px; --h: 140px; --rot: 12deg;  --col: rgba(99,102,241,0.18);  left: -10%; top: 18%; }
.hs-shape--2 { --delay: 0.5s; --w: 500px; --h: 120px; --rot: -15deg; --col: rgba(255,61,127,0.20);  right: -5%; top: 68%; }
.hs-shape--3 { --delay: 0.4s; --w: 300px; --h: 80px;  --rot: -8deg;  --col: rgba(168,85,247,0.18);  left: 5%;   bottom: 8%; }
.hs-shape--4 { --delay: 0.6s; --w: 200px; --h: 60px;  --rot: 20deg;  --col: rgba(255,107,53,0.20);  right: 18%; top: 12%; }
.hs-shape--5 { --delay: 0.7s; --w: 150px; --h: 40px;  --rot: -25deg; --col: rgba(16,217,160,0.18);  left: 22%;  top: 8%; }

@media (min-width: 768px) {
  .hs-shape--1 { left: -5%;  top: 22%; }
  .hs-shape--2 { right: 0;   top: 73%; }
  .hs-shape--3 { left: 10%;  bottom: 12%; }
  .hs-shape--4 { right: 22%; top: 16%; }
  .hs-shape--5 { left: 26%;  top: 11%; }
}

.hero-shapes__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 5rem 0 6rem;
}

.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: hs-fade-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 0.5s forwards;
}

.hs-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #FF3D7F;
  box-shadow: 0 0 10px rgba(255, 61, 127, 0.7);
}

.hs-title {
  font-size: clamp(2.1rem, 4.2vw + 0.8rem, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 auto 1.75rem;
  max-width: 32ch;
  text-wrap: balance;
  opacity: 0;
  animation: hs-fade-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 0.7s forwards;
}

.hs-title__line-1,
.hs-title__line-2 {
  display: block;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Sur écran >= tablette, chaque ligne du titre reste sur une seule ligne */
@media (min-width: 720px) {
  .hs-title__line-1,
  .hs-title__line-2 {
    white-space: nowrap;
  }
}

.hs-title__line-1 {
  background-image: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.85));
}

.hs-title__line-2 {
  background-image: linear-gradient(
    90deg,
    #FFB3D1 0%,
    rgba(255, 255, 255, 0.98) 25%,
    #C4B5FD 50%,
    rgba(255, 255, 255, 0.98) 75%,
    #FFB3D1 100%
  );
  background-size: 220% 100%;
  background-position: 0% 0;
  animation: hs-title-shimmer 6s linear 1.5s infinite;
  filter: drop-shadow(0 0 22px rgba(168, 85, 247, 0.25));
}

@keyframes hs-title-shimmer {
  0%   { background-position: 220% 0; }
  100% { background-position: -220% 0; }
}

.hs-lead {
  font-size: clamp(1rem, 0.55vw + 0.95rem, 1.2rem);
  color: rgba(255, 255, 255, 0.62);
  max-width: 36rem;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0;
  animation: hs-fade-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 0.9s forwards;
}

.hs-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  animation: hs-fade-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) 1.1s forwards;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.30);
  transform: translateY(-1px);
}

@keyframes hs-fade-up {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-shapes__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(15,15,30,0.55) 0%, transparent 12%, transparent 88%, var(--bg, #FAF7FF) 100%);
}

@media (max-width: 768px) {
  .hero-shapes { min-height: 78vh; }
  .hero-shapes__content { padding: 3.5rem 0 4rem; }

  /* Tailles + placements adaptés au format portrait */
  .hs-shape--1 { --w: 320px; --h: 80px; left: -25%; top: 8%;  }
  .hs-shape--2 { --w: 260px; --h: 70px; right: -25%; top: 62%; }
  .hs-shape--3 { --w: 180px; --h: 50px; left: -8%;  bottom: 14%; }
  .hs-shape--4 { --w: 130px; --h: 40px; right: 5%;  top: 6%;  }
  .hs-shape--5 { --w: 100px; --h: 30px; left: 10%;  top: 4%;  }

  /* Titre : encore plus compact pour rester sur 2 lignes */
  .hs-title {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
    line-height: 1.08;
    margin-bottom: 1.5rem;
    max-width: 22ch;
  }
  .hs-lead {
    font-size: 0.98rem;
    padding: 0 0.5rem;
    margin-bottom: 1.75rem;
  }
  .hs-badge {
    font-size: 0.78rem;
    margin-bottom: 1.5rem;
  }

  /* CTAs empilés et larges */
  .hs-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hs-actions .btn,
  .hs-actions .btn-ghost-light {
    width: 100%;
    justify-content: center;
  }

  /* Pattern de points : plus serré pour cohérence visuelle */
  .hero-shapes__grid {
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse 80% 70% at center, #000 25%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, #000 25%, transparent 80%);
  }

  /* Particules : un peu plus visibles */
  .hs-particle {
    width: 2.5px;
    height: 2.5px;
  }
}

@media (max-width: 420px) {
  .hs-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .hs-lead  { font-size: 0.94rem; }
  .hero-shapes { min-height: 76vh; }
}

@media (prefers-reduced-motion: reduce) {
  .hs-shape, .hs-shape__float,
  .hs-badge, .hs-title, .hs-lead, .hs-actions,
  .hero-shapes__bg, .hero-shapes__aurora,
  .hs-particle, .hs-title__line-2 {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hs-particle { opacity: 0.6 !important; }
}

/* ─────────────────────────────────────────────────────────────────────────── */
/*  Article inline CTA — inséré au milieu des articles SEO                     */
/* ─────────────────────────────────────────────────────────────────────────── */
.prose .article-cta {
  display: block;
  margin: 2.5rem 0;
  padding: 1.75rem 1.75rem 1.5rem;
  border-radius: var(--radius-lg, 20px);
  background: linear-gradient(135deg, rgba(255,61,127,0.08), rgba(168,85,247,0.08) 60%, rgba(99,102,241,0.08));
  border: 1px solid rgba(168, 85, 247, 0.18);
}

.prose .article-cta p {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink, #0F0F1E);
}

.prose .article-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF3D7F, #A855F7 50%, #6366F1);
  color: #ffffff !important;
  font-weight: 600;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.prose .article-cta a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(168, 85, 247, 0.25);
}

.prose .article-cta a::after {
  content: ' →';
}
