/* ════════════════════════════════════════════════════════════════════════
   Mediboard — Vitrine v2
   Palette violet + crème (pas d'or), bandeau vertical fixe à gauche,
   animation d'intro (pétale + écriture MEDIBoard puis transformation en
   bandeau), barre flottante en bas, sections animées au scroll.
   ════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;700&family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --v-violet:        #4C1D95;
  --v-violet-dark:   #3B0764;
  --v-violet-soft:   #F5F3FF;
  --v-violet-accent: #A78BFA;
  --v-cream:         #FAF7F2;
  --v-cream-warm:    #F1ECE2;
  --v-text:          #0f172a;
  --v-text-muted:    #64748b;
  --v-text-faint:    #94a3b8;
  --v-border:        #e9e4dc;
  --v-white:         #ffffff;

  /* Bandeau horizontal en haut (juste le logo, pas de nav) */
  --v-topbar-h:      72px;
  /* Floating bar en bas */
  --v-bar-h:         72px;

  /* Largeur de la colonne de contenu du site. Fixe à 1080 jusqu'à ~1480px de
     large, puis s'élargit AVEC l'écran (en réservant 200px de marge de chaque
     côté, pour loger le scrollspy), plafonnée à 1500. Utilisée par le hero, les
     sections ET le scrollspy → tout reste aligné et « suit » les grands écrans. */
  --v-content:       clamp(1080px, 100vw - 400px, 1500px);

  --v-ease:          cubic-bezier(.4, 0, .2, 1);
  --v-ease-out:      cubic-bezier(.16, 1, .3, 1);
  --v-ease-spring:   cubic-bezier(.34, 1.56, .64, 1);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; overflow-x: hidden; }   /* coupe tout débordement horizontal (intro, anims d'entrée) — surtout sur mobile */

body.v-body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--v-text);
  background: var(--v-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.v-body h1, .v-body h2, .v-body h3, .v-body h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0;
}
.v-body p { margin: 0; }
.v-body a { color: inherit; text-decoration: none; }

.v-grad {
  background: linear-gradient(135deg, var(--v-violet) 0%, var(--v-violet-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

/* ═════════════════════════════════════════════════════════════════════════
   INTRO OVERLAY — pétale qui grandit puis MEDIBoard qui s'écrit
   ═════════════════════════════════════════════════════════════════════════ */

.v-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--v-cream);
  pointer-events: none;
  transition: opacity .5s var(--v-ease);
}
/* Wrapper en position absolue : on anime le `top` pour passer du centre
   à la zone topbar (pas de snap, contrairement à align-items). */
.v-intro-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: min(26px, 4.5vw);
  transition: top 1s var(--v-ease-out), left 1s var(--v-ease-out), transform 1s var(--v-ease-out), gap .9s var(--v-ease-out);
}
/* Halo violet doux derrière le pétale */
.v-intro::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, rgba(76, 29, 149, .14) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 1s var(--v-ease-out), transform 1s var(--v-ease-out);
}

/* Pétale (SVG inline) */
.v-petal {
  width: min(120px, 20vw);     /* intro : le pétale rétrécit sur mobile pour que le lockup tienne dans l'écran */
  height: min(120px, 20vw);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(.25) rotate(-12deg);
  transition:
    opacity .9s var(--v-ease-out),
    transform 1.1s var(--v-ease-spring);
}
.v-petal svg { width: 100%; height: 100%; display: block; }

/* Texte MEDIBoard — lettres */
.v-logotext {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: min(76px, 13vw);  /* intro : « MEDIBoard » (nowrap) suit la largeur d'écran → ne déborde plus sur mobile */
  font-weight: 700;
  letter-spacing: -3px;
  color: var(--v-violet);
  line-height: 1;              /* comme la topbar : pas d'interligne mort sous MEDIBoard,
                                 sinon l'écart avec « Aesthetic » gonfle aux grandes tailles */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: visible;
  white-space: nowrap;
}
.v-logoletters {
  display: flex;
  overflow: hidden;            /* clippe les lettres pendant l'écriture */
}
.v-logotext .ml {
  display: inline-block;
  opacity: 0;
  transform: translateX(-14px);
  transition:
    opacity .42s var(--v-ease-out),
    transform .42s var(--v-ease-out);
}
.v-logotext .ml.light { font-weight: 400; }

/* Sous-titre « Aesthetic » du lockup d'intro. Dimensions en em : se réduit avec
   le lockup en phase 3 pour rester proportionné au logo (≈ taille de la topbar). */
.v-logosub {
  font-weight: 300;
  font-size: .59em;
  letter-spacing: .154em;
  line-height: 1;
  color: var(--v-violet);
  margin-top: .08em;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity .5s var(--v-ease-out),
    transform .5s var(--v-ease-out);
}
body.v-phase-2 .v-logosub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .6s;       /* apparaît après l'écriture de MEDIBoard */
}

/* Phase 1 : pétale apparaît */
body.v-phase-1 .v-intro::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }
body.v-phase-1 .v-petal { opacity: 1; transform: scale(1) rotate(0); }

/* Phase 2 : texte s'écrit (lettres staggered via JS inline style --d) */
body.v-phase-2 .v-logotext .ml {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(var(--d, 0) * 55ms);
}

/* Phase 3 : la composition glisse vers le HAUT (top: 50% → topbar/2) ET vers la
   GAUCHE (left: 50% → 28px, transform sans le -50% horizontal) pour atterrir
   exactement sur le logo de la topbar (en haut à gauche). Rétrécit, reste
   violette, fond reste crème. */
body.v-phase-3 .v-intro-inner {
  top: calc(var(--v-topbar-h) / 2);
  left: 28px;
  transform: translate(0, -50%);
  gap: 12px;
}
body.v-phase-3 .v-intro::before { opacity: 0; }
body.v-phase-3 .v-petal {
  width: 38px;
  height: 38px;
  transition: width .9s var(--v-ease-out), height .9s var(--v-ease-out);
}
body.v-phase-3 .v-logotext {
  font-size: 22px;
  letter-spacing: -.5px;
  transition: font-size .9s var(--v-ease-out);
}

/* Phase 4 : intro disparaît, la vraie sidebar prend le relais */
body.v-phase-4 .v-intro { opacity: 0; }

/* Skip animation (motion reduce ou sessionStorage) */
body.v-no-intro .v-intro { display: none; }
body.v-no-intro .v-shell { opacity: 1; transform: none; }

/* ═════════════════════════════════════════════════════════════════════════
   SHELL : sidebar + main + floating bar
   ═════════════════════════════════════════════════════════════════════════ */

.v-shell {
  min-height: 100vh;
  opacity: 0;
  /* Pas de transform : la topbar est dedans, un translate ferait "rebondir"
     le logo de 20px à la fin de l'intro. Juste un fade en opacité. */
  transition: opacity .6s var(--v-ease-out) .15s;
}
body.v-phase-4 .v-shell {
  opacity: 1;
}

/* ─────────────── TOPBAR (bandeau horizontal en haut)
   Fond crème = même teinte que la page → visuellement invisible MAIS opaque,
   donc le contenu qui scrolle ne passe pas à travers. Logo violet centré. ─── */
.v-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--v-topbar-h);
  background: var(--v-cream);
  color: var(--v-violet);
  display: flex;
  align-items: center;
  justify-content: flex-start;      /* logo aligné à gauche */
  padding: 0 28px;
  z-index: 95;                      /* au-dessus du bouton « en savoir plus » (90) : quand on
                                       scrolle vers #apercu, le bouton se glisse SOUS la topbar
                                       opaque au lieu de rester par-dessus le logo */
}
/* Lien Connexion discret en haut à droite — porte vers app.mediboard.app */
.v-topbar-login {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--v-violet);
  border: 1.5px solid transparent;
  border-radius: 100px;
  transition: background .18s, border-color .18s;
  text-decoration: none;
}
.v-topbar-login:hover {
  background: var(--v-violet-soft);
  border-color: var(--v-violet-soft);
}
@media (max-width: 600px) {
  .v-topbar-login { right: 14px; padding: 8px 14px; font-size: 13px; }
}
.v-side-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.v-side-brand .v-petal-mini {
  width: 38px; height: 38px;
  display: block;
}
.v-side-brand .v-brandtext {
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--v-violet);            /* violet — pas de blanc */
  line-height: 1;
}
.v-side-brand .v-brandtext .light { font-weight: 400; }

/* ─────────────── MAIN ─────────────── */
.v-main {
  padding-top: var(--v-topbar-h);          /* sous la topbar fixe */
  padding-bottom: 64px;          /* la nav est un tiroir latéral : plus de barre en bas */
  position: relative;
}

/* ─────────────── BARRE DE NAVIGATION (bandeau du haut) ───────────────
   DESKTOP : le <nav class="v-floatbar"> (déjà présent sur chaque page) devient
   une nav HORIZONTALE en haut à droite ; le logo reste à gauche dans la topbar.
   Pas de hamburger sur desktop.
   MOBILE (≤960px, plus bas) : .v-floatbar redevient un tiroir latéral ouvert
   par le bouton « hamburger » .v-navtoggle. Le lien « Connexion » est déplacé
   dans la .v-floatbar par vitrine.js → présent dans la nav (desktop) ET dans le
   tiroir (mobile), sur toutes les pages sans toucher au HTML. */

/* Hamburger : masqué sur desktop, réactivé dans la media query mobile. */
.v-navtoggle {
  position: fixed;
  top: calc((var(--v-topbar-h) - 44px) / 2);
  left: 24px;
  z-index: 98;                  /* au-dessus du tiroir (97) : la croix reste cliquable */
  width: 44px;
  height: 44px;
  display: none;                /* desktop : pas de hamburger */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border-radius: 13px;
  border: 1px solid var(--v-border);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 6px 20px -8px rgba(76, 29, 149, .3), 0 2px 8px -4px rgba(0, 0, 0, .08);
  cursor: pointer;
}
body.v-phase-4 .v-navtoggle { opacity: 1; translate: 0 0; }
body.v-no-intro .v-navtoggle { opacity: 1; translate: 0 0; }
.v-navtoggle:hover { background: #fff; box-shadow: 0 10px 26px -8px rgba(76, 29, 149, .42); }
.v-navtoggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--v-violet);
  transition: transform .3s var(--v-ease), opacity .2s var(--v-ease);
}
body.v-nav-open .v-navtoggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.v-nav-open .v-navtoggle .bar:nth-child(2) { opacity: 0; }
body.v-nav-open .v-navtoggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.v-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 96;
  background: rgba(15, 23, 42, .38);
  opacity: 0;
  pointer-events: none;
  transition: opacity .42s var(--v-ease);
}
body.v-nav-open .v-nav-overlay { opacity: 1; pointer-events: auto; }

/* ── Desktop : nav horizontale en haut à droite ── */
.v-floatbar {
  position: fixed;
  top: 0;
  right: 28px;
  left: auto;
  bottom: auto;
  height: var(--v-topbar-h);
  z-index: 96;                  /* au-dessus de la topbar crème (95), à droite */
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  /* révélée après l'intro, comme le reste du shell */
  opacity: 0;
  translate: 12px 0;
  transition: opacity .6s var(--v-ease-out) 1.4s, translate .6s var(--v-ease-out) 1.4s;
}
body.v-phase-4 .v-floatbar,
body.v-no-intro .v-floatbar { opacity: 1; translate: 0 0; }

.v-floatbar a {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--v-violet);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.v-floatbar a:hover { background: var(--v-violet-soft); color: var(--v-violet); }
/* Lien de la page courante : pastille violet-soft persistante */
.v-floatbar a.active {
  background: var(--v-violet-soft);
  color: var(--v-violet);
  font-weight: 600;
}
/* Connexion : lien discret, déplacé ici par JS, juste avant le CTA */
.v-floatbar .v-topbar-login {
  order: 8;
  position: static;
  right: auto;
  top: auto;
  transform: none;
  margin: 0;
}
/* CTA « Demander une démo » : bouton plein, toujours en dernier (à droite) */
.v-floatbar a.primary {
  order: 9;
  justify-content: center;
  margin-left: 6px;
  padding: 10px 18px;
  background: var(--v-violet);
  color: var(--v-white);
  font-weight: 600;
  box-shadow: 0 4px 14px -2px rgba(76, 29, 149, .4);
}
.v-floatbar a.primary:hover {
  background: var(--v-violet-dark);
  color: var(--v-white);
}
/* Si le bouton primary est aussi la page courante (page Démo) : violet foncé */
.v-floatbar a.primary.active {
  background: var(--v-violet-dark);
  color: var(--v-white);
}

/* ═════════════════════════════════════════════════════════════════════════
   HERO + SECTIONS (landing minimaliste)
   ═════════════════════════════════════════════════════════════════════════ */

.v-hero {
  max-width: calc(var(--v-content) + 80px);   /* boîte = colonne de contenu responsive (var) + 2×40 de padding ; le contenu reste aligné sur les sections du dessous */
  margin: 0 auto;
  padding: 92px 40px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  position: relative;
}
/* Halo crème chaud en fond */
.v-hero::before {
  content: "";
  position: absolute;
  inset: -40px -40px 0;
  background:
    radial-gradient(ellipse 700px 500px at 30% 30%, rgba(167, 139, 250, .12) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(241, 236, 226, .8) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.v-hero > * { position: relative; z-index: 1; }

.v-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--v-white);
  color: var(--v-violet);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--v-violet-soft);
  width: max-content;
  box-shadow: 0 1px 3px rgba(76, 29, 149, .06);
}
.v-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--v-violet);
  box-shadow: 0 0 0 4px rgba(76, 29, 149, .18);
}
/* Eyebrow pill labels masqués site-wide (demande utilisateur) */
.v-eyebrow { display: none; }

.v-hero h1 {
  font-size: clamp(46px, 6vw, 84px);
  line-height: 1.06;
  letter-spacing: -.02em;
  max-width: 880px;
}
.v-hero h1 em { font-style: italic; }
.v-hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--v-text-muted);
  line-height: 1.55;
  max-width: 640px;
}
.v-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Boutons */
.v-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .22s var(--v-ease);
  background: var(--v-white);
  color: var(--v-text);
  border-color: var(--v-border);
}
.v-btn:hover {
  border-color: var(--v-violet);
  color: var(--v-violet);
  transform: translateY(-1px);
}
.v-btn--primary {
  background: var(--v-violet);
  color: var(--v-white);
  box-shadow: 0 6px 18px -4px rgba(76, 29, 149, .4);
  border-color: var(--v-violet);
}
.v-btn--primary:hover {
  background: var(--v-violet-dark);
  color: var(--v-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(76, 29, 149, .5);
}
.v-btn--lg { padding: 18px 34px; font-size: 16px; }
/* Couleur des boutons-liens : prioritaire sur `.v-body a { color: inherit }` */
.v-body a.v-btn { color: var(--v-text); }
.v-body a.v-btn:hover { color: var(--v-violet); }
.v-body a.v-btn--primary { color: var(--v-white); }
.v-body a.v-btn--primary:hover { color: var(--v-white); }

/* Sections génériques */
.v-section {
  max-width: var(--v-content);
  margin: 0 auto;
  padding: 90px 56px;
}
.v-section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.v-section-head .v-eyebrow { margin-bottom: 20px; }
.v-section-head h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
  margin-bottom: 18px;
}
.v-section-head p {
  font-size: 17px;
  color: var(--v-text-muted);
  line-height: 1.7;
}

/* ───── Section "Pour qui" / Features compactes ───── */
.v-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.v-feat {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: 22px;
  padding: 32px 28px;
  transition: transform .3s var(--v-ease), box-shadow .3s var(--v-ease), border-color .3s;
}
.v-feat:hover {
  transform: translateY(-4px);
  border-color: var(--v-violet-soft);
  box-shadow: 0 18px 40px -12px rgba(76, 29, 149, .18);
}
.v-feat-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--v-violet-soft);
  color: var(--v-violet);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.v-feat-ico svg { width: 24px; height: 24px; }
.v-feat h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.v-feat p { color: var(--v-text-muted); font-size: 14.5px; line-height: 1.6; }

/* ───── Workflow (4 étapes) ───── */
.v-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.v-flow-step {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: 18px;
  padding: 28px 22px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.v-flow-step:hover {
  transform: translateY(-3px);
  border-color: var(--v-violet);
  box-shadow: 0 12px 26px -10px rgba(76, 29, 149, .18);
}
.v-flow-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--v-violet);
  margin-bottom: 14px;
  display: inline-block;
}
.v-flow-num::after {
  content: "";
  display: block;
  width: 32px; height: 2px;
  background: var(--v-violet);
  margin-top: 6px;
  border-radius: 1px;
}
.v-flow-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 8px;
}
.v-flow-step p { color: var(--v-text-muted); font-size: 13.5px; line-height: 1.55; }

/* ───── CTA Final ───── */
.v-cta-final {
  max-width: var(--v-content);
  margin: 0 auto;
  padding: 60px 56px 100px;
}
.v-cta-card {
  background: linear-gradient(135deg, var(--v-violet) 0%, var(--v-violet-dark) 100%);
  border-radius: 28px;
  padding: 70px 48px;
  text-align: center;
  color: var(--v-white);
  position: relative;
  overflow: hidden;
}
.v-cta-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(167, 139, 250, .35) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(250, 247, 242, .15) 0%, transparent 50%);
}
.v-cta-card > * { position: relative; z-index: 1; }
.v-cta-card h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 14px;
}
.v-cta-card p { opacity: .88; font-size: 16px; margin-bottom: 28px; }
.v-cta-card .v-btn {
  background: var(--v-white);
  color: var(--v-violet);
  border-color: var(--v-white);
}
.v-cta-card .v-btn:hover {
  background: var(--v-cream);
  color: var(--v-violet);
}

/* ═════════════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS (sections qui glissent)
   ═════════════════════════════════════════════════════════════════════════ */

.v-anim {
  opacity: 0;
  transition: opacity .85s var(--v-ease-out), transform .85s var(--v-ease-out);
  will-change: opacity, transform;
}
.v-anim--left  { transform: translateX(-60px); }
.v-anim--right { transform: translateX(60px); }
.v-anim--up    { transform: translateY(40px); }
.v-anim--down  { transform: translateY(-40px); }

.v-anim.in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger pour grilles */
.v-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--v-ease-out), transform .7s var(--v-ease-out);
}
.v-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ═════════════════════════════════════════════════════════════════════════
   PAGES DÉDIÉES (demo, contact, tarifs, apropos)
   ═════════════════════════════════════════════════════════════════════════ */

.v-page-head {
  max-width: var(--v-content);
  margin: 0 auto;
  padding: 100px 56px 40px;
}
.v-page-head h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.v-page-head h1 em { font-style: italic; }
/* Titre de page non gras — seuls les mots en violet (.v-grad) restent en gras */
.v-body .v-page-head h1 { font-weight: 400; }
.v-body .v-page-head h1 .v-grad { font-weight: 700; }
.v-page-head .v-lead {
  font-size: 19px;
  color: var(--v-text-muted);
  line-height: 1.6;
  max-width: 620px;
}

/* ─── Form layout (demo, contact) ─── */
.v-form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}
.v-form-row { display: grid; gap: 6px; }
.v-form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--v-text);
  letter-spacing: .01em;
}
.v-form-row input,
.v-form-row select,
.v-form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--v-border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  background: var(--v-white);
  color: var(--v-text);
  transition: border-color .18s, box-shadow .18s;
}
.v-form-row input:focus,
.v-form-row select:focus,
.v-form-row textarea:focus {
  outline: none;
  border-color: var(--v-violet);
  box-shadow: 0 0 0 4px rgba(76, 29, 149, .12);
}
.v-form-row textarea { min-height: 120px; resize: vertical; }
.v-form-2col { grid-template-columns: 1fr 1fr; gap: 14px; display: grid; }
.v-form button[type="submit"] {
  justify-self: start;
  margin-top: 8px;
}

/* ─── Pricing (tarifs) ─── */
.v-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}
.v-plan {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: 22px;
  padding: 38px 30px;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.v-plan:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -12px rgba(76, 29, 149, .18); }
.v-plan--featured {
  border-color: var(--v-violet);
  border-width: 2px;
  box-shadow: 0 12px 30px -8px rgba(76, 29, 149, .25);
}
.v-plan--featured::before {
  content: "Le plus populaire";
  position: absolute;
  top: -12px; left: 30px;
  background: var(--v-violet);
  color: var(--v-white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: .02em;
}
.v-plan h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.v-plan .v-plan-tag {
  font-size: 13px;
  color: var(--v-text-muted);
  margin-bottom: 22px;
}
.v-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
}
.v-plan-price .amt {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 54px;
  color: var(--v-violet);
  line-height: 1;
}
.v-plan-price .unit {
  font-size: 14px;
  color: var(--v-text-muted);
}
.v-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.v-plan-features li {
  font-size: 14.5px;
  color: var(--v-text);
  display: flex;
  align-items: start;
  gap: 10px;
}
.v-plan-features li::before {
  content: "✓";
  color: var(--v-violet);
  font-weight: 700;
  flex-shrink: 0;
}
.v-plan .v-btn { width: 100%; justify-content: center; }

/* ─── À propos ─── */
.v-story {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 56px 80px;
}
.v-story p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--v-text);
  margin-bottom: 22px;
}
.v-story p.lead {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.4;
  color: var(--v-violet);
  margin-bottom: 36px;
}
.v-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--v-content);
  margin: 56px auto;
  padding: 0 56px;
}
.v-value {
  padding: 28px;
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: 18px;
}
.v-value h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--v-violet);
}
.v-value p { color: var(--v-text-muted); font-size: 14.5px; line-height: 1.6; }

/* ─── Contact infos ─── */
.v-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  max-width: var(--v-content);
  margin: 0 auto;
  padding: 0 56px 80px;
}
.v-contact-info {
  padding: 30px;
  background: var(--v-cream-warm);
  border-radius: 22px;
  height: max-content;
}
.v-contact-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 22px;
}
.v-contact-info h3:first-child { margin-top: 0; }
.v-contact-info p {
  color: var(--v-text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.v-contact-info a {
  color: var(--v-violet);
  font-weight: 500;
}

/* ═════════════════════════════════════════════════════════════════════════
   RESPONSIVE — mobile : sidebar devient top bar, floating bar reste
   ═════════════════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  :root { --v-topbar-h: 60px; }
  .v-topbar { padding: 0 18px; }
  .v-side-brand .v-petal-mini { width: 32px; height: 32px; }
  .v-side-brand .v-brandtext { font-size: 18px; }

  /* ── Mobile : retour au hamburger + tiroir latéral ── */
  .v-navtoggle {
    display: inline-flex;
    left: 16px;
    opacity: 0;
    translate: -10px 0;
    transition: opacity .6s var(--v-ease-out) 1.4s, translate .6s var(--v-ease-out) 1.4s, box-shadow .2s var(--v-ease), background .2s var(--v-ease);
  }
  .v-floatbar {
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    height: auto;
    width: min(82vw, 300px);
    z-index: 97;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 80px 18px 24px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-right: 1px solid var(--v-border);
    box-shadow: 0 30px 80px -20px rgba(76, 29, 149, .35);
    opacity: 1;
    translate: 0 0;
    transform: translateX(-100%);
    transition: transform .42s var(--v-ease);
    overflow-y: auto;
  }
  body.v-nav-open .v-floatbar { transform: translateX(0); }
  .v-floatbar a {
    display: flex;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 15px;
    color: var(--v-text);
  }
  .v-floatbar .v-topbar-login { order: 0; }
  .v-floatbar a.primary {
    order: 0;
    margin: 0 0 6px 0;
    padding: 13px 16px;
    justify-content: center;
  }

  .v-hero, .v-section, .v-cta-final, .v-page-head, .v-story, .v-values, .v-contact-grid {
    padding-left: 22px;
    padding-right: 22px;
  }
  .v-feats, .v-flow, .v-plans, .v-values, .v-contact-grid {
    grid-template-columns: 1fr;
  }
  .v-form-2col { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ════════════════════════════════════════════════════════════════════════
   AJUST 02/06/2026 — Refonte page d'accueil (index.html)
   Hero 2 colonnes (titre / liste), bouton « en savoir plus », bande aperçu
   (photo + maquette de devis), titres de section centrés.
   ════════════════════════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }
/* scroll-margin réduit : « En savoir plus » descend un peu plus bas, la section
   aperçu remonte sous la topbar (90px de padding interne suffisent à aérer) */
#apercu, #features { scroll-margin-top: 24px; }

/* ── Topbar : lien connexion avec phrase d'accroche ── */
.v-topbar-login-wrap {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.v-topbar-login-lead {
  font-size: 13.5px;
  color: var(--v-text-muted);
  white-space: nowrap;
}
/* Neutralise le positionnement absolu d'origine : le lien vit dans le wrap */
.v-topbar-login-wrap .v-topbar-login {
  position: static;
  right: auto;
  top: auto;
  transform: none;
}
@media (max-width: 1000px) {
  .v-topbar-login-lead { display: none; }
}

/* ── Hero : 2 colonnes + liste + bouton « en savoir plus » ── */
.v-hero {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr);  /* minmax(0,…) : les cases ne « volent » plus de largeur à la photo → ratio respecté, la photo (4:3) est aussi haute que la grille et plus large ; la grille glisse à droite */
  align-items: stretch;       /* la rangée prend la hauteur de la grille 3×3 → la photo s'y étire */
  align-content: space-evenly; /* répartit l'espace vertical : espace ÉGAL entre titre / section photo+cases / bouton (et au-dessus/en dessous) → tout glisse vers le bas */
  min-height: calc(100vh - var(--v-topbar-h)); /* le hero remplit le 1er écran → le bouton « en savoir plus » se cale juste au-dessus de la bordure basse, quel que soit l'écran */
  column-gap: 48px;
  row-gap: 0;                 /* l'espacement vertical est entièrement géré par align-content (espacement égal) */
  padding-top: 12px;          /* petit padding : l'espace réel au-dessus du titre vient de align-content */
  padding-bottom: 12px;       /* idem en bas → le bouton reste juste au-dessus du bord */
}
.v-hero-left h1 {
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: 1.05;
  margin: 0;
}
.v-hero .v-hero-title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: clamp(22px, 2.8vw, 40px); /* échelle selon la largeur d'écran → tient toujours sur une seule ligne */
  line-height: 1.1;
  letter-spacing: -.02em;
  max-width: none;                     /* plus de bride à 940px : le titre s'étire plus loin à gauche et à droite */
  white-space: nowrap;                 /* une seule ligne */
  width: max-content;                  /* la boîte épouse exactement le texte → centrée sur la page, débordement symétrique */
  justify-self: center;                /* centre la boîte dans la grille : déborde autant à gauche qu'à droite (pas seulement à droite) */
  margin: 0;                           /* pas de marge : l'espacement vertical est géré par align-content du hero */
  font-weight: 400;                    /* titre non gras : seuls les mots en violet (.v-hl) restent en gras */
}
.v-hero .v-hero-title .v-hl { font-weight: 700; }
.v-hero-left { display: block; }      /* la cellule est étirée à la hauteur de la grille → la photo la remplit */
.v-hero-photo {
  margin: 0;
  aspect-ratio: 1200 / 900;           /* même ratio que la photo : object-fit:cover ne rogne donc rien */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--v-border);
  box-shadow: 0 30px 70px -34px rgba(76, 29, 149, .5), 0 6px 22px -12px rgba(0, 0, 0, .12);
}
.v-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;                  /* la boîte a déjà le ratio 4:3 de la photo → aucun rognage */
}
/* Carrousel hero : 4 images en fondu enchaîné, piloté par JS (flèches + auto-défilement) */
.v-hero-carousel { position: relative; }
.v-hero-carousel .v-hc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s var(--v-ease-out);
}
.v-hero-carousel .v-hc-slide:first-child { opacity: 1; }      /* fallback sans JS : 1re image visible */
.v-hero-carousel.is-live .v-hc-slide { opacity: 0; }
.v-hero-carousel.is-live .v-hc-slide.is-active { opacity: 1; }
/* Flèches de navigation du carrousel hero */
.v-hc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--v-border);
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--v-violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 26px -10px rgba(76, 29, 149, .45);
  transition: transform .2s var(--v-ease), background .2s var(--v-ease), color .2s var(--v-ease);
}
.v-hc-nav:hover {
  background: var(--v-violet);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.v-hc-nav svg { width: 20px; height: 20px; }
.v-hc-prev { left: 10px; }
.v-hc-next { right: 10px; }
@media (prefers-reduced-motion: reduce) {
  .v-hero-carousel .v-hc-slide { transition: none; }
}
.v-hero-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.v-hero-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  font-weight: 500;
  color: var(--v-text);
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color .2s var(--v-ease), transform .2s var(--v-ease), box-shadow .2s;
}
.v-hero-list li:hover {
  border-color: var(--v-violet-accent);
  transform: translateX(3px);
  box-shadow: 0 8px 20px -12px rgba(76, 29, 149, .35);
}
.v-hero-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--v-violet-soft);
  color: var(--v-violet);
  font-size: 13px;
  font-weight: 800;
}
.v-hero-more {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 0;               /* espacement géré par align-content (espace égal) ; pas de marge propre */
  position: relative;
  z-index: 90;
}
/* sélecteur `a.` pour battre `.v-body a { color: inherit }` (même spécificité, défini après) */
a.v-scrolldown {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  background: var(--v-violet);
  color: var(--v-white);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 10px 26px -6px rgba(76, 29, 149, .5);
  transition: transform .2s var(--v-ease), background .2s var(--v-ease);
}
.v-scrolldown:hover { background: var(--v-violet-dark); color: var(--v-white); transform: translateY(-2px); }
.v-scrolldown svg { width: 18px; height: 18px; animation: v-bob 1.6s var(--v-ease) infinite; }
@keyframes v-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

/* ── Titre fonctionnalités : mots en violet ── */
.v-hl { color: var(--v-violet); }

/* ── Bande Aperçu : photo + maquette de devis ── */
.v-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  max-width: var(--v-content);
  margin: 0 auto;
}
.v-showcase-photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, var(--v-violet-soft) 0%, var(--v-cream-warm) 100%);
  box-shadow: 0 28px 60px -22px rgba(76, 29, 149, .35);
}
.v-showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Maquette d'un devis généré (pur CSS) */
.v-devis-mock {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: 18px;
  box-shadow: 0 30px 60px -25px rgba(76, 29, 149, .4), 0 8px 22px -10px rgba(0, 0, 0, .1);
  padding: 24px 26px 20px;
  font-size: 13px;
  line-height: 1.45;
}
.v-devis-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--v-border);
  padding-bottom: 14px;
  margin-bottom: 12px;
}
.v-devis-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--v-violet);
  font-size: 15px;
}
.v-devis-badge {
  background: var(--v-violet-soft);
  color: var(--v-violet);
  font-weight: 700;
  font-size: 12px;             /* lisible sur mobile (était 11px) */
  padding: 5px 10px;
  border-radius: 8px;
  letter-spacing: .03em;
  white-space: nowrap;
}
.v-devis-meta {
  display: flex;
  justify-content: space-between;
  color: var(--v-text-muted);
  font-size: 12px;
  margin-bottom: 12px;
}
.v-devis-table { width: 100%; border-collapse: collapse; }
.v-devis-table th {
  text-align: left;
  font-size: 11.5px;           /* lisible sur mobile (était 10px) */
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--v-text-faint);
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--v-border);
}
.v-devis-table td {
  padding: 9px 0;
  border-bottom: 1px solid var(--v-border);
  color: var(--v-text);
}
.v-devis-table .num { text-align: right; white-space: nowrap; }
.v-devis-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
}
.v-devis-total .lbl { color: var(--v-text-muted); font-weight: 600; }
.v-devis-total .amt {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--v-violet);
}
.v-devis-sign {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px dashed var(--v-border);
}
.v-devis-sign small { color: var(--v-text-faint); font-size: 12px; line-height: 1.3; }
.v-devis-pill {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
  white-space: nowrap;
}

/* La colonne des cases doit passer PAR-DESSUS (calque) le bouton « En savoir plus ».
   `.v-hero > * { position:relative; z-index:1 }` fait de cette colonne un CONTEXTE
   D'EMPILEMENT à z-index 1 : un z-index élevé sur le pop-up enfant restait donc piégé
   SOUS le bouton (z-index 90). On remonte toute la colonne au-dessus du bouton (90) — mais
   sous la topbar fixe (95) pour que les cases glissent bien sous la nav au défilement. */
.v-hero-right { position: relative; z-index: 92; }

/* ── Grille 3×3 de cubes (colonne droite du hero) ── */
.v-hero-cubes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;          /* bloc de référence pour le panneau .v-cube-expand */
}
.v-hero-cube {
  position: relative;          /* la case ancre son propre pop-up (.v-cube-expand) qui s'ouvre juste en dessous */
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: 16px;
  padding: calc(var(--v-content) * 14 / 1080) calc(var(--v-content) * 10 / 1080);  /* échelle avec la colonne : à 1080 = 14px 10px (inchangé), grandit sur grands écrans */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: calc(var(--v-content) * 10 / 1080);                /* = 10px à 1080, proportionnel ensuite */
  aspect-ratio: 1 / 0.86;      /* panneaux légèrement moins hauts : gagne ~60px de hauteur
                                  totale pour loger le bouton au-dessus de la barre de nav */
  font-size: calc(var(--v-content) * 12.5 / 1080);        /* texte proportionnel à la taille de la case (= 12.5px à 1080) */
  font-weight: 600;
  line-height: 1.25;
  color: var(--v-text);
  cursor: pointer;
  outline: none;
  transition: transform .2s var(--v-ease), box-shadow .2s var(--v-ease), border-color .2s;
}
.v-hero-cube:hover {
  /* PAS de transform ici : un transform ferait de la case le bloc de référence du panneau
     .v-cube-expand (inset:0), qui ne couvrirait alors que la case et non la grille entière */
  border-color: var(--v-violet-accent);
  box-shadow: 0 14px 28px -16px rgba(76, 29, 149, .45);
}
.v-cube-ico {
  width: calc(var(--v-content) * 42 / 1080);              /* icône proportionnelle à la case (= 42px à 1080) */
  height: calc(var(--v-content) * 42 / 1080);
  border-radius: calc(var(--v-content) * 12 / 1080);
  background: var(--v-violet-soft);
  color: var(--v-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v-cube-ico svg { width: calc(var(--v-content) * 22 / 1080); height: calc(var(--v-content) * 22 / 1080); }

/* ── Pop-up détaillé : s'ouvre toujours VERS LE BAS, juste sous la case, et ne contient que le texte ── */
.v-cube-expand {
  --tx: -50%;                  /* centré sous la case par défaut (colonne du milieu) */
  position: absolute;
  top: calc(100% + 8px);       /* en dessous de la case, jamais par-dessus */
  left: 50%;
  z-index: 95;                 /* au-dessus du bouton « En savoir plus » (z-index 90) */
  width: max-content;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 7px;
  padding: 16px 18px;
  background: var(--v-white);
  border: 1px solid var(--v-violet-accent);
  border-radius: 14px;
  box-shadow: 0 26px 60px -22px rgba(76, 29, 149, .5);
  opacity: 0;
  visibility: hidden;
  transform: translateX(var(--tx)) translateY(-6px);
  pointer-events: none;        /* purement informatif : la souris reste sur la case, pas de piège */
  transition: opacity .2s var(--v-ease-out), transform .22s var(--v-ease-out), visibility 0s linear .22s;
}
.v-hero-cube:hover .v-cube-expand,
.v-hero-cube:focus-visible .v-cube-expand {
  opacity: 1;
  visibility: visible;
  transform: translateX(var(--tx)) translateY(0);
  transition: opacity .2s var(--v-ease-out), transform .22s var(--v-ease-out), visibility 0s;
}
/* Alignement horizontal par colonne pour ne pas déborder des bords de la grille */
.v-hero-cube:nth-child(3n+1) .v-cube-expand { left: 0; right: auto; --tx: 0%; }   /* colonne gauche : bord gauche aligné */
.v-hero-cube:nth-child(3n)   .v-cube-expand { left: auto; right: 0; --tx: 0%; }   /* colonne droite : bord droit aligné */
.v-cube-expand .v-cube-ico { display: none; }   /* « que le texte » : pas d'icône dans le pop-up */
.v-cube-expand h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.2;
  color: var(--v-text);
  margin: 0;
}
.v-cube-expand p {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--v-text-muted);
  margin: 0;
}

/* ── Bande « Migration gratuite » ── */
.v-migrate-section { padding-top: 30px; padding-bottom: 30px; }
.v-migrate-card {
  max-width: var(--v-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(120deg, var(--v-violet-soft) 0%, var(--v-cream-warm) 100%);
  border: 1px solid var(--v-violet-soft);
  border-radius: 24px;
  padding: 34px 38px;
}
.v-migrate-ico {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--v-violet);
  color: var(--v-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-migrate-ico svg { width: 32px; height: 32px; }
.v-migrate-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--v-violet);
  background: var(--v-white);
  border: 1px solid var(--v-violet-soft);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.v-migrate-text h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 8px; }
.v-migrate-text p { font-size: 16px; color: var(--v-text-muted); line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .v-hero {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
    min-height: 0;             /* fallback si svh non supporté */
    min-height: calc(100svh - var(--v-topbar-h)); /* mobile/tablette : le hero remplit le 1er écran quand le contenu est plus court (grands téléphones, tablettes) ; sinon il défile normalement */
    align-content: space-evenly; /* répartit titre / visuel / cases / bouton comme sur desktop */
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .v-hero .v-hero-title { white-space: normal; width: auto; justify-self: stretch; }   /* mobile : le titre repasse à la ligne (largeur auto, étiré) — trop long pour une seule ligne */
  .v-hero-left h1 { font-size: clamp(38px, 9vw, 56px); }
  .v-hero-list {
    text-align: left;
    max-width: 460px;
    margin-inline: auto;
    width: 100%;
  }
  /* Mobile : grille 3×3 COMPACTE (icône + libellé) — fini les 9 cartes dépliées
     qui faisaient ~3 écrans de haut. Un tap ouvre le panneau de détail sous la
     grille (classe .is-open posée par vitrine.js ; les cases sont statiques →
     le panneau absolu s'ancre sur la grille entière, pleine largeur). */
  .v-hero-cubes {
    grid-template-columns: repeat(3, 1fr);
    max-width: 460px;
    margin-inline: auto;
    position: relative;
    gap: 10px;
  }
  .v-hero-cube {
    position: static;            /* le panneau se réfère à la grille, pas à la case */
    aspect-ratio: auto;
    padding: 12px 6px 10px;
    gap: 8px;
    font-size: 11.5px;
    cursor: pointer;
  }
  .v-hero-cube:hover { transform: none; box-shadow: 0 14px 28px -16px rgba(76, 29, 149, .18); }
  .v-hero-cube .v-cube-ico { width: 36px; height: 36px; border-radius: 10px; }
  .v-hero-cube .v-cube-ico svg { width: 19px; height: 19px; }
  /* Panneau de détail : pleine largeur de la grille, juste en dessous */
  .v-hero-cubes .v-hero-cube .v-cube-expand {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    transform: none;
    transition: opacity .2s var(--v-ease-out);
  }
  /* le survol « fantôme » du tap ne suffit pas à ouvrir : seul .is-open ouvre */
  .v-hero-cubes .v-hero-cube:hover .v-cube-expand,
  .v-hero-cubes .v-hero-cube:focus-visible .v-cube-expand {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
  }
  .v-hero-cubes .v-hero-cube.is-open .v-cube-expand {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .v-cube-expand .v-cube-ico { display: none; }
  .v-cube-expand h3 { font-size: 15.5px; }

  /* Tableau comparatif des tarifs : défilement horizontal (sinon coupé par
     l'overflow-x:hidden de la page — la moitié droite était inaccessible) */
  .v-ptable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .v-ptable { min-width: 700px; }
  .v-hero-left { display: block; }
  .v-hero-photo { max-width: 460px; margin: 6px auto 0; height: auto; flex: none; }
  .v-hero-photo img { height: auto; }
  .v-hero-more { margin-top: 12px; }
  .v-showcase-grid { grid-template-columns: 1fr; }
  .v-migrate-card { flex-direction: column; text-align: center; gap: 18px; padding: 28px 22px; }
}

/* ── Tablette (641–960px) : on exploite la largeur au lieu de tout empiler
   comme sur téléphone — 2-3 colonnes là où le contenu respire. ── */
@media (min-width: 641px) and (max-width: 960px) {
  .v-hero .v-hero-title { font-size: clamp(26px, 3.6vw, 34px); }
  .v-hero-photo { max-width: 560px; }
  .v-hero-cubes { max-width: 560px; }
  .v-showcase-grid { grid-template-columns: 1fr 1fr; }   /* photo + maquette côte à côte */
  .v-feats { grid-template-columns: repeat(3, 1fr); }    /* « Pour qui » : 3 cartes en ligne */
  .v-flow { grid-template-columns: repeat(2, 1fr); }     /* workflow : 2×2 au lieu de 4 empilées */
  .v-values { grid-template-columns: repeat(3, 1fr); }   /* à propos : 3 valeurs en ligne */
  .v-contact-grid { grid-template-columns: 1.3fr 1fr; }  /* contact : formulaire + infos côte à côte */
}

/* Sous-titre « Aesthetic » du lockup MEDIBoard Aesthetic (ajouté en CSS,
   couvre toutes les pages vitrine sans toucher au HTML). */
.v-side-brand .v-brandtext { display: inline-block; }
.v-side-brand .v-brandtext::after {
  content: "Aesthetic";
  display: block;
  font-family: 'DM Sans', 'Inter', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--v-violet);
  margin-top: 1px;
}

/* ═════════════════════════════════════════════════════════════════════════
   COOKIES — bandeau de consentement RGPD/CNIL (injecté par vitrine.js)
   Posé en bas à gauche, AU-DESSUS de la floating bar (offset --v-cookie-offset
   recalculé en JS d'après la hauteur réelle de la barre, qui peut wrap mobile).
   ═════════════════════════════════════════════════════════════════════════ */
.v-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;                /* au-dessus de la floatbar (80) et du bouton hero (90) */
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  row-gap: 8px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--v-border);
  box-shadow:
    0 -18px 60px -22px rgba(76, 29, 149, .3),
    0 -3px 14px -6px rgba(0, 0, 0, .08);
  padding: 12px clamp(18px, 5vw, 56px);            /* bandeau COMPACT : ~1 ligne desktop, ~2 lignes mobile (était 22px) */
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  font-size: 13px;
  line-height: 1.5;
  color: var(--v-text);
  opacity: 0;
  translate: 0 100%;
  transition: opacity .4s var(--v-ease-out), translate .45s var(--v-ease-out);
}
.v-cookie-banner.is-visible { opacity: 1; translate: 0 0; }
.v-cookie-banner[hidden] { display: none; }
/* Téléphone : encore plus compact — icône seule (le texte explique), petite fonte */
@media (max-width: 640px) {
  .v-cookie-banner { column-gap: 12px; row-gap: 6px; font-size: 12.5px; padding-left: 16px; padding-right: 16px; }
  .v-cookie-title span { display: none; }
  .v-cookie-text { flex: 1 1 auto; min-width: 0; }
}

.v-cookie-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.v-cookie-title svg { width: 18px; height: 18px; color: var(--v-violet); flex-shrink: 0; }
.v-cookie-text { color: var(--v-text-muted); margin-bottom: 0; flex: 1 1 460px; min-width: 240px; max-width: 720px; }
.v-cookie-text a { color: var(--v-violet); text-decoration: underline; font-weight: 500; }

.v-cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.v-cookie-btn {
  flex: 0 0 auto;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 9px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s var(--v-ease), background .15s var(--v-ease), border-color .15s;
}
.v-cookie-btn--accept { background: var(--v-violet); color: var(--v-white); }
.v-cookie-btn--accept:hover { background: var(--v-violet-dark); transform: translateY(-1px); }
.v-cookie-btn--refuse { background: var(--v-violet-soft); color: var(--v-violet); border-color: var(--v-border); }
.v-cookie-btn--refuse:hover { background: #ece8ff; transform: translateY(-1px); }

/* Bouton discret pour rouvrir les préférences (retrait du consentement,
   aussi simple que de l'accorder — exigence CNIL) */
.v-cookie-reopen {
  position: fixed;
  left: 22px;
  bottom: var(--v-cookie-offset, calc(var(--v-bar-h) + 36px));
  z-index: 85;                 /* au-dessus de la floatbar (80), jamais en même temps que le bandeau */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--v-border);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--v-violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px -8px rgba(76, 29, 149, .4);
  opacity: .5;
  transition: opacity .2s var(--v-ease), transform .2s var(--v-ease);
}
.v-cookie-reopen:hover { opacity: 1; transform: translateY(-2px); }
.v-cookie-reopen svg { width: 20px; height: 20px; }
.v-cookie-reopen[hidden] { display: none; }

@media (max-width: 960px) {
  .v-cookie-banner { padding-left: 20px; padding-right: 20px; column-gap: 18px; }
  .v-cookie-text { flex-basis: 100%; }
  .v-cookie-actions { flex: 1 1 100%; }
  .v-cookie-btn { flex: 1 1 0; min-width: 0; }
  .v-cookie-reopen { left: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .v-cookie-banner { transition: none; translate: 0 0; }
}

/* ════════════════════════════════════════════════════════════════════════
   Carrousel « L'application en images » (#ecrans) — scroll-snap natif
   - swipe tactile / trackpad sans JS ; le JS n'ajoute que flèches + points.
   - chaque slide : visuel à gauche + légende (titre + description) à droite ;
     empilés verticalement en mobile.
   ════════════════════════════════════════════════════════════════════════ */
.v-carousel {
  position: relative;
  margin-top: 8px;
}

/* Cadre principal qui défile */
.v-carousel-viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border: 1px solid var(--v-border);
  border-radius: 26px;
  background: var(--v-white);
  box-shadow: 0 30px 70px -30px rgba(76, 29, 149, .28);
  -ms-overflow-style: none;     /* IE / vieux Edge */
  scrollbar-width: none;        /* Firefox */
}
.v-carousel-viewport::-webkit-scrollbar { display: none; }  /* Chrome / Safari */

.v-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;       /* visuel en haut, légende en dessous */
  margin: 0;
}

.v-carousel-media {
  background: var(--v-cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  /* hauteur fixe et généreuse → grandes photos + pas de saut de hauteur
     entre les slides (paysage et portrait occupent le même cadre) */
  height: clamp(380px, 60vh, 720px);
  padding: 26px;
  min-width: 0;
}
.v-carousel-media img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 14px 36px -16px rgba(15, 23, 42, .35);
}

.v-carousel-cap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 44px 34px;
  border-top: 1px solid var(--v-border);
  background: var(--v-white);
  min-width: 0;
}
.v-carousel-count {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--v-violet-accent);
}
.v-carousel-cap h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--v-violet);
  margin: 0;
}
.v-carousel-cap p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--v-text-muted);
  margin: 0;
}

/* Flèches de navigation */
.v-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--v-border);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--v-violet);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 26px -10px rgba(76, 29, 149, .45);
  transition: transform .2s var(--v-ease), background .2s var(--v-ease), color .2s var(--v-ease);
}
.v-carousel-nav:hover {
  background: var(--v-violet);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.v-carousel-nav svg { width: 22px; height: 22px; }
.v-carousel-prev { left: -18px; }
.v-carousel-next { right: -18px; }

/* Points indicateurs / sélecteurs */
.v-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}
.v-carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: var(--v-cream-warm);
  border: 1px solid var(--v-border);
  cursor: pointer;
  transition: width .25s var(--v-ease), background .25s var(--v-ease), border-color .25s;
}
.v-carousel-dot:hover { background: var(--v-violet-accent); }
.v-carousel-dot.active {
  width: 28px;
  background: var(--v-violet);
  border-color: var(--v-violet);
}

/* Mobile : cadre plus court, flèches resserrées */
@media (max-width: 860px) {
  .v-carousel-media { height: clamp(240px, 52vh, 440px); padding: 16px; }
  .v-carousel-cap { padding: 22px 22px 28px; }
  .v-carousel-nav {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .96);
  }
  .v-carousel-prev { left: 6px; }
  .v-carousel-next { right: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .v-carousel-viewport { scroll-behavior: auto; }
  .v-carousel-nav { transition: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   Pages compactes « v-fit » (tarifs, contact) — tout tient dans la hauteur
   d'un écran d'ordinateur portable : les CTA restent visibles sans scroller.
   Espacements resserrés, uniquement sur ces pages (body.v-fit).
   ════════════════════════════════════════════════════════════════════════ */
.v-fit .v-page-head { padding: 36px 56px 18px; }
.v-fit .v-page-head h1 { font-size: clamp(27px, 3.6vw, 39px); margin-bottom: 10px; }
.v-fit .v-page-head .v-lead { font-size: 16px; line-height: 1.5; }
.v-fit .v-section { padding-top: 8px; padding-bottom: 28px; }
.v-fit .v-main { padding-bottom: 40px; }

/* Tarifs — cartes plus denses */
.v-fit .v-plan { padding: 22px 24px; }
.v-fit .v-plan .v-plan-tag { margin-bottom: 12px; }
.v-fit .v-plan-price { margin-bottom: 12px; }
.v-fit .v-plan-price .amt { font-size: 42px; }
.v-fit .v-plan-features { gap: 5px; margin-bottom: 16px; }
.v-fit .v-plan-features li { font-size: 13px; line-height: 1.4; }

/* Contact — formulaire et bloc infos plus denses */
.v-fit .v-contact-grid { gap: 30px; padding-bottom: 24px; }
.v-fit .v-form { gap: 12px; }
.v-fit .v-form-row textarea { min-height: 88px; }
.v-fit .v-contact-info { padding: 24px; }
.v-fit .v-contact-info h3 { margin-top: 16px; }

/* Écran court (portables ~768px) : compaction renforcée pour que la page
   entière — CTA + bas de page — tienne sans scroll. */
@media (max-height: 820px) {
  .v-fit .v-page-head { padding: 18px 56px 8px; }
  .v-fit .v-page-head h1 { font-size: clamp(23px, 2.7vw, 32px); margin-bottom: 6px; }
  .v-fit .v-page-head .v-lead { font-size: 14px; line-height: 1.45; }
  .v-fit .v-section { padding-top: 6px; padding-bottom: 14px; }
  .v-fit .v-main { padding-bottom: 32px; }

  .v-fit .v-plan { padding: 16px 22px; }
  .v-fit .v-plan .v-plan-tag { margin-bottom: 8px; }
  .v-fit .v-plan-price { margin-bottom: 8px; }
  .v-fit .v-plan-price .amt { font-size: 36px; }
  .v-fit .v-plan-features { gap: 4px; margin-bottom: 10px; }
  .v-fit .v-plan-features li { font-size: 13px; line-height: 1.35; }

  .v-fit .v-contact-grid { gap: 24px; padding-bottom: 16px; }
  .v-fit .v-form { gap: 10px; }
  .v-fit .v-form-row textarea { min-height: 76px; }
  .v-fit .v-contact-info { padding: 20px; }
  .v-fit .v-contact-info h3 { margin-top: 12px; }
}

/* ═════════════════════════════════════════════════════════════════════════
   SCROLL-SPY — rail vertical à gauche (pointillés) synchronisé au scroll.
   Une ligne en pointillés gris relie les sections ; chaque section porte un
   gros point (gris au repos) ; le point de la section courante devient violet.
   Affiché uniquement sur grand écran (sinon il chevaucherait le contenu
   centré à 1080px). Révélé en même temps que le reste via body.v-phase-4.
   ═════════════════════════════════════════════════════════════════════════ */
.v-scrollspy {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 70;
  display: none;                 /* activé en grand écran (voir media query) */
  flex-direction: column;
  justify-content: center;
  width: 150px;
  pointer-events: none;          /* le conteneur ne bloque rien ; liens cliquables */
  opacity: 0;
  translate: -8px 0;
  transition: opacity .6s var(--v-ease-out) .2s, translate .6s var(--v-ease-out) .2s;
}
body.v-phase-4 .v-scrollspy { opacity: 1; translate: 0 0; }

.v-scrollspy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  pointer-events: auto;
}
/* la ligne en pointillés (gris) qui relie les points */
.v-scrollspy ul::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 20px;
  bottom: 20px;
  border-left: 2px dotted #d3cee2;
  transform: translateX(-1px);
}
.v-scrollspy li { margin: 0; }
.v-scrollspy a {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 40px;
  text-decoration: none;
  color: var(--v-text-muted);
  font-size: 13px;
  font-weight: 500;
  position: relative;
}
/* gros point de section : gris au repos, opaque pour masquer la ligne derrière */
.v-scrollspy .dot {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c4bfd6;
  position: relative;
  z-index: 1;
  transition: background .25s var(--v-ease), transform .25s var(--v-ease), box-shadow .25s var(--v-ease);
}
.v-scrollspy .lbl {
  white-space: nowrap;
  transition: color .25s var(--v-ease);
}
.v-scrollspy a:hover .dot { background: var(--v-violet-accent); }
.v-scrollspy a:hover .lbl { color: var(--v-text); }
/* section courante : gros point violet + halo, libellé violet */
.v-scrollspy a.active .dot {
  background: var(--v-violet);
  transform: scale(1.35);
  box-shadow: 0 0 0 5px var(--v-violet-soft);
}
.v-scrollspy a.active .lbl {
  color: var(--v-violet);
  font-weight: 700;
}
@media (min-width: 1440px) {
  .v-scrollspy {
    display: flex;
    left: calc((100vw - var(--v-content)) / 2 - 176px);
  }
}

/* ═════════════════════════════════════════════════════════════════════════
   TABLEAU COMPARATIF DES TARIFS (tarifs.html) — 3 offres en colonnes, une
   coche « ✓ » par fonctionnalité disponible. Colonne du milieu (« Cabinet + »)
   mise en avant. La table a une largeur minimale → défilement horizontal sur
   petit écran (le wrapper gère l'overflow).
   ═════════════════════════════════════════════════════════════════════════ */
.v-ptable-wrap {
  overflow-x: auto;
  border: 1px solid var(--v-border);
  border-radius: 20px;
  background: var(--v-white);
  box-shadow: 0 24px 60px -34px rgba(76, 29, 149, .4), 0 4px 16px -10px rgba(0, 0, 0, .08);
  -webkit-overflow-scrolling: touch;
}
.v-ptable {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.v-ptable thead th {
  vertical-align: top;
  padding: 24px 18px 22px;
  text-align: center;
  background: var(--v-cream);
  border-bottom: 1px solid var(--v-border);
}
.v-ptable .v-ptable-corner {
  vertical-align: bottom;
  text-align: left;
  width: 30%;
  min-width: 220px;
  background: var(--v-white);
}
.v-ptable-cap {
  font-size: 12px;
  font-weight: 700;
  color: var(--v-text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.v-ptable-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
/* Réserve la hauteur du badge dans les colonnes sans badge → noms + boutons alignés */
.v-ptable-plan:not(:has(.v-pp-badge))::before {
  content: "";
  display: block;
  height: 25px;
  margin-bottom: 2px;
}
.v-pp-badge {
  background: var(--v-violet);
  color: var(--v-white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 2px;
}
.v-pp-name { font-size: 19px; font-weight: 800; color: var(--v-text); }
.v-pp-users { font-size: 12.5px; font-weight: 600; color: var(--v-violet); }
.v-pp-price { margin: 6px 0 2px; color: var(--v-text); line-height: 1; }
.v-pp-price strong { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.v-pp-price span { font-size: 12.5px; color: var(--v-text-muted); margin-left: 4px; }
.v-pp-storage { font-size: 12px; color: var(--v-text-muted); line-height: 1.5; }
.v-pp-extra { color: var(--v-violet); font-weight: 600; }
.v-ptable-plan .v-btn { margin-top: 12px; width: 100%; justify-content: center; }
.v-ptable tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--v-text);
  padding: 13px 18px;
  border-bottom: 1px solid var(--v-border);
}
.v-ptable tbody td {
  text-align: center;
  padding: 13px 18px;
  border-bottom: 1px solid var(--v-border);
}
.v-ptable tbody tr:last-child th,
.v-ptable tbody tr:last-child td { border-bottom: none; }
.v-ck {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--v-violet-soft);
  color: var(--v-violet);
  font-size: 13px;
  font-weight: 800;
}
/* colonne mise en avant : « Cabinet + » = 3e cellule de chaque ligne */
.v-ptable thead th:nth-child(3) { background: var(--v-violet-soft); }
.v-ptable tbody td:nth-child(3) { background: rgba(245, 243, 255, .55); }
@media (max-width: 720px) {
  .v-ptable { font-size: 13.5px; }
  .v-ptable thead th, .v-ptable tbody th, .v-ptable tbody td { padding-left: 12px; padding-right: 12px; }
}

/* ═════════════════════════════════════════════════════════════════════════
   PIED DE PAGE COMMUN (5 pages vitrine) — défini en fin de fichier pour que
   `.v-sitefooter-nav a` batte `.v-body a { color: inherit }` (même spécificité,
   dernier déclaré gagne).
   ═════════════════════════════════════════════════════════════════════════ */
.v-sitefooter {
  border-top: 1px solid var(--v-border);
  background: var(--v-white);
}
.v-sitefooter-in {
  max-width: var(--v-content);
  margin: 0 auto;
  padding: 26px 56px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.v-sitefooter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
}
.v-sitefooter-nav a {
  color: var(--v-text-muted);
  font-size: 13.5px;
  font-weight: 500;
  transition: color .2s var(--v-ease);
}
.v-sitefooter-nav a:hover { color: var(--v-violet); }
.v-sitefooter-copy {
  color: var(--v-text-faint);
  font-size: 12.5px;
  margin: 0;
}
@media (max-width: 960px) {
  .v-sitefooter-in { padding: 22px 18px 26px; }
}

/* ── FAQ (tarifs) : accordéons <details> ── */
.v-faq {
  max-width: 760px;
  margin: 64px auto 0;
}
.v-faq-title {
  text-align: center;
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 22px;
}
.v-faq-item {
  background: var(--v-white);
  border: 1px solid var(--v-border);
  border-radius: 14px;
  padding: 0 20px;
  margin-bottom: 10px;
  transition: border-color .2s var(--v-ease);
}
.v-faq-item[open] { border-color: var(--v-violet-accent); }
.v-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--v-text);
}
.v-faq-item summary::-webkit-details-marker { display: none; }
.v-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v-violet-soft);
  color: var(--v-violet);
  font-weight: 700;
  transition: transform .2s var(--v-ease);
}
.v-faq-item[open] summary::after { content: "–"; }
.v-faq-item > p {
  margin: 0;
  padding: 0 0 16px;
  color: var(--v-text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.v-faq-item a { color: var(--v-violet); font-weight: 500; }
