/* ==========================================================================
   ASBC Pro — One pager
   Feuille de styles unique, organisée en couches :
   01. Tokens · 02. Reset · 03. Utilitaires · 04. Base typographique
   05. Composants globaux (boutons, icônes) · 06. Sections
   07. Modale de réservation · 08. Responsive
   ========================================================================== */

/* ==========================================================================
   01. TOKENS
   ========================================================================== */
:root {
  /* Couleurs de marque */
  --violet-700: #4E3DBB;
  --violet-600: #5B4AD4;
  --violet-500: #6C5CE7;   /* couleur primaire */
  --violet-400: #8878F0;
  --violet-200: #C9C1F7;
  --violet-100: #E7E2FB;
  --violet-050: #F1EEFC;
  --violet-025: #F8F6FE;

  --navy-900: #2B2A5E;     /* fond footer */
  --navy-800: #262556;
  --navy-700: #262B5F;     /* titres */

  --amber-500: #F2B33D;
  --amber-400: #F7C948;
  --amber-100: #FDF1D8;
  --amber-050: #FEF7E8;

  --ink-900: #262B5F;
  --ink-600: #5E6089;
  --ink-500: #71739A;
  --ink-400: #8E90B2;

  --white: #FFFFFF;
  --surface: #FFFFFF;
  --surface-alt: #F5F2FD;
  --surface-hero: #FBFAFF;

  --line: #E9E5F7;
  --line-soft: #F0EDF9;

  /* Typographie */
  --font-sans: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-script: "Dancing Script", "Segoe Script", cursive;

  /* Rythme */
  --shell: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 7vw, 6rem);
  /* Respiration de part et d'autre d'un liseret de separation : une seule
     valeur, appliquee a l'identique au-dessus et en dessous de la ligne. */
  --rule-gap: var(--section-y);
  /* Meme principe entre deux blocs d'une meme section : plus serre qu'entre
     deux sections, mais toujours identique au-dessus et en dessous. */
  --rule-gap-inner: clamp(2.5rem, 5vw, 3.5rem);
  /* Respiration autour du bandeau citation : identique au-dessus et en dessous.
     Le hero et le bandeau partagent le meme fond, l'espace visuel superieur
     provient donc du padding-bas du hero (le bandeau n'a pas de padding-haut). */
  --gap-quote: clamp(2.25rem, 4vw, 3.25rem);

  /* Rayons */
  /* Tracé du médaillon hero, relevé au pixel sur la maquette (boîte 380 × 412) :
     coin haut-gauche 15 / 93 px · coin bas-gauche 276 / 319 px · côté droit ~12 px.
     Exprimé en % pour rester fidèle à toutes les tailles d'écran. */
  --photo-radius: 4% 12px 12px 73% / 23% 12px 12px 77%;
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Ombres */
  --sh-xs: 0 1px 2px rgba(38, 43, 95, .05);
  --sh-sm: 0 2px 10px rgba(64, 51, 148, .06);
  --sh-md: 0 10px 30px rgba(64, 51, 148, .08);
  --sh-lg: 0 22px 60px rgba(64, 51, 148, .14);
  --sh-violet: 0 12px 26px rgba(108, 92, 231, .28);

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t-fast: .18s var(--ease);
  --t-med: .3s var(--ease);
}

/* ==========================================================================
   02. RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: .9375rem;      /* 15px */
  font-weight: 400;
  line-height: 1.72;
  color: var(--ink-600);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, figure, blockquote, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
strong { font-weight: 600; }

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

/* ==========================================================================
   03. UTILITAIRES
   ========================================================================== */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

/* Liseret de separation entre deux sections de meme fond.
   La ligne est calee sur la largeur du contenu (comme .shell) et la
   respiration est strictement identique au-dessus et en dessous : elle est
   fournie par le padding des deux sections voisines, ramene a --rule-gap. */
.section-rule {
  width: calc(min(100%, var(--shell)) - 2 * var(--gutter));
  height: 1px;
  margin: 0 auto;
  border: 0;
  background: var(--line);
}
.section:has(+ .section-rule) { padding-bottom: var(--rule-gap); }
.section-rule + .section { padding-top: var(--rule-gap); }

/* Variante interne : separe deux blocs a l'interieur d'une meme section.
   Placee dans un .shell, elle occupe deja la largeur du contenu. */
.section-rule--inner { width: 100%; margin-block: var(--rule-gap-inner); }
.section-rule--inner + * { margin-top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -120%);
  z-index: 200;
  padding: .7rem 1.4rem;
  font-size: .875rem; font-weight: 600;
  color: var(--white); background: var(--violet-500);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  transition: transform var(--t-fast);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1em; height: 1em;
  flex: none;
  fill: none;
  stroke-width: inherit;
}

.u-violet { color: var(--violet-500); }
.u-nowrap { white-space: nowrap; }

/* Soulignement « pinceau » jaune */
.u-underline {
  position: relative;
  display: inline-block;
}
.u-underline::after {
  content: "";
  position: absolute;
  left: -.06em; right: -.06em; bottom: -.16em;
  height: .3em;
  background: no-repeat center / 100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8.5C22 4 52 2.4 86 4.6c12 .8 22 2 32 3.6' stroke='%23F7C948' stroke-width='4' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}

/* Révélation au défilement */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ==========================================================================
   04. BASE TYPOGRAPHIQUE
   ========================================================================== */
.section-title {
  font-size: clamp(1.3rem, 1.05rem + .9vw, 1.5rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -.01em;
  color: var(--ink-900);
}
.section-title--center { text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .9rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--violet-600);
  background: var(--white);
  border: 1px solid var(--violet-100);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
}
.eyebrow .icon { font-size: .95rem; stroke-width: 1.7; }

/* ==========================================================================
   05. COMPOSANTS GLOBAUX
   ========================================================================== */

/* --- Boutons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.65rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: background-color var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), box-shadow var(--t-fast),
              transform var(--t-fast);
}
.btn .icon { font-size: 1.05rem; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: .65rem 1.05rem; font-size: .875rem; border-radius: var(--r-xs); }

.btn--primary {
  color: var(--white);
  background: var(--violet-500);
  box-shadow: var(--sh-violet);
}
.btn--primary:hover { background: var(--violet-600); }

.btn--ghost {
  color: var(--ink-900);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--sh-sm);
}
.btn--ghost:hover { border-color: var(--violet-200); color: var(--violet-600); }

.btn--outline {
  color: var(--violet-600);
  background: var(--white);
  border-color: var(--violet-100);
  box-shadow: var(--sh-xs);
}
.btn--outline:hover { border-color: var(--violet-400); background: var(--violet-025); }

.btn--light {
  color: var(--violet-600);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(30, 20, 90, .22);
}
.btn--light:hover { color: var(--violet-700); }

/* ==========================================================================
   06. SECTIONS
   ========================================================================== */

/* --- Marque -------------------------------------------------------------- */
.brand { display: block; line-height: 1.15; }
.brand__name {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: .01em;
  color: var(--violet-500);
}
.brand__tagline {
  display: block;
  margin-top: .15rem;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--ink-400);
}

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.site-header.is-stuck {
  border-bottom-color: var(--line-soft);
  box-shadow: var(--sh-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.9vw, 1.75rem);
}
.site-nav__link {
  position: relative;
  display: inline-block;
  padding-block: .35rem;
  font-size: .875rem;
  font-weight: 400;
  color: var(--ink-600);
  transition: color var(--t-fast);
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--violet-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}
.site-nav__link:hover,
.site-nav__link.is-active { color: var(--violet-600); }
.site-nav__link:hover::after,
.site-nav__link.is-active::after { transform: scaleX(1); }

/* Burger */
.nav-toggle { display: none; padding: .5rem; }
.nav-toggle__bars { display: block; width: 22px; }
.nav-toggle__bars span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-900);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle__bars span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: var(--gap-quote);
  background: var(--surface-hero);
  overflow: hidden;
}
.hero__leaf {
  position: absolute;
  top: 29%;
  left: -12%;
  z-index: 1;
  width: clamp(78px, 7.5vw, 108px);
  color: var(--violet-100);
  opacity: .82;
  pointer-events: none;
}
.hero__leaf svg { width: 100%; height: auto; }

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.hero__title {
  margin-top: 1.35rem;
  font-size: clamp(2.1rem, 1.2rem + 2.9vw, 3.1rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.02em;
  color: var(--ink-900);
}
.hero__lead {
  max-width: 34ch;
  margin-top: 1.35rem;
  font-size: .875rem;
  line-height: 1.85;
  color: var(--ink-500);
}

.hero__usps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-top: 2rem;
}
.usp { display: flex; align-items: flex-start; gap: .65rem; }
.usp__icon {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  font-size: 1.15rem;
  color: var(--violet-500);
  background: var(--white);
  border: 1px solid var(--violet-100);
  border-radius: 10px;
  box-shadow: var(--sh-xs);
}
.usp__text {
  font-size: .875rem;
  line-height: 1.5;
  color: var(--ink-500);
}
.usp__text strong {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-900);
}
.usp__stars {
  display: flex;
  gap: 1px;
  margin-top: .2rem;
  font-size: .72rem;
  color: var(--amber-400);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1rem;
  margin-top: 1.5rem;
  font-size: .875rem;
  color: var(--ink-400);
}
.hero__meta span { display: inline-flex; align-items: center; }
.hero__meta span + span::before {
  content: "";
  width: 4px; height: 4px;
  margin-right: 1rem;
  background: var(--violet-200);
  border-radius: 50%;
}

/* Média + carte flottante */
.hero__media { position: relative; }
.hero__figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--photo-radius);
  background: linear-gradient(160deg, var(--violet-100), var(--violet-050));
  aspect-ratio: 380 / 412;   /* ratio relevé sur la maquette */
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.hero__card {
  position: absolute;
  right: -2.4%;
  bottom: 4%;
  z-index: 2;
  width: 84%;
  padding: 1.25rem 1.4rem 1.35rem;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}
.hero__card-icon {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  margin-bottom: .7rem;
  font-size: 1.1rem;
  color: var(--white);
  background: var(--violet-500);
  border-radius: 10px;
}
.hero__card-title {
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink-900);
}
.hero__card-sub {
  margin-top: .5rem;
  font-size: .8rem;
  line-height: 1.6;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.hero__card-sub em {
  font-style: normal;
  font-weight: 600;
  color: var(--amber-500);
}
.hero__card-sub .u-underline::after { bottom: -.3em; height: .38em; }

/* --- Bandeau citation ---------------------------------------------------- */
.quote-band {
  padding-top: 0;
  padding-bottom: var(--gap-quote);
  background: var(--surface-hero);
}
.quote-band__inner {
  text-align: center;
}
.quote-band__mark {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, .85rem + .8vw, 1.45rem);
  font-weight: 500;
  line-height: 1;
  color: var(--violet-200);
  vertical-align: .05em;
}
.quote-band__mark--open { margin-right: .35rem; }
.quote-band__mark--close { margin-left: .2rem; }
.quote-band__text {
  font-family: var(--font-script);
  font-size: clamp(1.35rem, .9rem + 1.5vw, 1.85rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--violet-500);
}
.quote-band__author {
  display: inline-block;
  margin-left: .35rem;
  color: var(--violet-400);
}

/* --- Pain points --------------------------------------------------------- */
.pains { background: var(--white); }
.pains__grid {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(1.75rem, 3vw, 2.5rem);
  align-items: start;
}
.pains__title { line-height: 1.4; }

.pains__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 1.5rem);
}
.pain { display: flex; flex-direction: column; gap: 1rem; }
.pain__icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  font-size: 1.35rem;
  color: var(--violet-500);
  background: var(--violet-050);
  border-radius: 12px;
}
.pain p {
  font-size: .875rem;
  line-height: 1.75;
  color: var(--ink-500);
}

/* --- Méthodes / livrables ------------------------------------------------ */
.methods { background: var(--surface-alt); }
.methods__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, .62fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
}
.methods__col > .section-title { margin-bottom: 2rem; }

.methods__list { display: grid; gap: 1.65rem; }
.method { display: flex; gap: 1rem; }
.method__icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  flex: none;
  font-size: 1.2rem;
  color: var(--violet-500);
  background: var(--white);
  border-radius: 11px;
  box-shadow: var(--sh-xs);
}
.method__name {
  margin-bottom: .3rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-900);
}
.method p {
  font-size: .875rem;
  line-height: 1.75;
  color: var(--ink-500);
}

.outcomes { display: grid; gap: 1.15rem; }
.outcomes li {
  display: flex;
  gap: .8rem;
  font-size: .875rem;
  line-height: 1.7;
  color: var(--ink-600);
}
.outcomes__check {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  flex: none;
  margin-top: .22rem;
  font-size: .78rem;
  color: var(--violet-500);
  background: var(--violet-100);
  border-radius: 6px;
}

/* Visuel du livrable */
.deliverable { position: relative; padding-top: 3.5rem; }
.deliverable__sheet {
  position: relative;
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--sh-md);
}
.deliverable__sheet--back {
  position: absolute;
  inset: 3.5rem -6% auto 26%;
  height: 300px;
  transform: rotate(6deg);
  opacity: .85;
}
.deliverable__sheet--front {
  z-index: 1;
  width: 84%;
  padding: 1.5rem 1.4rem 3.5rem;
  min-height: 300px;
  overflow: hidden;
  transform: rotate(-3deg);
}
.deliverable__logo {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  color: var(--violet-400);
  border: 1px solid var(--violet-100);
  border-radius: 8px;
}
.deliverable__title {
  position: relative;
  z-index: 2;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .01em;
  color: var(--ink-900);
}
.deliverable__author {
  position: relative;
  z-index: 2;
  margin-top: .85rem;
  font-family: var(--font-script);
  font-size: 1rem;
  white-space: nowrap;
  color: var(--violet-500);
}
.deliverable__sub {
  position: relative;
  z-index: 2;
  font-size: .8rem;
  color: var(--ink-400);
}
.deliverable__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(.5px);
}
.deliverable__blob--1 {
  right: -22%; bottom: -30%;
  width: 150px; height: 150px;
  background: var(--violet-400);
  opacity: .85;
}
.deliverable__blob--2 {
  right: 6%; bottom: -18%;
  width: 96px; height: 96px;
  background: var(--violet-200);
}
.deliverable__badge {
  position: absolute;
  right: -9%;
  bottom: -3.25rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 150px; height: 150px;
  padding: 1.25rem;
  font-size: .8rem;
  line-height: 1.55;
  text-align: center;
  color: var(--navy-700);
  background: var(--amber-400);
  border-radius: 50%;
}

/* --- Déroulement / timeline ---------------------------------------------- */
.process { background: var(--white); }
.process .section-title { margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(.75rem, 1.6vw, 1.25rem);
}
.timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  border-top: 2px dashed var(--violet-200);
}

.step { position: relative; display: flex; flex-direction: column; align-items: center; }
.step__dot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  aspect-ratio: 1;
  flex: 0 0 54px;
  margin-bottom: 1.4rem;
  font-size: 1.35rem;
  color: var(--violet-500);
  background: var(--white);
  border: 2px solid var(--violet-100);
  border-radius: 50%;
  box-shadow: var(--sh-sm);
}
.step__dot .icon { stroke-width: 1.6; }

.step__body {
  width: 100%;
  padding: 1.15rem 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  text-align: left;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.step:hover .step__body {
  border-color: var(--violet-200);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.step--featured .step__body {
  border-color: var(--violet-200);
  background: var(--violet-025);
  box-shadow: var(--sh-sm);
}

.step__head {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink-900);
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  flex: none;
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  background: var(--violet-500);
  border-radius: 50%;
}
.step__desc {
  font-size: .8rem;
  line-height: 1.75;
  color: var(--ink-500);
}
.step__meta {
  display: block;
  margin-bottom: .3rem;
  font-weight: 600;
  color: var(--violet-600);
}
.step__tag {
  display: inline-block;
  margin-top: .9rem;
  padding: .35rem .75rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--violet-600);
  background: var(--white);
  border: 1px solid var(--violet-100);
  border-radius: var(--r-xs);
}

/* --- Offres CPF / Parrainage --------------------------------------------- */
.offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.offer {
  position: relative;
  padding: 1.6rem 1.75rem 1.75rem;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.offer--cpf { background: var(--violet-050); }
.offer--referral { background: var(--amber-050); }

.offer__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .75rem;
}
.offer__mark { flex: none; }
.offer__mark--cpf {
  display: grid;
  grid-template-columns: repeat(2, 20px);
  gap: 3px;
}
.offer__mark--cpf b {
  display: grid;
  place-items: center;
  height: 20px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  background: var(--violet-600);
  border-radius: 4px;
}
.offer__mark--icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  font-size: 1.2rem;
  color: var(--violet-500);
  background: var(--white);
  border-radius: 11px;
  box-shadow: var(--sh-xs);
}

.offer__title {
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-900);
}
.offer__text {
  position: relative;
  z-index: 1;
  max-width: 30ch;
  margin-bottom: 1.15rem;
  font-size: .875rem;
  line-height: 1.8;
  color: var(--ink-500);
}
.offer .btn { position: relative; z-index: 1; }

.offer__art {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  display: block;
  width: clamp(88px, 11vw, 124px);
  pointer-events: none;
}
.offer__art svg { width: 100%; height: auto; }
.offer--cpf .offer__art { color: var(--violet-200); }
.offer--referral .offer__art { color: var(--amber-500); opacity: .6; }

/* --- Témoignages --------------------------------------------------------- */
.testimonials { background: var(--white); }
.testimonials .section-title { margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }

.carousel { position: relative; }
.carousel__viewport { overflow: hidden; border-radius: var(--r-md); }
.carousel__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: transform .5s var(--ease);
  will-change: transform;
}

.testimonial {
  position: relative;
  flex: 0 0 calc((100% - 2 * clamp(1rem, 2vw, 1.5rem)) / 3);
  display: flex;
  gap: .9rem;
  padding: 1.5rem 1.6rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--sh-xs);
}
.testimonial__mark {
  flex: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--violet-200);
}
.testimonial blockquote {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial p {
  font-size: .875rem;
  line-height: 1.8;
  color: var(--ink-500);
}
.testimonial footer { margin-top: auto; padding-top: 1rem; }
.testimonial__name {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-900);
}
.testimonial__role {
  display: block;
  font-size: .8rem;
  color: var(--ink-400);
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 1.75rem;
}
.carousel__dot {
  width: 7px; height: 7px;
  padding: 0;
  background: var(--violet-100);
  border-radius: 50%;
  transition: background-color var(--t-fast), width var(--t-fast);
}
.carousel__dot[aria-selected="true"] {
  width: 20px;
  background: var(--violet-500);
  border-radius: var(--r-pill);
}

/* --- FAQ + CTA ----------------------------------------------------------- */
/* Pas de liseret avant la FAQ : la separation se fait par le changement de
   fond. Le padding vient de la regle generique « .section ». */
.faq { background: var(--surface-alt); }
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: start;
}
.faq .section-title { margin-bottom: 1.5rem; }

.accordion { display: grid; gap: .65rem; }
.accordion__item {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.accordion__item.is-open {
  border-color: var(--violet-200);
  box-shadow: var(--sh-sm);
}
.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: .95rem 1.1rem;
  font-size: .875rem;
  font-weight: 500;
  text-align: left;
  color: var(--ink-900);
}
.accordion__chevron {
  font-size: 1.05rem;
  color: var(--ink-400);
  transition: transform var(--t-med), color var(--t-fast);
}
.accordion__trigger[aria-expanded="true"] .accordion__chevron {
  transform: rotate(180deg);
  color: var(--violet-500);
}
.accordion__panel { overflow: hidden; }
.accordion__content {
  padding: 0 1.1rem 1.05rem;
  font-size: .875rem;
  line-height: 1.8;
  color: var(--ink-500);
}

.cta {
  position: relative;
  padding: clamp(1.9rem, 3.5vw, 2.6rem);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet-500) 0%, var(--violet-600) 55%, var(--violet-700) 100%);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 45px rgba(92, 74, 212, .3);
}
.cta__doodle {
  position: absolute;
  right: -1rem; bottom: -.5rem;
  width: clamp(150px, 22vw, 240px);
  color: rgba(255, 255, 255, .3);
  pointer-events: none;
}
.cta__sparkles {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  width: 42px;
  color: rgba(255, 255, 255, .35);
  pointer-events: none;
}
.cta__title {
  position: relative;
  font-size: clamp(1.25rem, .95rem + 1.1vw, 1.6rem);
  font-weight: 700;
  line-height: 1.35;
}
.cta__text {
  position: relative;
  max-width: 34ch;
  margin-top: .85rem;
  font-size: .875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .82);
}
.cta .btn { position: relative; margin-top: 1.6rem; }
.cta__meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .85rem;
  margin-top: 1.5rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .72);
}
.cta__meta span { display: inline-flex; align-items: center; }
.cta__meta span + span::before {
  content: "";
  width: 3px; height: 3px;
  margin-right: .85rem;
  background: rgba(255, 255, 255, .5);
  border-radius: 50%;
}

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  padding-block: clamp(2.75rem, 5vw, 3.75rem) 1.75rem;
  color: rgba(255, 255, 255, .68);
  background: var(--navy-900);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 3.5vw, 3rem);
}
.brand--footer .brand__name { color: var(--white); font-weight: 400; }
.brand--footer .brand__tagline { color: rgba(255, 255, 255, .55); }

.site-footer__pitch {
  max-width: 34ch;
  margin-top: 1.1rem;
  font-size: .875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .6);
}
.site-footer__heading {
  margin-bottom: 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
}
.site-footer__col ul { display: grid; gap: .55rem; }
.site-footer__col a {
  font-size: .875rem;
  color: rgba(255, 255, 255, .62);
  transition: color var(--t-fast);
}
.site-footer__col a:hover { color: var(--white); }
.site-footer__col--legal { padding-top: 2.1rem; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.socials { display: flex; gap: .75rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  font-size: 1rem;
  color: rgba(255, 255, 255, .7);
  border-radius: 8px;
  transition: color var(--t-fast), background-color var(--t-fast);
}
.socials a:hover { color: var(--white); background: rgba(255, 255, 255, .1); }
.site-footer__copy { font-size: .8rem; color: rgba(255, 255, 255, .45); }

/* ==========================================================================
   07. MODALE DE RÉSERVATION
   Planning « façon Calendly » — même palette, mêmes rayons, mêmes ombres.
   Les règles responsive de la modale sont regroupées en fin de section.
   ========================================================================== */

.booking {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: safe center;
  overflow-y: auto;
  padding: clamp(.75rem, 3vw, 2rem);
}
.booking[hidden] { display: none; }

.booking__overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 43, 95, .55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--t-med);
}
.booking.is-open .booking__overlay { opacity: 1; }

.booking__dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 302px) minmax(0, 1fr);
  width: min(100%, 940px);
  max-height: min(100%, 700px);
  overflow: hidden;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  opacity: 0;
  transform: translateY(14px) scale(.985);
  transition: opacity var(--t-med), transform var(--t-med);
}
.booking.is-open .booking__dialog { opacity: 1; transform: none; }

.booking__close {
  position: absolute;
  top: .85rem; right: .85rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  font-size: 1.05rem;
  color: var(--ink-500);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-xs);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.booking__close:hover { color: var(--violet-600); border-color: var(--violet-200); }

/* --- Colonne de gauche (contexte) ---------------------------------------- */
.booking__aside {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--white);
  background: linear-gradient(160deg, var(--violet-500) 0%, var(--violet-600) 55%, var(--violet-700) 100%);
}
.booking__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}
.booking__title {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
}
.booking__lead {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
}
.booking__facts {
  display: grid;
  gap: .55rem;
  margin-top: auto;
  padding-top: 1rem;
  font-size: .875rem;
}
.booking__facts li { display: flex; align-items: center; gap: .55rem; }
.booking__facts .icon { font-size: .95rem; color: var(--amber-400); flex: none; }
.booking__tz { font-size: .8rem; color: rgba(255, 255, 255, .6); }

/* --- Colonne de droite (étapes) ------------------------------------------ */
.booking__main {
  overflow-y: auto;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  padding-right: clamp(1.5rem, 2.6vw, 2.1rem);
}
.booking__step[hidden] { display: none; }

/* --- Calendrier ----------------------------------------------------------- */
.scheduler {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 178px);
  gap: clamp(1.1rem, 2.4vw, 1.9rem);
  align-items: stretch;
}
.scheduler__slots {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .9rem;
}
.cal__month {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--ink-900);
  text-transform: capitalize;
}
.cal__nav {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  color: var(--ink-500);
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  transition: color var(--t-fast), border-color var(--t-fast), opacity var(--t-fast);
}
.cal__nav:hover:not(:disabled) { color: var(--violet-600); border-color: var(--violet-200); }
.cal__nav:disabled { opacity: .35; cursor: not-allowed; }
.cal__nav .icon { font-size: 1rem; }
[data-cal-prev] .icon { transform: rotate(90deg); }
[data-cal-next] .icon { transform: rotate(-90deg); }

.cal__dows,
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}
.cal__dows {
  margin-bottom: 4px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-400);
  text-align: center;
}
.cal__day {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-900);
  background: var(--violet-025);
  border: 1px solid transparent;
  border-radius: var(--r-xs);
  transition: background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.cal__day:hover:not(:disabled) { background: var(--violet-100); }
.cal__day::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 3px; height: 3px;
  background: var(--violet-400);
  border-radius: 50%;
}
.cal__day:disabled {
  color: var(--ink-400);
  background: transparent;
  cursor: not-allowed;
  opacity: .5;
}
.cal__day:disabled::after { display: none; }
.cal__day.is-selected {
  color: var(--white);
  background: var(--violet-500);
  box-shadow: var(--sh-violet);
}
.cal__day.is-selected::after { background: var(--white); }
.cal__day.is-today { border-color: var(--violet-200); }
.cal__day--pad { visibility: hidden; }

/* --- Créneaux ------------------------------------------------------------- */
.slots__title {
  margin-bottom: .75rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-900);
}
.slots {
  display: grid;
  align-content: start;
  gap: .4rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 2px;
}
.slots__empty {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--ink-500);
}
.slot {
  padding: .6rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: var(--violet-600);
  background: var(--white);
  border: 1px solid var(--violet-100);
  border-radius: var(--r-xs);
  transition: background-color var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.slot:hover { border-color: var(--violet-400); background: var(--violet-025); }
.slot.is-selected {
  color: var(--white);
  background: var(--violet-500);
  border-color: var(--violet-500);
}

/* --- Étape formulaire ----------------------------------------------------- */
.booking__back {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .9rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-500);
  transition: color var(--t-fast);
}
.booking__back:hover { color: var(--violet-600); }
.booking__back .icon { font-size: 1rem; transform: rotate(90deg); }

.booking__recap {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1rem;
  margin-bottom: 1.15rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--violet-700);
  background: var(--violet-050);
  border-radius: var(--r-sm);
}
.booking__recap::first-letter { text-transform: uppercase; }

.booking__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem 1rem;
}
.field { display: grid; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-600);
}
.field__hint { font-weight: 400; color: var(--ink-400); }
.field__input {
  width: 100%;
  padding: .7rem .85rem;
  font: inherit;
  font-size: .875rem;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field__input::placeholder { color: var(--ink-400); }
.field__input:focus {
  outline: none;
  border-color: var(--violet-400);
  box-shadow: 0 0 0 3px var(--violet-100);
}
.field__input:user-invalid { border-color: #D9534F; }
textarea.field__input { resize: vertical; min-height: 74px; }

.field__error {
  grid-column: 1 / -1;
  font-size: .8rem;
  color: #C0392B;
}
.field__error[hidden] { display: none; }

.booking__submit { grid-column: 1 / -1; }
.booking__submit .btn { width: 100%; }
.booking__legal {
  grid-column: 1 / -1;
  font-size: .8rem;
  line-height: 1.6;
  color: var(--ink-400);
}

/* --- Étape confirmation --------------------------------------------------- */
.booking__step--done { text-align: center; padding-block: clamp(.5rem, 3vw, 1.75rem); }
.booking__seal {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  margin: 0 auto 1.1rem;
  font-size: 1.5rem;
  color: var(--white);
  background: var(--violet-500);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-violet);
}
.booking__done-title {
  margin-bottom: .9rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-900);
}
.booking__step--done .booking__recap { display: inline-flex; }
.booking__done-text {
  max-width: 42ch;
  margin: 0 auto 1.4rem;
  font-size: .875rem;
  line-height: 1.8;
  color: var(--ink-500);
}
.booking__done-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}

/* --- Responsive de la modale ---------------------------------------------- */
@media (max-width: 860px) {
  .booking__dialog {
    grid-template-columns: minmax(0, 1fr);
    max-height: 100%;
    overflow-y: auto;
  }
  .booking__aside { padding-right: 3.5rem; }
  .booking__facts { margin-top: 0; padding-top: 0; }
  .booking__facts li:nth-child(n+3) { display: none; }
  .booking__tz { display: none; }
  .booking__main { overflow: visible; }
  .scheduler { grid-template-columns: minmax(0, 1fr); }
  .scheduler__slots { display: block; }
  .slots {
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    flex: none;
    overflow: visible;
  }
  .slot { text-align: center; }
}

@media (max-width: 520px) {
  .booking { padding: 0; }
  .booking__dialog { width: 100%; height: 100%; max-height: 100%; border-radius: 0; overflow-y: auto; }
  .booking__title { font-size: 1.2rem; }
  .booking__lead { display: none; }
  .booking__form { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .booking__overlay,
  .booking__dialog { transition: none; }
}

/* ==========================================================================
   08. RESPONSIVE
   ========================================================================== */

/* --- ≤ 1080px : le livrable passe sous les deux colonnes ----------------- */
@media (max-width: 1080px) {
  .methods__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deliverable { grid-column: 1 / -1; max-width: 340px; margin-inline: auto; }
  .deliverable__badge { right: 0; }
}

/* --- ≤ 960px : nav mobile ------------------------------------------------ */
@media (max-width: 960px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    z-index: 90;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem var(--gutter) 1.75rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity var(--t-med), transform var(--t-med), visibility var(--t-med);
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }

  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__link {
    display: block;
    padding: .85rem 0;
    font-size: .875rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .site-nav__link::after { display: none; }
  .site-nav__cta { margin-top: 1.25rem; justify-content: center; }

  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__media {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 520px;
    margin-inline: auto;
    margin-top: 1rem;
  }
  /* La carte passe sous la photo. Le cadrage carré conserve un plan plus large
     autour du visage au lieu de rogner le portrait en 4 / 3. */
  .hero__figure { order: 1; aspect-ratio: 1; }
  .hero__figure picture { display: block; width: 100%; height: 100%; }
  .hero__photo { object-position: center; }
  .hero__card {
    position: static;
    order: 3;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--sh-md);
  }
  .hero__leaf { display: none; }

  .pains__grid { grid-template-columns: minmax(0, 1fr); }
  .pains__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline::before { display: none; }

  .testimonial { flex: 0 0 calc((100% - clamp(1rem, 2vw, 1.5rem)) / 2); }

  .faq__grid { grid-template-columns: minmax(0, 1fr); }

  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__col--legal { padding-top: 0; }
}

/* --- ≤ 640px ------------------------------------------------------------- */
@media (max-width: 640px) {
  body { font-size: .9375rem; }

  .hero__usps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem 1rem; }
  .hero__actions .btn { width: 100%; }

  .pains__list { grid-template-columns: minmax(0, 1fr); }
  .pain { flex-direction: row; align-items: flex-start; gap: .9rem; }

  .methods__grid { grid-template-columns: minmax(0, 1fr); }

  .timeline { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
  .step { flex-direction: row; align-items: flex-start; gap: 1rem; }
  .step__dot { margin-bottom: 0; }
  .step__body { width: auto; min-width: 0; flex: 1 1 auto; }

  .offers { grid-template-columns: minmax(0, 1fr); }
  .offer__art { right: -1rem; opacity: .28; }
  .offer--referral .offer__art { opacity: .28; }
  .offer__text { max-width: none; }

  .deliverable { max-width: 300px; }
  .deliverable__sheet--front { width: 88%; }
  .deliverable__badge {
    right: -6%;
    bottom: -2.25rem;
    width: 132px; height: 132px;
    padding: 1.05rem;
  }

  .testimonial { flex: 0 0 100%; }

  .site-footer__grid { grid-template-columns: minmax(0, 1fr); }
  .site-footer__bottom { justify-content: flex-start; }
}

/* --- Impression ---------------------------------------------------------- */
@media print {
  .site-header, .nav-toggle, .carousel__dots, .cta__doodle, .cta__sparkles { display: none !important; }
  body { color: #000; background: #fff; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .accordion__panel { display: block !important; }
}
