/* ==========================================================================
   Bookigo — bookigo.software
   Design tokens
   ========================================================================== */

:root {
  /* Grounds */
  --navy-900: #00103B;
  --navy-950: #0A1128;
  --bg-light: #F6F8FB;
  --card: #FFFFFF;

  /* Accent — the single accent of the whole page */
  --violet: #7C52FA;
  --violet-ink: #5A31D8; /* variante lisible du violet sur fond clair */
  --blue: #345AF8;
  --accent-gradient: linear-gradient(90deg, #7C52FA, #345AF8);

  /* Ink */
  --ink: #0B1220;
  --muted: #5B6478;
  --line: #E6EAF2;

  /* On navy */
  --on-navy: #FFFFFF;
  --navy-line: rgba(255, 255, 255, .12);

  /* Semantic */
  --success: #12B886;
  --success-bg: #E7F8F1;
  --success-ink: #0A6B4E;

  /* Type */
  --display: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Space & shape */
  --container: 1160px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 2px 4px rgba(11, 18, 32, .04), 0 12px 32px rgba(11, 18, 32, .08);
  --shadow-lg: 0 24px 70px rgba(0, 16, 59, .22);
  --nav-h: 68px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  background: var(--card);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button, input { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--navy :focus-visible, .hero :focus-visible, .footer :focus-visible {
  outline-color: #9AB0FF;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 200;
  background: var(--card);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: top .2s ease;
}
.skip-link:focus { top: 14px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  position: relative;
  padding-block: clamp(72px, 8.5vw, 124px);
}

.section--light { background: var(--bg-light); }
.section--white { background: var(--card); }

.section--navy {
  background: var(--navy-900);
  color: var(--on-navy);
}
.section--navy h2, .section--navy h3 { color: var(--on-navy); }

.section-head { max-width: 46rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.section--navy .eyebrow { color: #9EACFF; }

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent-gradient);
  flex-shrink: 0;
}

h2 { font-size: clamp(1.85rem, 3.3vw, 2.7rem); }

.lead {
  font-size: clamp(1.03rem, 1.25vw, 1.15rem);
  line-height: 1.7;
  color: var(--muted);
  margin-top: 20px;
  max-width: 40rem;
}
.section--navy .lead { color: #B7C1DC; }

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

/* ==========================================================================
   Speed lines — the identity device, lifted from the logo
   ========================================================================== */

.speedlines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}
.speedlines i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-gradient);
}
.speedlines i:nth-child(1) { width: 44px; margin-left: 10px; }
.speedlines i:nth-child(2) { width: 24px; margin-left: 26px; }
.speedlines i:nth-child(3) { width: 36px; margin-left: 0; }
.speedlines i:nth-child(4) { width: 28px; margin-left: 14px; }

/* Hero headline underline — même logique que les speed lines du logo :
   traits décroissants et de plus en plus fins, ancrés sous le mot
   (le bloc part de top:100 %, il ne remonte jamais sur les lettres). */
.underline-wrap {
  position: relative;
  display: inline-block;
}
.underline-lines {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  pointer-events: none;
}
.underline-lines i {
  border-radius: 999px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left center;
  animation: draw .8s cubic-bezier(.22, 1, .36, 1) forwards;
}
.underline-lines i:nth-child(1) { width: 100%; height: clamp(4px, .42vw, 6px); animation-delay: .30s; }
.underline-lines i:nth-child(2) { width: 62%; height: clamp(3px, .32vw, 4px); opacity: .8; animation-delay: .46s; }
.underline-lines i:nth-child(3) { width: 34%; height: clamp(2px, .24vw, 3px); opacity: .55; animation-delay: .62s; }

@keyframes draw { to { transform: scaleX(1); } }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--display);
  font-weight: 700;
  font-size: .97rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.btn--primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(90, 70, 250, .35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(90, 70, 250, .45);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .24);
  color: #fff;
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .45);
  transform: translateY(-2px);
}

.btn--outline {
  background: var(--card);
  border-color: var(--line);
  color: var(--ink);
}
.btn--outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn--sm { padding: 10px 20px; font-size: .9rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease;
}

.nav__inner { display: flex; align-items: center; gap: 24px; width: 100%; }

.nav__logo { display: block; flex-shrink: 0; line-height: 0; }
.nav__logo img { height: 26px; width: auto; }
.nav__logo .logo--dark { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav__links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
}
.nav__links a:hover { color: #fff; background: rgba(255, 255, 255, .09); }

.nav__cta { flex-shrink: 0; }

.nav.is-stuck {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 28px rgba(11, 18, 32, .06);
}
.nav.is-stuck .logo--light { display: none; }
.nav.is-stuck .logo--dark { display: block; }
.nav.is-stuck .nav__links a { color: var(--muted); }
.nav.is-stuck .nav__links a:hover { color: var(--ink); background: var(--bg-light); }

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  position: relative;
  transition: background-color .2s ease;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: inherit;
  transition: transform .25s ease;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav.is-stuck .nav__toggle { border-color: var(--line); background: var(--bg-light); }
.nav.is-stuck .nav__toggle span { background: var(--ink); }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: translateY(6px) rotate(45deg); background: #fff; }
.nav.is-open .nav__toggle span::after { transform: translateY(-6px) rotate(-45deg); background: #fff; }
.nav.is-stuck.is-open .nav__toggle span::before,
.nav.is-stuck.is-open .nav__toggle span::after { background: var(--ink); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 84% -10%, rgba(124, 82, 250, .3), transparent 62%),
    radial-gradient(760px 480px at 6% 14%, rgba(52, 90, 248, .2), transparent 60%),
    linear-gradient(168deg, var(--navy-950) 0%, var(--navy-900) 55%, #001A55 100%);
  color: var(--on-navy);
  padding-top: calc(var(--nav-h) + clamp(52px, 6.5vw, 88px));
  padding-bottom: clamp(68px, 7.5vw, 108px);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 68px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: -0.038em;
}

.hero__sub {
  margin-top: 32px; /* laisse l'air au soulignement du titre */
  font-size: clamp(1.02rem, 1.2vw, 1.12rem);
  line-height: 1.68;
  color: #C6CEE6;
  max-width: 34rem;
}

.hero__actions { margin-top: 34px; }

.hero__micro {
  margin-top: 18px;
  font-size: .87rem;
  color: #97A3C6;
}

.reassurance {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(44px, 5vw, 66px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--navy-line);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 14px;
  border: 1px solid var(--navy-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  font-size: .875rem;
  font-weight: 500;
  color: #D8DEF0;
}
.pill::before {
  content: "";
  width: 14px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-gradient);
  flex-shrink: 0;
}

/* Ambient speed-line field behind the mockup */
.hero__field {
  position: absolute;
  right: -8%;
  top: 6%;
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: .09;
  pointer-events: none;
  z-index: 0;
}
.hero__field i {
  height: 14px;
  border-radius: 999px;
  background: var(--accent-gradient);
}
.hero__field i:nth-child(1) { width: 72%; margin-left: 12%; }
.hero__field i:nth-child(2) { width: 40%; margin-left: 34%; }
.hero__field i:nth-child(3) { width: 88%; margin-left: 0; }
.hero__field i:nth-child(4) { width: 30%; margin-left: 20%; }
.hero__field i:nth-child(5) { width: 60%; margin-left: 40%; }

/* ==========================================================================
   Insight — the two sentences every operator has already said
   ========================================================================== */

.insight { text-align: center; }
.insight__quotes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 34px;
}
.insight__quote {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
  color: var(--ink);
  opacity: .58;
  max-width: 30ch;
}
.insight__quote:nth-child(2) { opacity: .78; }
.insight__answer {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink);
  max-width: 44rem;
  margin-inline: auto;
  font-weight: 500;
}
.insight__answer strong { font-weight: 700; }

/* ==========================================================================
   Pillars
   ========================================================================== */

.pillar__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.pillar__grid--reverse .pillar__media { order: -1; }

.pillar__body { margin-top: 22px; color: var(--muted); line-height: 1.75; }
.pillar__body + .pillar__body { margin-top: 16px; }
.pillar__body strong { color: var(--ink); font-weight: 600; }

/* Checkmark support list */
.checks {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 28px;
}
.checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
  line-height: 1.55;
  color: var(--ink);
}
.checks svg {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--success);
}
.section--navy .checks li { color: #E2E7F5; }

/* Proof callout — the “same data” argument */
.proof {
  position: relative;
  margin-top: 30px;
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.proof::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent-gradient);
}
.proof .speedlines {
  position: absolute;
  top: 20px;
  right: 22px;
  opacity: .28;
}
.proof h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.35;
  padding-right: 70px;
}
.proof p {
  margin-top: 12px;
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.7;
}

/* Live sync demo: one stock, two counters */
.sync {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sync__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-light);
}
.sync__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -0.01em;
}
.sync__meta {
  font-size: .78rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.sync__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.sync__panel { padding: 24px 20px 26px; }
.sync__panel + .sync__panel { border-left: 1px solid var(--line); }
.sync__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.sync__label svg { width: 15px; height: 15px; color: var(--blue); }
.sync__count {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-top: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  transition: color .25s ease;
}
.sync__count.is-changing { color: var(--violet); }
.sync__unit { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.sync__bar {
  margin-top: 16px;
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.sync__bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--accent-gradient);
  transition: width .45s cubic-bezier(.22, 1, .36, 1);
}
.sync__foot {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background: var(--bg-light);
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
}
.sync__foot .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

/* ==========================================================================
   Panorama grid
   ========================================================================== */

.panorama {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 16px;
  margin-top: 46px;
}
.tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #D5DCEA;
}
.tile__ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124, 82, 250, .12), rgba(52, 90, 248, .12));
  color: var(--violet);
  margin-bottom: 14px;
}
.tile__ico svg { width: 19px; height: 19px; }
.tile h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; }
.tile p { margin-top: 7px; font-size: .88rem; line-height: 1.55; color: var(--muted); }

.panorama-note {
  margin-top: 26px;
  font-size: .9rem;
  color: var(--muted);
}
.panorama-note a {
  color: var(--blue);
  font-weight: 600;
  text-underline-offset: 3px;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: start;
}

.model-box {
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .04);
  padding: 26px 28px;
}
.model-box p { color: #C2CAE2; font-size: .96rem; line-height: 1.7; }
.model-box p + p { margin-top: 14px; }
.model-box strong { color: #fff; font-weight: 700; }

.pricing-banner {
  margin-top: clamp(40px, 4.5vw, 60px);
  padding: 18px 24px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(124, 82, 250, .18), rgba(52, 90, 248, .12));
  border: 1px solid rgba(154, 172, 255, .28);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(.98rem, 1.4vw, 1.1rem);
  letter-spacing: -0.015em;
  text-align: center;
  color: #fff;
}

/* Trial card */
.trial {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 26px 30px;
  border-radius: var(--radius-lg);
  background: rgba(18, 184, 134, .09);
  border: 1px solid rgba(53, 214, 168, .34);
}
.trial__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4FE0B4;
}
.trial h3 {
  margin-top: 12px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.3;
}
.trial p {
  margin-top: 10px;
  font-size: .93rem;
  line-height: 1.65;
  color: #B7C1DC;
  max-width: 46rem;
}

/* Plan grid */
.plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.plan {
  position: relative;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.plan:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, .28); }

.plan--featured {
  background: #fff;
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .35);
}
.plan--featured .plan__name { color: var(--navy-900); }
.plan--featured .plan__price { color: var(--navy-900); }
.plan--featured .plan__per { color: var(--muted); }
.plan--featured .plan__row-val { color: var(--ink); }
.plan--featured .plan__row-lbl { color: var(--muted); }
.plan--featured .plan__rows { border-color: var(--line); }

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: #fff;
  font-family: var(--body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(90, 70, 250, .45);
}

.plan__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: #fff;
}
.plan__price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.3rem;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-top: 16px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.plan__per {
  font-size: .85rem;
  color: #9AA6C6;
  margin-top: 6px;
}
.plan__rows {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan__row-val {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.plan__row-lbl { font-size: .82rem; color: #9AA6C6; margin-top: 1px; }

.pricing-mention {
  margin-top: 20px;
  font-size: .85rem;
  color: #8F9CBE;
}

/* Annual commitment */
.annual {
  margin-top: clamp(40px, 4.5vw, 58px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 30px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--navy-line);
  background:
    radial-gradient(420px 220px at 8% 0%, rgba(124, 82, 250, .2), transparent 65%),
    rgba(255, 255, 255, .035);
}
.annual__figure {
  text-align: center;
  padding: 18px 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--navy-line);
}
.annual__big {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.045em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.annual__small {
  font-size: .78rem;
  color: #9AA6C6;
  margin-top: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}
.annual h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
.annual p { margin-top: 12px; color: #B7C1DC; font-size: .95rem; line-height: 1.7; }

/* ==========================================================================
   Simulator
   ========================================================================== */

.sim {
  margin-top: clamp(44px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  overflow: hidden;
}
.sim__head {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--line);
}
.sim__head h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--ink); }
.sim__head p { margin-top: 8px; color: var(--muted); font-size: .93rem; }

.sim__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
}
.sim__input { padding: 30px 32px 32px; }
.sim__out {
  padding: 30px 32px 32px;
  background: var(--bg-light);
  border-left: 1px solid var(--line);
}

.sim__label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.sim__value-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}
.sim__number {
  width: 8ch;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  text-align: right;
  -moz-appearance: textfield;
}
.sim__number::-webkit-outer-spin-button,
.sim__number::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sim__number:focus { border-color: var(--blue); }
.sim__unit-lbl { color: var(--muted); font-size: .93rem; }

.sim__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  margin: 6px 0 0;
}
.sim__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--violet);
  box-shadow: 0 3px 10px rgba(90, 70, 250, .4);
  cursor: pointer;
}
.sim__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--violet);
  box-shadow: 0 3px 10px rgba(90, 70, 250, .4);
  cursor: pointer;
}
.sim__ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: .74rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.sim__toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-light);
  cursor: pointer;
}
.sim__toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.sim__switch {
  width: 44px;
  height: 25px;
  border-radius: 999px;
  background: #C9D1E0;
  position: relative;
  flex-shrink: 0;
  transition: background-color .22s ease;
}
.sim__switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
  transition: transform .22s ease;
}
.sim__toggle input:checked + .sim__switch { background: var(--violet); }
.sim__toggle input:checked + .sim__switch::after { transform: translateX(19px); }
.sim__toggle input:focus-visible + .sim__switch { outline: 3px solid var(--blue); outline-offset: 3px; }
.sim__toggle-text { font-size: .93rem; font-weight: 500; }
.sim__toggle-text small { display: block; color: var(--muted); font-weight: 400; font-size: .82rem; }

.sim__reco-lbl {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
}
.sim__reco {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 10px;
}
.sim__reco-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sim__reco-quota { font-size: .88rem; color: var(--muted); }

.sim__cost {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.sim__cost-val {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.sim__cost-lbl { font-size: .88rem; color: var(--muted); margin-top: 8px; }

.sim__breakdown {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: .88rem;
}
.sim__breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.sim__breakdown b { color: var(--ink); font-weight: 600; }

.sim__unit-cost {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--success-bg);
  border: 1px solid rgba(18, 184, 134, .25);
}
.sim__unit-val {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--success-ink);
  font-variant-numeric: tabular-nums;
}
.sim__unit-txt { font-size: .85rem; color: var(--success-ink); margin-top: 5px; line-height: 1.55; opacity: .9; }

.sim__method {
  margin-top: 18px;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--muted);
}

.sim__foot {
  padding: 18px 32px 22px;
  border-top: 1px solid var(--line);
  font-size: .87rem;
  color: var(--muted);
  text-align: center;
}
.sim__foot strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   Operator note
   ========================================================================== */

.operator {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: 62rem;
}
.operator__mark {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: var(--navy-900);
  display: grid;
  place-items: center;
  padding: 16px;
  box-shadow: var(--shadow);
}
.operator__mark img { width: 100%; height: auto; }
.operator p { margin-top: 16px; color: var(--muted); line-height: 1.75; max-width: 44rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  margin-top: 42px;
  max-width: 50rem;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  letter-spacing: -0.02em;
  line-height: 1.45;
  transition: color .18s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue); }
.faq__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  margin-top: 2px;
  transition: background-color .2s ease, border-color .2s ease, transform .25s ease;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--muted);
  border-radius: 2px;
  transition: opacity .2s ease, background-color .2s ease;
}
.faq__icon::before { width: 11px; height: 2px; }
.faq__icon::after { width: 2px; height: 11px; }
.faq details[open] .faq__icon {
  background: var(--accent-gradient);
  border-color: transparent;
  transform: rotate(90deg);
}
.faq details[open] .faq__icon::before { background: #fff; }
.faq details[open] .faq__icon::after { opacity: 0; }
.faq__answer {
  padding: 0 60px 24px 4px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.72;
  max-width: 42rem;
}
.faq__answer a { color: var(--blue); font-weight: 600; }

/* ==========================================================================
   Final CTA + footer
   ========================================================================== */

.final {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 420px at 50% -30%, rgba(124, 82, 250, .32), transparent 62%),
    linear-gradient(160deg, var(--navy-950), var(--navy-900) 70%, #001A55);
  color: #fff;
  text-align: center;
}
.final h2 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.04em; }
.final p { margin-top: 20px; color: #C0C9E2; font-size: clamp(1rem, 1.3vw, 1.15rem); max-width: 40rem; margin-inline: auto; }
.final .btn-row { justify-content: center; margin-top: 34px; }
.final__contact { margin-top: 20px; font-size: .93rem; color: #9AA6C6; }
.final__contact a { color: #fff; font-weight: 600; text-underline-offset: 4px; }
.final .speedlines {
  margin: 0 auto 26px;
  align-items: center;
}
.final .speedlines i { margin-left: 0 !important; }

.footer {
  background: var(--navy-950);
  color: #98A3C2;
  padding-block: 56px 32px;
  font-size: .9rem;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.footer__brand img { height: 28px; width: auto; }
.footer__baseline {
  margin-top: 14px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.footer__nav a { text-decoration: none; transition: color .18s ease; }
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  padding-top: 24px;
  font-size: .84rem;
  color: #828FB6;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

/* Le contenu n'est masqué que si JS peut le révéler. */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .07s; }
.reveal--d2 { transition-delay: .14s; }
.reveal--d3 { transition-delay: .21s; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan__badge { top: -11px; }
}

@media (max-width: 940px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__toggle { display: grid; }

  .nav.is-open {
    background: var(--navy-900);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
  }
  .nav.is-open .logo--light { display: block; }
  .nav.is-open .logo--dark { display: none; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--navy-900);
    padding: 12px 24px 26px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
  }
  .nav.is-open .nav__links a {
    color: rgba(255, 255, 255, .85);
    padding: 13px 14px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  .nav.is-open .nav__cta {
    display: inline-flex;
    margin-top: 10px;
    justify-content: center;
  }

  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__field { display: none; }
  .pillar__grid { grid-template-columns: minmax(0, 1fr); }
  .pillar__grid--reverse .pillar__media { order: 0; }
  .pricing__intro { grid-template-columns: minmax(0, 1fr); }
  .sim__grid { grid-template-columns: minmax(0, 1fr); }
  .sim__out { border-left: 0; border-top: 1px solid var(--line); }
  .annual { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .annual__figure { justify-self: start; }
  .trial { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .operator { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  :root { --nav-h: 62px; }
  .container { padding-inline: 18px; }

  .insight__quote { max-width: 100%; }

  .sync__panels { grid-template-columns: 1fr; }
  .sync__panel + .sync__panel { border-left: 0; border-top: 1px solid var(--line); }

  .plans {
    grid-template-columns: repeat(4, 78vw);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 14px 18px 22px;
    margin-inline: -18px;
    -webkit-overflow-scrolling: touch;
  }
  .plans .plan { scroll-snap-align: center; }

  .sim__head, .sim__input, .sim__out, .sim__foot { padding-inline: 22px; }
  .proof { padding: 24px 22px; }
  .proof h3 { padding-right: 0; }
  .proof .speedlines { display: none; }
  .faq__answer { padding-right: 12px; }
  .footer__top { flex-direction: column; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .underline-lines i { transform: scaleX(1); }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .nav, .hero__field { display: none; }
  body { background: #fff; }
}

/* ==========================================================================
   Sous-bandes de pilier (expériences, leviers)
   ========================================================================== */

.subband {
  margin-top: clamp(56px, 6vw, 88px);
  padding-top: clamp(38px, 4vw, 56px);
  border-top: 1px solid var(--line);
}
.subband__head { max-width: 46rem; }
.subband__head h3 {
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  line-height: 1.2;
}
.subband__head p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.72;
}

/* Surface neutre : se pose sur le fond opposé à celui de la section */
.surface {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.section--white .surface { background: var(--bg-light); }
.section--light .surface { background: var(--card); box-shadow: var(--shadow); }

/* Séquence en trois temps : définir → communiquer → briefer */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.step {
  position: relative;
  padding: 30px 26px 26px;
  overflow: hidden;
}
/* La barre de progression grandit d'une étape à l'autre */
.step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--accent-gradient);
}
.step:nth-child(1)::before { width: 34px; }
.step:nth-child(2)::before { width: 62px; }
.step:nth-child(3)::before { width: 96px; }

.step__num {
  display: block;
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
}
.step h4 {
  margin-top: 9px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}
.step p {
  margin-top: 11px;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.68;
}

/* Leviers de panier moyen */
.levers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.lever { padding: 26px 26px 24px; }
.lever__ico {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124, 82, 250, .13), rgba(52, 90, 248, .13));
  color: var(--violet);
  margin-bottom: 15px;
}
.lever__ico svg { width: 20px; height: 20px; }
.lever h4 { font-size: 1.1rem; letter-spacing: -0.025em; }
.lever p {
  margin-top: 10px;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.68;
}

/* Automatisations : la liste à cocher en grille */
.autos { margin-top: clamp(40px, 4.5vw, 58px); }
.autos__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.checks--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px 30px;
}

/* ==========================================================================
   Encart « zéro commission » — le message qui doit rester en tête
   ========================================================================== */

.moneybox {
  position: relative;
  margin-top: clamp(48px, 5.5vw, 72px);
  padding: clamp(30px, 3.6vw, 46px);
  border-radius: var(--radius-lg);
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(680px 340px at 88% -35%, rgba(124, 82, 250, .44), transparent 62%),
    linear-gradient(150deg, var(--navy-950), var(--navy-900) 62%, #001A55);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}
.moneybox .speedlines { margin-bottom: 20px; }
.moneybox h3 {
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.24;
  max-width: 26ch;
}
.moneybox p {
  margin-top: 15px;
  color: #B7C1DC;
  font-size: .98rem;
  line-height: 1.72;
  max-width: 44rem;
}

/* ==========================================================================
   Rappel d'action en fin de section
   ========================================================================== */

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
  margin-top: 34px;
}
.section-cta .panorama-note { margin-top: 0; }

/* ==========================================================================
   Adaptations responsives des nouveaux blocs
   ========================================================================== */

@media (max-width: 1080px) {
  .checks--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps,
  .levers { grid-template-columns: minmax(0, 1fr); }
  .steps .step:nth-child(n)::before { width: 34px; }
}

@media (max-width: 940px) {
  .moneybox { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .moneybox .btn { justify-self: start; }
}

@media (max-width: 640px) {
  .checks--grid { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   Maquettes — reprise fidèle de la structure du produit, jamais une capture.
   Palette du site conservée : le dégradé violet→bleu reste l'unique accent.
   ========================================================================== */

.mockup {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.mockup__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 13px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--line);
}
.mockup__dot { width: 8px; height: 8px; border-radius: 50%; background: #D2D9E7; flex-shrink: 0; }
.mockup__url {
  margin-left: 8px;
  flex: 1;
  min-width: 0;
  height: 21px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding-inline: 11px;
  font-size: .66rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
}

/* Barre d'outils du planning */
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.mockup__nav {
  width: 20px; height: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: .6rem;
  flex-shrink: 0;
}
.mockup__date {
  font-size: .66rem;
  font-weight: 600;
  color: var(--ink);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.mockup__action {
  margin-left: auto;
  background: var(--accent-gradient);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: -0.01em;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.mockup__body { padding: 13px 14px 15px; }

/* Planning multi-ressources */
.planner {
  display: grid;
  grid-template-columns: 34px repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.planner__res {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.planner__res-ico {
  width: 21px; height: 21px;
  border-radius: 6px;
  background: var(--accent-gradient);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: .58rem;
  flex-shrink: 0;
}
.planner__res span { min-width: 0; }
.planner__res b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.planner__res i {
  display: block;
  font-style: normal;
  font-size: .58rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.planner__time {
  font-size: .58rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  padding-top: 5px;
}
.planner__cell { min-height: 34px; min-width: 0; }

/* Séance */
.sess {
  border: 1px solid rgba(124, 82, 250, .26);
  border-left: 3px solid var(--violet);
  border-radius: 8px;
  background: rgba(124, 82, 250, .06);
  padding: 6px 7px 7px;
}
.sess--b {
  border-color: rgba(52, 90, 248, .26);
  border-left-color: var(--blue);
  background: rgba(52, 90, 248, .06);
}
.sess__head { display: flex; align-items: baseline; gap: 6px; }
.sess__t {
  font-family: var(--display);
  font-weight: 800;
  font-size: .66rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.sess__cap {
  margin-left: auto;
  font-size: .55rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.sess__exp {
  display: block;
  margin-top: 3px;
  font-size: .57rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.3;
}
.sess__groups { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.sess__groups span {
  font-size: .55rem;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--success-bg);
  border: 1px solid rgba(18, 184, 134, .28);
  color: var(--success-ink);
  white-space: nowrap;
}
.sess__groups b { font-weight: 700; }

.mockup__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: .68rem;
  color: var(--muted);
}
.mockup__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--success-bg);
  color: var(--success-ink);
  font-weight: 600;
  white-space: nowrap;
}
.mockup__chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

/* ==========================================================================
   Créneaux vus par le client — libre vs expérience déjà fixée
   ========================================================================== */

.slots-block { margin-top: 34px; }
.slots-caption {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.slot {
  display: block;
  padding: 12px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(18, 184, 134, .3);
  background: var(--success-bg);
}
.slot b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.slot i {
  display: block;
  font-style: normal;
  font-size: .73rem;
  color: var(--muted);
  margin-top: 3px;
}
.slot em {
  display: flex;
  align-items: center;
  gap: 6px;
  font-style: normal;
  font-size: .73rem;
  font-weight: 600;
  color: var(--success-ink);
  margin-top: 6px;
}
.slot em svg { width: 12px; height: 12px; flex-shrink: 0; }

.slot--set {
  border-color: rgba(124, 82, 250, .3);
  background: rgba(124, 82, 250, .07);
}
.slot--set em { color: var(--violet-ink); }

/* ==========================================================================
   Pack — reprise de l'étape « Formule » du tunnel de réservation
   ========================================================================== */

.pack {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pack__media {
  height: 122px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(420px 200px at 70% 0%, rgba(124, 82, 250, .3), transparent 65%),
    linear-gradient(140deg, var(--navy-950), var(--navy-900));
  color: rgba(255, 255, 255, .58);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
}
.pack__body { padding: 20px 22px 18px; border-bottom: 1px solid var(--line); }
.pack__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}
.pack__incl { margin-top: 7px; font-size: .87rem; color: var(--muted); line-height: 1.5; }
.pack__price { margin-top: 14px; display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.pack__price b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.pack__price s { color: var(--muted); font-variant-numeric: tabular-nums; }
.pack__price span { color: var(--muted); font-size: .87rem; }
.pack__save {
  margin-top: 8px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--success-ink);
}

.pack__recap { padding: 18px 22px 20px; background: var(--bg-light); }
.pack__recap-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: .93rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pack__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: .9rem;
  font-variant-numeric: tabular-nums;
}
.pack__row b { font-weight: 600; }
.pack__sub { margin-top: 7px; display: flex; flex-direction: column; gap: 4px; }
.pack__sub li { font-size: .81rem; color: var(--muted); padding-left: 14px; position: relative; }
.pack__sub li::before {
  content: "";
  position: absolute;
  left: 2px; top: .62em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #C3CBDC;
}
.pack__total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.pack__total span { font-weight: 600; }
.pack__total b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}
.pack__note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  font-size: .84rem;
  color: var(--muted);
}
.pack__note svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

/* ==========================================================================
   Type de réservation — Standard vs Flex
   ========================================================================== */

.optbox {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 22px;
}
.optbox__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
}
.optbox__title svg { width: 17px; height: 17px; color: var(--muted); }

.opt {
  display: flex;
  gap: 13px;
  padding: 16px 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.opt + .opt { margin-top: 11px; }
.opt--on {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124, 82, 250, .12);
}
.opt__radio {
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 2px solid #C3CBDC;
  flex-shrink: 0;
  margin-top: 2px;
}
.opt--on .opt__radio {
  border-color: var(--violet);
  background:
    radial-gradient(circle, var(--violet) 0 42%, transparent 46%);
}
.opt__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}
.opt__head b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.opt__tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--accent-gradient);
  color: #fff;
}
.opt__price {
  margin-left: auto;
  font-weight: 600;
  font-size: .9rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.opt__txt { display: block; margin-top: 7px; font-size: .85rem; line-height: 1.55; color: var(--muted); }

/* ==========================================================================
   Carte de membre — reprise de la carte réellement délivrée
   ========================================================================== */

.memcard-wrap { position: relative; display: flex; justify-content: center; }
.memcard-wrap::before {
  content: "";
  position: absolute;
  inset: 14% 3% 0 3%; /* jamais de débordement horizontal : cela crée un scroll de page */
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 82, 250, .16), transparent 68%);
  pointer-events: none;
}
.memcard {
  position: relative;
  width: 100%;
  max-width: 330px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-lg);
  padding: 26px 26px 24px;
  text-align: center;
}
.memcard__center {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}
.memcard__kind { font-size: .8rem; color: var(--muted); margin-top: 2px; }
.memcard__photo {
  width: 92px;
  height: 92px;
  margin: 18px auto 0;
  border-radius: 14px;
  background: var(--bg-light);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #AEB8CC;
}
.memcard__photo svg { width: 40px; height: 40px; }
.memcard__name {
  margin-top: 15px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.memcard__plan {
  display: inline-block;
  margin-top: 11px;
  padding: 8px 22px;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .85rem;
}
.memcard__rows { margin-top: 20px; text-align: left; }
.memcard__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  font-size: .84rem;
  border-top: 1px solid var(--line);
}
.memcard__row:first-child { border-top: 0; }
.memcard__row span { color: var(--muted); }
.memcard__row b { font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }
.memcard__qr {
  display: block;
  width: 88px;
  height: 88px;
  margin: 22px auto 0;
  color: var(--navy-900);
}
.memcard__qr svg { width: 100%; height: 100%; }
.memcard__code {
  margin-top: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .1em;
}

/* ==========================================================================
   Responsive des maquettes
   ========================================================================== */

@media (max-width: 1080px) {
  .slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  /* Sur mobile, deux ressources suffisent à raconter le multi-planning. */
  .planner { grid-template-columns: 26px repeat(2, minmax(0, 1fr)); gap: 6px; }
  .planner > *:nth-child(4n) { display: none; }
  .planner__res-ico { display: none; }
  .sess__groups span { font-size: .5rem; }
  .pack__media { height: 96px; }
  .optbox { padding: 18px; }
  .opt { padding: 14px; }
  .slots { grid-template-columns: minmax(0, 1fr); }
}
