/* ==========================================================================
   ACACED Nova — design system
   Identity: produit moderne, jeune, fluide
   Indigo primary (tonal scale) + coral controlled accent + cool neutrals
   ========================================================================== */

:root {
  /* Indigo tonal scale */
  --i-50:  #F2F1FE;
  --i-100: #E5E3FD;
  --i-200: #CBC7FB;
  --i-300: #A9A2F6;
  --i-400: #8478EF;
  --i-500: #6355E6;
  --i-600: #4C3DD4;
  --i-700: #3C2FAE;
  --i-800: #2E248A;
  --i-900: #1F1A5E;
  --i-950: #120F38;

  /* Coral accent — used sparingly */
  --c-100: #FFE7EA;
  --c-300: #FFB0BC;
  --c-400: #FF8B9C;
  --c-500: #FB6A80;
  --c-600: #E84A64;

  /* Cool neutrals */
  --n-0:   #FFFFFF;
  --n-25:  #FBFBFE;
  --n-50:  #F6F6FB;
  --n-100: #EFEFF6;
  --n-200: #E3E3ED;
  --n-300: #CFCFDE;
  --n-400: #9C9CB4;
  --n-500: #6E6E8A;
  --n-600: #55556E;
  --n-700: #3E3E54;
  --n-800: #2A2A3C;
  --n-900: #191926;

  --ink: var(--n-900);
  --muted: var(--n-600);
  --line: var(--n-200);
  --bg: var(--n-25);

  /* Mint — tertiary, tiny doses only */
  --mint-100: #DCFBF1;
  --mint-600: #0FA37F;

  /* Radii — modern, generous */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;
  --r-pill: 999px;

  /* Multi-layer shadows */
  --sh-xs: 0 1px 2px rgba(25, 25, 38, .04), 0 1px 1px rgba(25, 25, 38, .03);
  --sh-sm: 0 1px 2px rgba(25, 25, 38, .04), 0 2px 6px rgba(25, 25, 38, .04), 0 6px 14px -6px rgba(25, 25, 38, .06);
  --sh-md: 0 1px 2px rgba(25, 25, 38, .04), 0 6px 14px -4px rgba(25, 25, 38, .07), 0 18px 34px -14px rgba(31, 26, 94, .12);
  --sh-lg: 0 2px 4px rgba(25, 25, 38, .04), 0 12px 24px -8px rgba(31, 26, 94, .10), 0 32px 56px -20px rgba(31, 26, 94, .18);
  --sh-xl: 0 4px 8px rgba(25, 25, 38, .05), 0 24px 48px -12px rgba(31, 26, 94, .16), 0 56px 96px -32px rgba(31, 26, 94, .26);
  --sh-brand: 0 1px 2px rgba(60, 47, 174, .18), 0 8px 18px -6px rgba(76, 61, 212, .42), 0 18px 32px -14px rgba(60, 47, 174, .38);
  --sh-brand-hover: 0 1px 2px rgba(60, 47, 174, .20), 0 12px 24px -6px rgba(76, 61, 212, .48), 0 26px 46px -16px rgba(60, 47, 174, .44);

  /* 8pt spacing rhythm */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 40px; --s-8: 48px;
  --s-9: 64px; --s-10: 80px; --s-11: 96px; --s-12: 128px;

  --font-head: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --shell: 1200px;
  --shell-pad: clamp(20px, 4vw, 40px);
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; color: inherit; }
p { margin: 0 0 1em; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0 0 .5em;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.028em;
  line-height: 1.1;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 1.4rem + 4.4vw, 4.35rem); line-height: 1.04; letter-spacing: -.038em; }
h2 { font-size: clamp(1.9rem, 1.2rem + 2.5vw, 3rem); letter-spacing: -.032em; }
h3 { font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); letter-spacing: -.02em; font-weight: 700; }
h4 { font-size: 1rem; letter-spacing: -.01em; font-weight: 700; }

::selection { background: var(--i-200); color: var(--i-900); }

:focus-visible {
  outline: 3px solid var(--i-500);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --------------------------------------------------------------- shell -- */
.wrap {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--shell-pad);
}
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: var(--s-4); }
.section-sub {
  color: var(--muted);
  font-size: clamp(1rem, .95rem + .3vw, 1.15rem);
  max-width: 62ch;
  margin: 0;
}
.section-head.center .section-sub { margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--i-600);
  margin-bottom: var(--s-4);
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--i-500), var(--c-500));
}
.eyebrow-light { color: var(--c-300); }
.eyebrow-light::before { background: linear-gradient(90deg, var(--c-400), rgba(255,255,255,.5)); }

/* ------------------------------------------------------------- buttons -- */
.btn {
  --btn-y: 14px;
  --btn-x: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--btn-y) var(--btn-x);
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out),
              background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn svg { flex-shrink: 0; }
.btn:active { transform: translateY(0) scale(.985); }

.btn-primary {
  background: linear-gradient(135deg, var(--i-500) 0%, var(--i-600) 55%, var(--i-700) 100%);
  color: #fff;
  box-shadow: var(--sh-brand);
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,0) 55%);
  opacity: 1;
  z-index: -1;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--sh-brand-hover); }

.btn-accent {
  background: linear-gradient(135deg, var(--c-400) 0%, var(--c-600) 100%);
  color: #fff;
  box-shadow: 0 1px 2px rgba(232,74,100,.2), 0 10px 22px -8px rgba(232,74,100,.55);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 1px 2px rgba(232,74,100,.22), 0 16px 30px -10px rgba(232,74,100,.6); }

.btn-outline {
  background: var(--n-0);
  color: var(--i-700);
  border-color: var(--i-200);
  box-shadow: var(--sh-xs);
}
.btn-outline:hover { background: var(--i-50); border-color: var(--i-300); transform: translateY(-1px); box-shadow: var(--sh-sm); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--i-300); color: var(--i-700); background: var(--i-50); }

.btn-glass {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--i-700); box-shadow: var(--sh-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); background: #fff; }

.btn-sm { --btn-y: 10px; --btn-x: 20px; font-size: .875rem; }
.btn-lg { --btn-y: 17px; --btn-x: 34px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.btn-arrow { transition: transform .28s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* -------------------------------------------------------------- topbar -- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251,251,254,.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.topbar.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(25,25,38,.02), 0 8px 24px -18px rgba(31,26,94,.4);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  min-height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { display: inline-flex; filter: drop-shadow(0 4px 10px rgba(76,61,212,.28)); }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.03em;
}
.brand-accent {
  background: linear-gradient(120deg, var(--i-600), var(--c-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav { display: flex; align-items: center; gap: var(--s-2); }
.nav-link {
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: .925rem;
  font-weight: 500;
  color: var(--n-700);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-link:hover { color: var(--i-700); background: var(--i-50); }
.nav .btn { margin-left: var(--s-3); }

.burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--n-0);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  box-shadow: var(--sh-xs);
}
.burger span {
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s var(--ease-out), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(4rem, 8vw, 7rem);
  background: linear-gradient(168deg, var(--i-950) 0%, var(--i-800) 42%, var(--i-700) 100%);
  color: #fff;
}
.hero-mesh { position: absolute; inset: -10% -5%; z-index: -2; opacity: .95; }
.hero-mesh svg { width: 100%; height: 100%; }
.hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 78%);
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: -1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: var(--s-5); }
.hero h1 .grad {
  background: linear-gradient(100deg, var(--c-300) 0%, var(--c-500) 45%, #FFC9A3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 16px 8px 10px;
  border-radius: var(--r-pill);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: rgba(255,255,255,.92);
  margin-bottom: var(--s-5);
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-400);
  box-shadow: 0 0 0 4px rgba(251,106,128,.22);
  flex-shrink: 0;
}
.lead {
  font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem);
  color: rgba(255,255,255,.76);
  max-width: 56ch;
  margin-bottom: var(--s-7);
}
.hero-cta { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-bottom: var(--s-7); }
.hero-note {
  display: flex; align-items: center; gap: var(--s-2);
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin: calc(var(--s-7) * -1 + var(--s-4)) 0 var(--s-7);
}
.hero-note svg { flex-shrink: 0; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,.13);
}
.hero-stats div { display: flex; flex-direction: column; gap: 2px; }
.hero-stats strong {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
}
.hero-stats span { font-size: .8rem; color: rgba(255,255,255,.58); letter-spacing: .01em; }

/* Hero visual — abstract product composition */
.hero-visual { position: relative; min-height: 420px; }
.hv-panel {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, rgba(255,255,255,.13), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: var(--s-5);
  box-shadow: 0 30px 70px -30px rgba(8,6,40,.8);
}
.hv-head { display: flex; align-items: center; gap: var(--s-2); margin-bottom: var(--s-5); }
.hv-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.22); }
.hv-dot:nth-child(1) { background: rgba(251,106,128,.7); }
.hv-dot:nth-child(2) { background: rgba(255,201,163,.6); }
.hv-dot:nth-child(3) { background: rgba(15,163,127,.6); }
.hv-title {
  margin-left: auto;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  font-family: var(--font-head);
}
.hv-rows { display: grid; gap: var(--s-3); }
.hv-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: var(--s-3);
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  transition: background-color .3s var(--ease), transform .3s var(--ease-out);
}
.hv-row:hover { background: rgba(255,255,255,.11); transform: translateX(3px); }
.hv-ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.1);
}
.hv-label { font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.9); }
.hv-meta { font-size: .75rem; color: rgba(255,255,255,.5); }
.hv-bar {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hv-bar-label {
  display: flex; justify-content: space-between;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--s-2);
  font-weight: 600;
}
.hv-track { height: 7px; border-radius: var(--r-pill); background: rgba(255,255,255,.12); overflow: hidden; }
.hv-fill {
  height: 100%;
  width: 68%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--c-400), #FFC9A3);
  box-shadow: 0 0 16px rgba(251,106,128,.6);
}

.float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(255,255,255,.96);
  color: var(--i-900);
  border-radius: var(--r-md);
  padding: 11px 16px;
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: -.01em;
  box-shadow: 0 18px 40px -14px rgba(8,6,40,.6);
  animation: floaty 6s ease-in-out infinite;
  white-space: nowrap;
}
.fc-a { top: -18px; left: -22px; animation-delay: 0s; }
.fc-b { bottom: 40px; right: -26px; animation-delay: 2s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-.6deg); }
  50%      { transform: translateY(-12px) rotate(.6deg); }
}

/* --------------------------------------------------------- reassurance -- */
.reassure {
  position: relative;
  margin-top: calc(clamp(2rem, 5vw, 3.5rem) * -1);
  z-index: 2;
}
.reassure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.reassure-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-5);
  background: var(--n-0);
  transition: background-color .3s var(--ease);
}
.reassure-item:hover { background: var(--i-50); }
.reassure-ico {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--i-50);
  color: var(--i-600);
}
.reassure-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: .925rem;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.25;
}
.reassure-item span { font-size: .8rem; color: var(--muted); }

/* ------------------------------------------------------------ features -- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--s-4);
}
.feature-card {
  grid-column: span 2;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--n-0);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s var(--ease);
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: auto -40% -60% auto;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--i-100), transparent 70%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  z-index: -1;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--i-200);
}
.feature-card:hover::before { opacity: 1; }

.feature-card.span-3 { grid-column: span 3; }
.feature-card.feature-lead {
  grid-column: span 3;
  background: linear-gradient(155deg, var(--i-800), var(--i-950));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--sh-lg);
}
.feature-lead h3 { color: #fff; }
.feature-lead p { color: rgba(255,255,255,.7); }
.feature-lead .feature-icon { background: rgba(255,255,255,.1); color: #fff; }
.feature-lead::before { background: radial-gradient(circle, rgba(251,106,128,.32), transparent 70%); opacity: .75; }
.feature-lead:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: var(--s-5);
  background: var(--i-50);
  color: var(--i-600);
  transition: transform .4s var(--ease-out);
}
.feature-card:hover .feature-icon { transform: scale(1.06) rotate(-3deg); }
.fi-coral { background: var(--c-100); color: var(--c-600); }
.fi-mint  { background: var(--mint-100); color: var(--mint-600); }
.feature-card h3 { margin-bottom: var(--s-2); }
.feature-card p { color: var(--muted); font-size: .95rem; margin: 0; }

.feature-chips { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-5); }
.chip {
  font-size: .75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.85);
}

/* ------------------------------------------------------------- process -- */
.process { background: var(--n-0); border-block: 1px solid var(--line); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s-5);
  counter-reset: step;
  position: relative;
}
.step { position: relative; padding-top: var(--s-6); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--i-500);
}
.step::after {
  content: '';
  position: absolute;
  top: 8px; left: 34px; right: -12px;
  height: 1px;
  background: linear-gradient(90deg, var(--i-200), transparent);
}
.step:last-child::after { display: none; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--i-500), var(--i-700));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: var(--s-4);
  box-shadow: var(--sh-brand);
}
.step h3 { font-size: 1.075rem; margin-bottom: var(--s-2); }
.step p { color: var(--muted); font-size: .925rem; margin: 0; }

/* ------------------------------------------------------------- pricing -- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-5);
  align-items: stretch;
  padding-top: var(--s-4);
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--n-0);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s var(--ease);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--i-200); }

.pricing-popular {
  background: linear-gradient(165deg, var(--i-800) 0%, var(--i-950) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--sh-xl);
  z-index: 1;
}
.pricing-popular::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(255,255,255,.35), rgba(251,106,128,.5) 50%, rgba(255,255,255,.05));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.pricing-popular h3, .pricing-popular .price .amount { color: #fff; }
.pricing-popular .pricing-tagline,
.pricing-popular .price .unit,
.pricing-popular .duration { color: rgba(255,255,255,.62); }
.pricing-popular .pricing-list li { color: rgba(255,255,255,.88); border-color: rgba(255,255,255,.1); }
.pricing-popular .pricing-list li::before { background: rgba(251,106,128,.22); color: var(--c-300); }
.pricing-popular .pricing-icon { background: rgba(255,255,255,.1); color: var(--c-300); }
.pricing-popular .btn-outline {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.24);
  color: #fff;
  box-shadow: none;
}
.pricing-popular .btn-outline:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); }
.pricing-popular .pricing-note { color: rgba(255,255,255,.5); }

.badge-popular {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(120deg, var(--c-400), var(--c-600));
  color: #fff;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(232,74,100,.65);
}

.pricing-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid; place-items: center;
  background: var(--i-50);
  color: var(--i-600);
  margin-bottom: var(--s-5);
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: var(--s-2); }
.pricing-tagline { color: var(--muted); font-size: .9rem; margin-bottom: var(--s-5); min-height: 2.7em; }

.price { display: flex; align-items: baseline; gap: var(--s-2); }
.price .amount {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 2.2rem + 1.6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  color: var(--ink);
}
.price .unit { font-size: .85rem; color: var(--muted); font-weight: 600; }
.duration {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem;
  color: var(--muted);
  margin: var(--s-3) 0 var(--s-5);
  font-weight: 500;
}

.pricing-list { flex: 1 1 auto; margin-bottom: var(--s-5); }
.pricing-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: .9rem;
  border-bottom: 1px solid var(--line);
  color: var(--n-700);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 10px;
  width: 19px; height: 19px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .68rem;
  font-weight: 800;
  background: var(--i-50);
  color: var(--i-600);
}
.pricing-actions { display: grid; gap: var(--s-2); }
.pricing-note {
  text-align: center;
  font-size: .75rem;
  color: var(--n-400);
  margin: var(--s-3) 0 0;
}

/* ------------------------------------------------------------ CTA band -- */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--i-700) 0%, var(--i-900) 55%, var(--i-950) 100%);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: var(--sh-xl);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s-6);
  align-items: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -50% -20% auto auto;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,106,128,.35), transparent 65%);
  z-index: -1;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: auto auto -60% -12%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,85,230,.5), transparent 68%);
  z-index: -1;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); margin-bottom: var(--s-3); }
.cta-band p { color: rgba(255,255,255,.7); margin: 0; max-width: 52ch; }
.cta-band-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* ----------------------------------------------------------- objections -- */
.objections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-4);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.objection {
  background: var(--n-0);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.objection:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.objection-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--c-600);
  background: var(--c-100);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-4);
  font-family: var(--font-head);
}
.objection h3 { font-size: 1.075rem; margin-bottom: var(--s-3); }
.objection p { color: var(--muted); font-size: .925rem; margin: 0; }

/* ----------------------------------------------------------- accordion -- */
.accordion { max-width: 52rem; margin-inline: auto; display: grid; gap: var(--s-3); }
.accordion-item {
  background: var(--n-0);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.accordion-item:hover { border-color: var(--i-200); }
.accordion-item.open { border-color: var(--i-300); box-shadow: var(--sh-md); }
.accordion-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-head);
  font-size: .975rem;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--ink);
  cursor: pointer;
  transition: color .2s var(--ease);
}
.accordion-q:hover { color: var(--i-700); }
.accordion-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--i-50);
  color: var(--i-600);
  position: relative;
  transition: background-color .25s var(--ease), transform .35s var(--ease-out);
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s var(--ease);
}
.accordion-icon::before { width: 11px; height: 2px; }
.accordion-icon::after  { width: 2px; height: 11px; }
.accordion-item.open .accordion-icon { background: var(--i-600); color: #fff; transform: rotate(90deg); }
.accordion-item.open .accordion-icon::after { transform: scaleY(0); opacity: 0; }
.accordion-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease-out);
}
.accordion-item.open .accordion-a { grid-template-rows: 1fr; }
.accordion-a > div { overflow: hidden; }
.accordion-a-inner {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: .925rem;
  max-width: 68ch;
}

/* --------------------------------------------------------------- modal -- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 32px);
  background: rgba(18, 15, 56, .58);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  position: relative;
  width: 100%;
  max-width: 44rem;
  max-height: min(86vh, 900px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--n-0);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  transform: translateY(18px) scale(.97);
  opacity: 0;
  transition: transform .38s var(--ease-out), opacity .3s var(--ease);
  scrollbar-width: thin;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); opacity: 1; }

.modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: var(--s-6) var(--s-6) var(--s-5);
  background: linear-gradient(150deg, var(--i-800), var(--i-950));
  color: #fff;
}
.modal-header .modal-body-title { color: #fff; margin: 0 0 6px; font-size: clamp(1.35rem, 1.1rem + .9vw, 1.75rem); }
.modal-body-sub { color: rgba(255,255,255,.68); font-size: .9rem; margin: 0; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s var(--ease), transform .25s var(--ease-out);
}
.modal-close:hover { background: rgba(255,255,255,.24); transform: rotate(90deg); }
.modal-content { padding: var(--s-6); }
.modal-section { margin-bottom: var(--s-6); }
.modal-section:last-of-type { margin-bottom: var(--s-5); }
.modal-section h4 {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--i-600);
  margin-bottom: var(--s-3);
}
.modal-section h4::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--i-100), transparent);
}
.modal-section li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: .925rem;
  color: var(--n-700);
}
.modal-section li::before {
  content: '';
  position: absolute;
  left: 2px; top: 15px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-400);
}
.modal-foot {
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}
.modal-foot .pricing-note { margin-top: var(--s-3); }

/* ------------------------------------------------------------- contact -- */
.section-contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(160deg, var(--i-900) 0%, var(--i-950) 100%);
  color: #fff;
}
.section-contact::before {
  content: '';
  position: absolute;
  inset: -30% -10% auto auto;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,85,230,.42), transparent 65%);
  z-index: -1;
}
.section-contact::after {
  content: '';
  position: absolute;
  inset: auto auto -35% -8%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,106,128,.22), transparent 68%);
  z-index: -1;
}
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-copy h2 { color: #fff; }
.contact-copy > p { color: rgba(255,255,255,.72); max-width: 46ch; }
.contact-points { display: grid; gap: var(--s-3); margin-top: var(--s-6); }
.contact-points li {
  position: relative;
  padding-left: 34px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.contact-points li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .72rem;
  font-weight: 800;
  background: rgba(251,106,128,.18);
  color: var(--c-300);
}

.contact-form {
  position: relative;
  background: var(--n-0);
  color: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--sh-xl);
}
.form-title { font-size: 1.2rem; margin-bottom: var(--s-2); }
.form-intro { color: var(--muted); font-size: .9rem; margin-bottom: var(--s-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field { margin-bottom: var(--s-4); }
.field label {
  display: block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: -.005em;
  margin-bottom: 6px;
  color: var(--n-700);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--r-sm);
  border: 1px solid var(--n-300);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--n-50);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 92px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E6E8A' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--n-400); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--n-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--n-0);
  border-color: var(--i-500);
  box-shadow: 0 0 0 4px rgba(99,85,230,.14);
}
.field input.invalid, .field select.invalid, .field textarea.invalid {
  border-color: var(--c-500);
  background: #FFF7F8;
}
.field input.invalid:focus, .field select.invalid:focus { box-shadow: 0 0 0 4px rgba(251,106,128,.16); }
.error-msg {
  display: block;
  color: var(--c-600);
  font-size: .78rem;
  font-weight: 600;
  margin-top: 5px;
  min-height: 1.05em;
}
.form-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  font-size: .78rem;
  color: var(--n-500);
  margin: var(--s-3) 0 0;
}
.form-microcopy svg { flex-shrink: 0; color: var(--mint-600); }
.form-status { font-size: .875rem; font-weight: 600; margin: var(--s-3) 0 0; text-align: center; }
.form-status.error { color: var(--c-600); }

/* Elegant success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--s-6) var(--s-4);
  animation: successIn .5s var(--ease-out) both;
}
.contact-form.is-sent .form-body { display: none; }
.contact-form.is-sent .form-success { display: block; }
@keyframes successIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.success-mark {
  width: 68px; height: 68px;
  margin: 0 auto var(--s-5);
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--mint-100);
  color: var(--mint-600);
  box-shadow: 0 0 0 10px rgba(15,163,127,.08);
}
.success-mark svg path {
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  animation: drawCheck .6s .18s var(--ease-out) forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.form-success h3 { font-size: 1.25rem; margin-bottom: var(--s-2); }
.form-success p { color: var(--muted); font-size: .925rem; margin: 0 auto; max-width: 34ch; }

/* -------------------------------------------------------- sticky mobile -- */
.sticky-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: var(--s-2);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px -18px rgba(31,26,94,.6);
  transform: translateY(110%);
  transition: transform .35s var(--ease-out);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar .btn { flex: 1 1 0; --btn-x: 14px; font-size: .875rem; }
.sticky-bar .btn-outline { flex: 0 1 auto; }

/* -------------------------------------------------------------- footer -- */
.footer {
  background: var(--i-950);
  color: rgba(255,255,255,.6);
  padding-block: clamp(3rem, 6vw, 4.5rem) var(--s-6);
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: var(--s-7);
  align-items: start;
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: var(--s-4); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-accent {
  background: linear-gradient(120deg, var(--i-300), var(--c-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-text { font-size: .925rem; max-width: 40ch; margin: 0; }
.footer-col h4 {
  color: #fff;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer-nav { display: grid; gap: 10px; }
.footer-nav a { font-size: .925rem; transition: color .2s var(--ease); width: fit-content; }
.footer-nav a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
  padding-top: var(--s-5);
  font-size: .8rem;
  color: rgba(255,255,255,.42);
}
.footer-bottom p { margin: 0; }

/* -------------------------------------------------------------- reveal -- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
/* Filet de sécurité : si l'IntersectionObserver n'a pas encore déclenché
   (impression, capture pleine page, onglet en arrière-plan), le contenu
   doit rester lisible plutôt que de rester à opacity:0. */
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------------------------------------------------------- responsive -- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; margin-top: var(--s-6); max-width: 30rem; }
  .fc-a { left: auto; right: 12px; top: -16px; }
  .fc-b { right: 8px; bottom: 20px; }
  .reassure-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feature-card.feature-lead, .feature-card.span-3 { grid-column: span 4; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: var(--s-7); }
  .step:nth-child(2)::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; }
  .objections { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-6); }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-1);
    padding: var(--s-4) var(--shell-pad) var(--s-6);
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    transform: translateY(-125%);
    opacity: 0;
    visibility: hidden;
    transition: transform .34s var(--ease-out), opacity .25s var(--ease), visibility .25s var(--ease);
  }
  .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { padding: 12px 14px; font-size: 1rem; font-weight: 600; }
  .nav .btn { margin: var(--s-2) 0 0; }
  .burger { display: flex; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 74px; }
}

@media (max-width: 640px) {
  .reassure { margin-top: 0; padding-top: var(--s-7); }
  .reassure-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .feature-card, .feature-card.span-3, .feature-card.feature-lead { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-stats { gap: var(--s-5) var(--s-6); }
  .hero-cta .btn { width: 100%; }
  .cta-band-actions .btn { width: 100%; }
  .modal-header, .modal-content { padding-inline: var(--s-5); }
  .float-card { font-size: .74rem; padding: 9px 12px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .topbar, .sticky-bar, .modal-overlay, .hero-mesh, .hero-grid { display: none !important; }
}

.hero-copy { position: relative; z-index: 1; }

/* =========================================================
   Visuels photo
   ========================================================= */
.media-figure {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  background: var(--n-100);
}
.media-figure img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.media-figure figcaption {
  padding: 12px 18px;
  font-size: .8rem;
  color: var(--muted);
  background: var(--n-0);
  border-top: 1px solid var(--line);
}
.pricing-media {
  margin: calc(var(--s-6) * -1) calc(var(--s-6) * -1) var(--s-5);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--n-100);
  border-bottom: 1px solid var(--line);
}
.pricing-media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s var(--ease-out);
}
.pricing-card:hover .pricing-media img { transform: scale(1.04); }

/* Two-column text + image */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.duo h2 { margin-bottom: var(--s-4); }
.duo p { color: var(--muted); margin-bottom: var(--s-4); }
.duo p:last-child { margin-bottom: 0; }

/* Comparison table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background: var(--n-0);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  font-size: .925rem;
}
.cmp caption {
  caption-side: bottom;
  padding-top: var(--s-4);
  font-size: .8rem;
  color: var(--muted);
  text-align: left;
}
.cmp th, .cmp td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.cmp thead th {
  background: var(--n-50);
  font-family: var(--font-head);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--n-700);
}
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp tbody th { font-weight: 650; color: var(--ink); }
.cmp td strong { color: var(--i-700); font-weight: 700; }

/* Definition / answer blocks (GEO-friendly) */
.answer-card {
  background: var(--n-0);
  border: 1px solid var(--line);
  border-left: 3px solid var(--i-500);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-6);
  box-shadow: var(--sh-sm);
  margin-bottom: var(--s-4);
}
.answer-card h3 {
  font-size: 1.02rem;
  margin-bottom: var(--s-2);
}
.answer-card p { color: var(--muted); margin: 0; font-size: .93rem; }
.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-4);
}

/* Programme modules, static + crawlable */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-5);
}
.prog-col {
  background: var(--n-0);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--sh-sm);
}
.prog-col h3 {
  font-size: 1.05rem;
  margin-bottom: var(--s-2);
}
.prog-meta {
  font-size: .8rem;
  color: var(--i-600);
  font-weight: 650;
  margin-bottom: var(--s-4);
}
.prog-col ol {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 9px;
}
.prog-col li { font-size: .88rem; color: var(--muted); line-height: 1.5; }

@media (max-width: 900px) {
  .duo { grid-template-columns: 1fr; }
  .duo .media-figure { order: -1; }
  .answer-grid { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: 1fr; }
}

/* Honeypot anti-spam : masqué aux humains, visible des robots */
.pot-de-miel {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Le dégradé .brand-accent est calibré pour le fond clair (nav, footer).
   Sur le hero sombre, on repasse sur une teinte claire lisible. */
.hero h1 .brand-accent {
  background: linear-gradient(120deg, #FFC9A3, var(--c-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Les cartes flottantes passent au-dessus du panneau du parcours */
.float-card { z-index: 2; }
.hv-panel { z-index: 1; }

/* Ancre de retour en haut de page. Placée avant le header sticky (qui ne peut
   pas servir de cible, voir index.html), et sans décalage : on veut revenir
   à 0 et non à 88px sous le haut du document. */
#top {
  display: block;
  height: 0;
  scroll-margin-top: 0;
}

/* Les sections ciblées par une ancre se calent sous le header sticky.
   --header-h est mesuré au chargement (js/main.js) : avec une valeur en dur
   trop faible, le haut de la section passait sous le header (cas de
   #comparatif, qui a moins de padding que les autres). */
:where(#features, #offres, #comparatif, #programme, #essentiel, #faq, #contact) {
  scroll-margin-top: calc(var(--header-h, 73px) + 12px);
}
