/* ─────────────────────────────────────────────────────────────────────────────
   COORDIN.NET — VITRINE PREMIUM DARK
   Design : Dark Medical Luxury
───────────────────────────────────────────────────────────────────────────── */

/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --bg-deep:        #071528;
  --bg-mid:         #0C2140;
  --bg-card:        #122C52;
  --primary:        #1B4FD8;
  --primary-light:  #3D70F5;
  --accent:         #00D4AA;
  --accent-dim:     rgba(0,212,170,0.15);
  --gold:           #F5B942;
  --text:           #F2F7FF;
  --text-muted:     #B7C8EC;
  --text-dim:       #8EA4CC;
  --border:         rgba(0,212,170,0.12);
  --border-hot:     rgba(0,212,170,0.6);
  --glow-teal:      0 0 40px rgba(0,212,170,0.25);
  --glow-blue:      0 0 40px rgba(27,79,216,0.3);
  --radius:         14px;
  --radius-lg:      20px;
  --shadow:         0 8px 32px rgba(0,0,0,0.5);
  --container:      1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--text); }

img { max-width: 100%; display: block; }

/* ── Keyframes ───────────────────────────────────────────────────────────────── */
@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5%, 8%) scale(1.15); }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroBgPulse {
  0%   { opacity: .8; transform: scale(1); }
  100% { opacity: 1;  transform: scale(1.03); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(30px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Animated background orbs ────────────────────────────────────────────────── */
#vitrine-root {
  position: relative;
  z-index: 1;
}
#vitrine-root::before {
  content: '';
  position: fixed;
  top: -30%; left: -20%;
  width: 70vw; height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,79,216,0.08) 0%, transparent 70%);
  animation: orbDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
#vitrine-root::after {
  content: '';
  position: fixed;
  bottom: -20%; right: -20%;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,170,0.07) 0%, transparent 70%);
  animation: orbDrift 22s ease-in-out infinite alternate-reverse;
  pointer-events: none;
  z-index: 0;
}

/* ── Topbar ──────────────────────────────────────────────────────────────────── */
.v-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: .75rem 0;
  background: rgba(3,11,26,0.55);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(0,212,170,0.1);
  transition: background .35s, box-shadow .35s, border-color .35s;
}
.v-topbar.scrolled {
  background: rgba(3,11,26,0.96);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
  border-bottom-color: rgba(0,212,170,0.15);
}
.v-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Logo */
.v-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: .5rem;
  letter-spacing: -.02em;
  flex-shrink: 0;
  text-decoration: none;
  transition: filter .3s;
}
.v-logo:hover { filter: drop-shadow(0 0 14px rgba(0,212,170,.45)); }
.v-logo span { color: var(--accent); }
.v-logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 0 16px rgba(0,212,170,.25);
}
.v-logo:hover .v-logo-icon { transform: rotate(-8deg) scale(1.12); }

/* Nav desktop */
.v-topbar-nav {
  display: flex;
  align-items: center;
  flex: 1;
}
.v-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  list-style: none;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
}
.v-nav-item { position: relative; list-style: none; }
.v-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .48rem 1rem;
  color: rgba(232,240,254,.65);
  font-size: .84rem;
  font-weight: 500;
  border-radius: 9px;
  transition: color .22s, background .22s, box-shadow .22s;
  white-space: nowrap;
  letter-spacing: .01em;
  text-decoration: none;
}
.v-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent);
  transition: left .28s cubic-bezier(.4,0,.2,1), right .28s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.v-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.v-nav a:hover::after,
.v-nav a.active::after { left: .8rem; right: .8rem; }
.v-nav a.active { color: #fff; }

/* Caret dropdown indicator */
.v-nav-caret {
  width: 10px; height: 6px;
  flex-shrink: 0;
  color: rgba(232,240,254,.4);
  transition: transform .25s cubic-bezier(.4,0,.2,1), color .22s;
}
.v-nav-item--has-sub:hover .v-nav-caret { transform: rotate(180deg); color: var(--accent); }

/* ── Mega dropdown ─────────────────────────────────────────────────────────── */
.v-mega {
  position: absolute;
  top: calc(100% + .8rem);
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  width: 510px;
  background: rgba(5,10,28,.98);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1);
  z-index: 200;
  box-shadow: 0 40px 100px rgba(0,0,0,.75), 0 0 0 1px rgba(0,212,170,.07), inset 0 1px 0 rgba(255,255,255,.05);
}
.v-nav-item--has-sub:hover .v-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.v-mega-head {
  padding: .9rem 1.25rem .7rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.v-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .2rem;
  padding: .65rem .65rem .45rem;
}
.v-mega-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem .9rem;
  border-radius: 12px;
  color: rgba(232,240,254,.78);
  font-size: .81rem;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.v-mega-link:hover { background: rgba(255,255,255,.07); color: #fff; }
.v-mega-icon {
  font-size: 1.3rem;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  flex-shrink: 0;
  transition: background .18s, border-color .18s, transform .2s;
}
.v-mega-link:hover .v-mega-icon {
  background: rgba(0,212,170,.1);
  border-color: rgba(0,212,170,.2);
  transform: scale(1.08);
}
.v-mega-title { font-size: .81rem; font-weight: 600; color: #e8f0fe; line-height: 1.2; }
.v-mega-desc { font-size: .7rem; color: rgba(232,240,254,.38); margin-top: .1rem; }
.v-mega-foot {
  display: block;
  padding: .7rem 1.25rem;
  font-size: .78rem;
  color: var(--accent);
  border-top: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  transition: background .15s, letter-spacing .2s;
  font-weight: 500;
}
.v-mega-foot:hover { background: rgba(0,212,170,.06); letter-spacing: .02em; }

/* Blog nav item — accent pill */
.v-nav-item--blog a {
  color: var(--accent) !important;
  background: rgba(0,212,170,.07) !important;
  border: 1px solid rgba(0,212,170,.18);
  font-weight: 600;
}
.v-nav-item--blog a:hover {
  background: rgba(0,212,170,.14) !important;
  border-color: rgba(0,212,170,.38);
  box-shadow: 0 0 18px rgba(0,212,170,.18);
}
.v-nav-item--blog a::after { display: none !important; }

/* Mobile prestation quick-links (hidden desktop) */
.v-mobile-prestations { display: none; }

/* Topbar right */
.v-topbar-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

/* Login button in nav */
.btn-login-nav {
  white-space: nowrap;
}

/* Hamburger */
.v-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.v-hamburger:hover { background: rgba(255,255,255,.1); border-color: var(--border-hot); }
.v-hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s, width .3s;
  transform-origin: center;
}
.v-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v-hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.v-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Main ────────────────────────────────────────────────────────────────────── */
.v-main {
  padding-top: 70px;
  min-height: 100vh;
}

#vitrine-page { padding-top: 4.5rem; min-height: 100vh; }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.v-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.v-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity .2s;
}
.v-btn:hover::before { opacity: 1; }

.v-btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(27,79,216,0.35);
}
.v-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(27,79,216,0.5); color: #fff; }

.v-btn--accent {
  background: linear-gradient(135deg, var(--accent) 0%, #00B8A0 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(0,212,170,0.3);
}
.v-btn--accent:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,212,170,0.5); color: #000; }

.v-btn--teal { background: linear-gradient(135deg, var(--accent), #00B8A0); color: #000; }
.v-btn--teal:hover { transform: translateY(-2px); color: #000; }

.v-btn--ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.v-btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--border-hot); color: var(--text); transform: translateY(-1px); }

.v-btn--light { background: #fff; color: var(--primary); }
.v-btn--light:hover { background: #f0f4ff; transform: translateY(-2px); color: var(--primary); }

.v-btn--secondary {
  background: rgba(0,212,170,.12);
  border: 1px solid rgba(0,212,170,.3);
  color: var(--accent);
}
.v-btn--secondary:hover { background: rgba(0,212,170,.2); border-color: var(--accent); color: var(--accent); }

.v-btn--sm  { padding: .45rem .9rem; font-size: .8rem; }
.v-btn--lg  { padding: .9rem 2rem; font-size: 1rem; }
.v-btn--block { width: 100%; justify-content: center; }

.v-topbar .v-btn--primary { padding: .5rem 1.25rem; font-size: .85rem; }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.v-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #030B1A 0%, #071A3E 55%, #030B1A 100%);
  padding-top: 5rem;
}
.v-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(27,79,216,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0,212,170,0.08) 0%, transparent 60%);
  animation: heroBgPulse 6s ease-in-out infinite alternate;
}
.v-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,79,216,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,79,216,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 75%);
}
.v-hero-overlay { display: none; }
.v-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 4rem 0;
  animation: heroIn .9s cubic-bezier(.4,0,.2,1) both;
}
.v-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  background: rgba(0,212,170,.1);
  border: 1px solid rgba(0,212,170,.25);
  padding: .35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.75rem;
  animation: heroIn .7s .1s cubic-bezier(.4,0,.2,1) both;
}
.v-hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.v-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 1.25rem;
  animation: heroIn .8s .15s cubic-bezier(.4,0,.2,1) both;
  background: linear-gradient(270deg, var(--accent), #7DD3FC, var(--text), var(--accent));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroIn .8s .15s cubic-bezier(.4,0,.2,1) both, gradientShift 4s ease infinite;
}
.v-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, #7DD3FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 2.5rem;
  animation: heroIn .8s .2s cubic-bezier(.4,0,.2,1) both;
}
.v-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: heroIn .8s .3s cubic-bezier(.4,0,.2,1) both;
}
.v-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: heroIn .8s .4s cubic-bezier(.4,0,.2,1) both;
}
.v-hero-stat { text-align: left; }
.v-hero-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.v-hero-stat-label {
  font-size: .78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .25rem;
}

/* Hero avec image de fond */
.v-hero--img {
  background: var(--bg-deep);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.v-hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7,21,40,0.72) 0%, rgba(12,33,64,0.52) 60%, rgba(7,21,40,0.66) 100%);
  z-index: 1;
}
.v-hero--img .v-hero-inner { z-index: 2; }

/* Hero visuel photo */
.v-hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  overflow: hidden;
  pointer-events: none;
}
.v-hero-photo {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=900&q=70&auto=format&fit=crop') center/cover no-repeat;
  opacity: .18;
  filter: saturate(0.4) brightness(0.6);
}
.v-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-deep) 0%, transparent 40%);
}

/* ── Scroll reveal ───────────────────────────────────────────────────────────── */
.v-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.v-reveal.visible { opacity: 1; transform: translateY(0); }
.v-reveal-delay-1 { transition-delay: .1s; }
.v-reveal-delay-2 { transition-delay: .2s; }
.v-reveal-delay-3 { transition-delay: .3s; }
.v-reveal-delay-4 { transition-delay: .4s; }

/* ── Sections ────────────────────────────────────────────────────────────────── */
.v-section { padding: 5rem 0; position: relative; }
.v-section--alt { background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%); }
.v-section--dark { background: var(--bg-deep); }

.v-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  background: rgba(0,212,170,.08);
  border: 1px solid rgba(0,212,170,.2);
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.v-section-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.v-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: .75rem;
  line-height: 1.2;
}
.v-section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ── Feature cards ───────────────────────────────────────────────────────────── */
.v-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.v-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.v-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.v-feature-card:hover { border-color: var(--border-hot); transform: translateY(-5px); box-shadow: var(--glow-teal); }
.v-feature-card:hover::before { opacity: 1; }

/* Color variants */
.v-feature-card[data-color="green"]  { border-color: rgba(16,185,129,.2); }
.v-feature-card[data-color="green"]:hover  { border-color: rgba(16,185,129,.7); box-shadow: 0 0 40px rgba(16,185,129,.2); }
.v-feature-card[data-color="green"]::before  { background: linear-gradient(90deg, transparent, #10B981, transparent); }
.v-feature-card[data-color="gold"]   { border-color: rgba(245,185,66,.2); }
.v-feature-card[data-color="gold"]:hover   { border-color: rgba(245,185,66,.7); box-shadow: 0 0 40px rgba(245,185,66,.2); }
.v-feature-card[data-color="gold"]::before   { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.v-feature-card[data-color="blue"]   { border-color: rgba(61,112,245,.2); }
.v-feature-card[data-color="blue"]:hover   { border-color: rgba(61,112,245,.7); box-shadow: 0 0 40px rgba(61,112,245,.2); }
.v-feature-card[data-color="blue"]::before   { background: linear-gradient(90deg, transparent, var(--primary-light), transparent); }

.v-feature-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
  transition: transform .3s;
}
.v-feature-card:hover .v-feature-card-icon { transform: scale(1.15) rotate(-3deg); }
.v-feature-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.v-feature-card-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

a.v-feature-card--link { text-decoration: none; display: block; }
a.v-feature-card--link:hover { color: inherit; }
.v-feature-card-arrow {
  display: block;
  text-align: right;
  color: var(--accent);
  font-weight: 700;
  margin-top: 1rem;
  font-size: 1rem;
  transition: transform .2s;
}
.v-feature-card:hover .v-feature-card-arrow { transform: translateX(4px); }

/* ── Stats row ───────────────────────────────────────────────────────────────── */
.v-stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 2rem 0;
}
.v-stat-item { text-align: center; flex: 1; min-width: 120px; }
.v-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  letter-spacing: -.02em;
}
.v-stat-num--gold { color: var(--gold); }
.v-stat-num--blue { color: var(--primary-light); }
.v-stat-label { font-size: .77rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; margin-top: .4rem; }

/* ── Testimonial cards ───────────────────────────────────────────────────────── */
.v-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.v-testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.v-testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 6rem;
  color: var(--accent);
  opacity: .08;
  line-height: 1;
  pointer-events: none;
}
.v-testimonial-card:hover { border-color: var(--border-hot); transform: translateY(-4px); box-shadow: var(--glow-teal); }
.v-testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: .05em; }
.v-testimonial-text { font-size: .9rem; color: var(--text-muted); line-height: 1.7; font-style: italic; flex: 1; }
.v-testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.v-testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.v-testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.v-testimonial-name { font-weight: 700; font-size: .88rem; color: var(--text); }
.v-testimonial-role { font-size: .78rem; color: var(--text-dim); }

/* ── Process steps ───────────────────────────────────────────────────────────── */
.v-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 2.5rem;
}
.v-process-steps::before {
  content: '';
  position: absolute;
  top: 20px; left: 19px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary-light) 100%);
  opacity: .3;
}
.v-process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  position: relative;
}
.v-process-step-num {
  position: absolute;
  left: -2.5rem;
  top: 1.25rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  transition: background .3s, color .3s;
  z-index: 1;
}
.v-process-step:hover .v-process-step-num { background: var(--accent); color: #000; }
.v-process-step-body { flex: 1; }
.v-process-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .35rem;
}
.v-process-step-desc { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

/* Process steps horizontal */
.v-process-steps--horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  padding-left: 0;
  gap: 0;
  counter-reset: process-step;
}
.v-process-steps--horizontal::before { display: none; }
.v-process-steps--horizontal .v-process-step {
  flex: 1;
  min-width: 160px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 1.5rem 1rem;
}
.v-process-steps--horizontal .v-process-step::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 2rem;
  color: var(--accent);
  opacity: .4;
  font-size: 1.1rem;
}
.v-process-steps--horizontal .v-process-step:last-child::after { display: none; }
.v-process-steps--horizontal .v-process-step-num {
  position: static;
  margin-bottom: .75rem;
}

/* ── CTA Banner ──────────────────────────────────────────────────────────────── */
.v-cta-banner {
  margin: 3rem 0;
  background: linear-gradient(135deg, rgba(27,79,216,0.15) 0%, rgba(0,212,170,0.1) 100%);
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.v-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,170,.06) 0%, transparent 70%);
  pointer-events: none;
}
.v-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%; left: 20%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,79,216,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* CTA Banner strong variant */
.v-cta-banner--strong {
  background: linear-gradient(135deg, #1B4FD8 0%, #0A1E3C 50%, #00D4AA20 100%);
  border-color: rgba(0,212,170,0.4);
  box-shadow: 0 20px 60px rgba(27,79,216,0.3), var(--glow-teal);
}
.v-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .35rem;
  letter-spacing: -.02em;
}
.v-cta-text { color: var(--text-muted); font-size: .95rem; }
.v-cta-btns { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }

/* ── Two tracks ──────────────────────────────────────────────────────────────── */
.v-two-tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.v-track-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.v-track-card--client { border-top: 3px solid var(--accent); }
.v-track-card--pro    { border-top: 3px solid var(--primary-light); }
.v-track-card:hover { transform: translateY(-4px); box-shadow: var(--glow-teal); }
.v-track-badge {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .8rem;
  border-radius: 20px;
  width: fit-content;
}
.v-track-card--client .v-track-badge { background: rgba(0,212,170,.12); color: var(--accent); border: 1px solid rgba(0,212,170,.3); }
.v-track-card--pro    .v-track-badge { background: rgba(61,112,245,.12); color: var(--primary-light); border: 1px solid rgba(61,112,245,.3); }
.v-track-icon  { font-size: 2.5rem; line-height: 1; }
.v-track-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--text); }
.v-track-desc  { font-size: .9rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.v-track-items { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.v-track-items li { font-size: .82rem; color: var(--text-dim); display: flex; align-items: center; gap: .5rem; }
.v-track-items li::before { content: '→'; color: var(--accent); font-size: .7rem; }

/* ── Two paths (LPPR vs Marchand) ────────────────────────────────────────────── */
.v-two-paths-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #030B1A 0%, #071428 50%, #030B1A 100%);
  position: relative;
  overflow: hidden;
}
.v-two-paths-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,170,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.v-two-paths-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: .5rem;
  letter-spacing: -.025em;
}
.v-two-paths-sub { color: var(--text-muted); text-align: center; margin-bottom: 2.5rem; font-size: .95rem; }
.v-two-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.v-path-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .3s, transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
  position: relative;
  overflow: hidden;
}
.v-path-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(0,212,170,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.v-path-card--lppr::after     { background: radial-gradient(ellipse at top left, rgba(0,212,170,0.06) 0%, transparent 60%); }
.v-path-card--marchand::after { background: radial-gradient(ellipse at top left, rgba(27,79,216,0.08) 0%, transparent 60%); }
.v-path-card:hover { transform: translateY(-6px); }
.v-path-card--lppr:hover     { border-color: rgba(0,212,170,0.7); box-shadow: 0 20px 60px rgba(0,212,170,0.12); }
.v-path-card--marchand:hover { border-color: rgba(61,112,245,0.7); box-shadow: 0 20px 60px rgba(27,79,216,0.15); }
.v-path-card:hover::after { opacity: 1; }
.v-path-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .9rem;
  border-radius: 20px;
  width: fit-content;
}
.v-path-card--lppr .v-path-badge     { background: rgba(0,212,170,.12); color: var(--accent); border: 1px solid rgba(0,212,170,.3); }
.v-path-card--marchand .v-path-badge { background: rgba(61,112,245,.12); color: var(--primary-light); border: 1px solid rgba(61,112,245,.3); }
.v-path-icon     { font-size: 2.75rem; line-height: 1; margin-bottom: .25rem; }
.v-path-title    { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--text); letter-spacing: -.02em; }
.v-path-subtitle { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.v-path-desc     { font-size: .9rem; color: var(--text-dim); line-height: 1.65; }
.v-path-items    { list-style: none; margin: .25rem 0 .75rem; flex: 1; }
.v-path-items li {
  font-size: .85rem;
  color: var(--text-muted);
  padding: .35rem 0;
  display: flex;
  align-items: center;
  gap: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.v-path-items li:last-child { border-bottom: none; }
.v-path-items li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: .8rem; flex-shrink: 0; }

/* ── Text section (rich content) ─────────────────────────────────────────────── */
.v-text-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2rem 0;
}
.v-text-section h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--text); margin: 2rem 0 .75rem; letter-spacing: -.02em; }
.v-text-section h2:first-child { margin-top: 0; }
.v-text-section h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--accent); margin: 1.5rem 0 .5rem; }
.v-text-section p  { color: var(--text-muted); line-height: 1.8; margin-bottom: .9rem; }
.v-text-section strong { color: var(--text); }
.v-text-section ul, .v-text-section ol {
  margin: .5rem 0 1rem 0;
  padding-left: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: .4rem;
}
.v-text-section ul li, .v-text-section ol li {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}
.v-text-section ul li::before { content: '▸'; color: var(--accent); position: absolute; left: 0; }
.v-text-section ol { counter-reset: ol-counter; }
.v-text-section ol li { counter-increment: ol-counter; }
.v-text-section ol li::before { content: counter(ol-counter) '.'; color: var(--primary-light); position: absolute; left: 0; font-weight: 700; font-size: .8rem; }
.v-text-section blockquote { border-left: 3px solid var(--accent); padding-left: 1.25rem; margin: 1rem 0; font-style: italic; color: var(--text-dim); }
.v-text-section code { background: rgba(0,212,170,.1); color: var(--accent); padding: .1rem .4rem; border-radius: 4px; font-size: .85em; }
.v-text-section hr { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.v-text-section a { color: var(--accent); }

/* ── Tables ──────────────────────────────────────────────────────────────────── */
.v-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.v-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.v-table thead tr { background: rgba(0,212,170,.08); }
.v-table th { padding: .75rem 1rem; color: var(--accent); font-weight: 700; text-align: left; font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; border-bottom: 1px solid var(--border); }
.v-table td { padding: .7rem 1rem; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,.04); }
.v-table tbody tr:last-child td { border-bottom: none; }
.v-table tbody tr:hover td { background: rgba(255,255,255,.02); }

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */
.v-faq { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }
.v-faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s;
}
.v-faq-item:hover, .v-faq-item.open { border-color: rgba(0,212,170,.35); }
.v-faq-q {
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: .92rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  list-style: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.v-faq-q::after { content: '+'; color: var(--accent); font-size: 1.25rem; font-weight: 400; transition: transform .3s; flex-shrink: 0; }
.v-faq-item.open .v-faq-q::after { transform: rotate(45deg); }
.v-faq-a {
  padding: 0 1.5rem;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s;
}
.v-faq-item.open .v-faq-a { max-height: 400px; padding-bottom: 1.25rem; }

/* ── Contact ─────────────────────────────────────────────────────────────────── */
.v-contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2.5rem; align-items: start; }
.v-contact-info { display: flex; flex-direction: column; gap: .9rem; }
.v-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color .25s, transform .25s;
  text-decoration: none;
}
.v-contact-item:hover { border-color: var(--border-hot); transform: translateX(4px); color: var(--text); }
.v-contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.v-contact-item strong { display: block; font-size: .85rem; color: var(--text); font-weight: 600; }
.v-contact-item div { font-size: .83rem; color: var(--text-muted); line-height: 1.4; }
.v-contact-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.v-contact-form-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text); }
.v-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.v-contact-success {
  background: rgba(0,212,170,.1);
  border: 1px solid rgba(0,212,170,.3);
  color: var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .92rem;
}

/* ── Forms ───────────────────────────────────────────────────────────────────── */
.v-label { display: block; font-size: .8rem; font-weight: 600; color: var(--text-muted); margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .06em; }
.v-input {
  width: 100%;
  padding: .7rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: .9rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.v-input:focus { border-color: var(--accent); background: rgba(0,212,170,.04); box-shadow: 0 0 0 3px rgba(0,212,170,.12); }
.v-input::placeholder { color: var(--text-dim); }
select.v-input option { background: var(--bg-card); }
.v-textarea { resize: vertical; min-height: 100px; }
.v-form-row { display: flex; gap: .75rem; }
.v-form-col { flex: 1; }
.v-form-error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #FCA5A5; border-radius: 10px; padding: .75rem 1rem; font-size: .85rem; }
.v-checkout-rgpd { font-size: .77rem; color: var(--text-dim); line-height: 1.5; }
.v-input--sm { padding: .45rem .85rem; font-size: .85rem; }

/* ── Cartes contenu (réutilisées par le blog) ───────────────────────────────── */
.v-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .25s, transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.v-product-card:hover { border-color: var(--border-hot); transform: translateY(-4px); box-shadow: var(--glow-teal); }
.v-product-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.v-product-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.v-empty-content { text-align: center; padding: 4rem 2rem; color: var(--text-dim); }

/* ── Access cards ────────────────────────────────────────────────────────────── */
.v-access-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.v-access-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: border-color .25s, transform .3s;
  text-decoration: none;
  display: block;
}
.v-access-card:hover { border-color: var(--border-hot); transform: translateY(-4px); }
.v-access-card-icon  { font-size: 2rem; margin-bottom: .75rem; }
.v-access-card-title { font-family: 'Space Grotesk', sans-serif; font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.v-access-card-desc  { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

/* ── Blog ────────────────────────────────────────────────────────────────────── */
.v-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.v-blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, transform .3s;
  cursor: pointer;
}
.v-blog-card:hover { border-color: var(--border-hot); transform: translateY(-4px); }
.v-blog-thumb { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--bg-mid), var(--bg-card)); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.v-blog-body    { padding: 1.25rem; }
.v-blog-cat     { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: .4rem; }
.v-blog-title   { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: .4rem; }
.v-blog-excerpt { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }
.v-blog-meta    { font-size: .75rem; color: var(--text-dim); margin-top: .75rem; }

/* ── Loading state ───────────────────────────────────────────────────────────── */
.v-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  min-height: 40vh;
  gap: 1rem;
  color: var(--text-muted);
  font-size: .9rem;
}
.v-loading p { color: var(--text-muted); }
.v-loading-spinner,
.v-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  flex-shrink: 0;
}
.v-spinner { width: 24px; height: 24px; border-width: 2px; }

/* ── Badges ──────────────────────────────────────────────────────────────────── */
.v-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .2rem .65rem;
  border-radius: 20px;
}
.v-badge--accent  { background: rgba(0,212,170,.12); color: var(--accent); border: 1px solid rgba(0,212,170,.25); }
.v-badge--primary { background: rgba(27,79,216,.15); color: var(--primary-light); border: 1px solid rgba(27,79,216,.3); }
.v-badge--gold    { background: rgba(245,185,66,.12); color: var(--gold); border: 1px solid rgba(245,185,66,.25); }
.v-badge--green   { background: rgba(16,185,129,.12); color: #34d399; border: 1px solid rgba(16,185,129,.3); }
.v-badge--muted   { background: rgba(107,128,197,.1); color: var(--text-dim); border: 1px solid rgba(107,128,197,.2); }

/* ── Cookie banner ───────────────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  z-index: 999;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(10,30,60,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-teal);
  animation: slideUp .5s cubic-bezier(.4,0,.2,1) both;
}
#cookie-banner p { font-size: .83rem; color: var(--text-muted); line-height: 1.5; flex: 1; min-width: 180px; }
#cookie-banner a { color: var(--accent); }
.v-cookie-btns { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ── Page hero (sections internes) ───────────────────────────────────────────── */
.v-page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #071A3E 0%, #030B1A 100%);
  padding: 6rem 0 3rem;
}
.v-page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
  filter: saturate(0.5);
}
.v-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,11,26,.95) 50%, rgba(3,11,26,.5) 100%);
}
.v-page-hero-inner { position: relative; z-index: 2; }

/* ── Two columns ─────────────────────────────────────────────────────────────── */
.v-two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.v-two-columns img { border-radius: var(--radius-lg); }

/* ═══════════════════════════════════════════════════════════════════════════════
   ANNUAIRE SANTÉ
═══════════════════════════════════════════════════════════════════════════════ */

/* ── Barre de recherche ──────────────────────────────────────────────────────── */
.v-annuaire-search {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.v-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .6rem 1rem;
  gap: .6rem;
  transition: border-color .2s, box-shadow .2s;
}
.v-search-bar:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,170,.1); }
.v-search-icon  { font-size: 1rem; color: var(--text-dim); flex-shrink: 0; }
.v-search-input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-size: .95rem; font-family: inherit; }
.v-search-input::placeholder { color: var(--text-dim); }
.v-filter-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.v-chip {
  padding: .4rem .9rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.v-chip:hover { background: rgba(0,212,170,.08); border-color: rgba(0,212,170,.3); color: var(--accent); }
.v-chip--active { background: rgba(0,212,170,.12) !important; border-color: var(--accent) !important; color: var(--accent) !important; }
.v-filter-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.v-annuaire-stats { font-size: .82rem; color: var(--text-dim); margin-bottom: 1rem; }

/* ── Grille partenaires ──────────────────────────────────────────────────────── */
.v-partners-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.25rem; }

/* ── Carte partenaire ────────────────────────────────────────────────────────── */
.v-partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  cursor: pointer;
  transition: border-color .25s, transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  position: relative;
  overflow: hidden;
}
.v-partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(0,212,170,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.v-partner-card:hover { border-color: var(--border-hot); transform: translateY(-5px); box-shadow: 0 16px 50px rgba(0,212,170,.1); }
.v-partner-card:hover::before { opacity: 1; }
.v-partner-card:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.v-partner-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.v-partner-avatar {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.v-partner-avatar-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.v-partner-avatar-icon { position: relative; z-index: 1; }
.v-partner-badges { display: flex; flex-wrap: wrap; gap: .3rem; flex: 1; justify-content: flex-end; }
.v-partner-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text); letter-spacing: -.01em; line-height: 1.3; }
.v-partner-type     { font-size: .78rem; color: var(--text-muted); font-weight: 500; }
.v-partner-location { font-size: .8rem; color: var(--text-dim); }
.v-partner-delay    { font-size: .78rem; color: var(--text-dim); }
.v-partner-rating   { display: flex; align-items: center; gap: .4rem; font-size: .85rem; }
.v-partner-no-rating { font-size: .78rem; color: var(--text-dim); font-style: italic; }
.v-stars { color: var(--gold); letter-spacing: -.05em; }
.v-partner-rating-num { font-weight: 700; color: var(--text); }
.v-partner-rating-cnt { color: var(--text-dim); font-size: .75rem; }
.v-partner-specs { display: flex; flex-wrap: wrap; gap: .35rem; }
.v-spec-tag { font-size: .7rem; padding: .2rem .55rem; background: rgba(61,112,245,.1); border: 1px solid rgba(61,112,245,.2); border-radius: 20px; color: #7BB3FF; }
.v-partner-cta { margin-top: auto; align-self: flex-start; padding: .4rem .9rem; font-size: .8rem; }

/* ── Modal partenaire ────────────────────────────────────────────────────────── */
.v-partner-modal-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  animation: modalSlideIn .35s cubic-bezier(.4,0,.2,1);
}
.v-partner-modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 8px;
  padding: .4rem .9rem;
  font-size: .82rem;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.v-partner-modal-close:hover { background: rgba(255,255,255,.14); color: var(--text); }

/* ── PMD hero ────────────────────────────────────────────────────────────────── */
.v-pmd-hero { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.v-pmd-avatar {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.v-pmd-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v-pmd-info { flex: 1; }
.v-pmd-badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .5rem; }
.v-pmd-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--text); letter-spacing: -.025em; line-height: 1.2; }
.v-pmd-type { font-size: .9rem; color: var(--text-muted); margin: .25rem 0; }
.v-pmd-rating { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; font-size: .9rem; color: var(--text-muted); }
.v-pmd-rating strong { color: var(--gold); font-size: 1.1rem; }

/* ── PMD Tabs ────────────────────────────────────────────────────────────────── */
.v-pmd-tabs { display: flex; gap: .35rem; flex-wrap: wrap; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; padding-bottom: .5rem; }
.v-pmd-tab { padding: .5rem 1rem; background: none; border: 1px solid transparent; border-radius: 8px; color: var(--text-muted); font-size: .83rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.v-pmd-tab:hover { background: rgba(255,255,255,.06); color: var(--text); }
.v-pmd-tab.active { background: rgba(0,212,170,.1); border-color: rgba(0,212,170,.3); color: var(--accent); }

/* ── PMD content ─────────────────────────────────────────────────────────────── */
.v-pmd-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.v-pmd-desc     { color: var(--text-muted); font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; }
.v-pmd-specs    { margin-bottom: .75rem; font-size: .85rem; color: var(--text-muted); display: flex; flex-direction: column; gap: .4rem; }
.v-pmd-meta     { font-size: .83rem; color: var(--text-dim); margin-bottom: .4rem; }
.v-pmd-contacts { display: flex; flex-direction: column; gap: .4rem; margin: 1rem 0; }
.v-pmd-contact-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .9rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: .85rem;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.v-pmd-contact-btn:hover { border-color: var(--accent); background: rgba(0,212,170,.05); color: var(--text); }
.v-pmd-address    { font-size: .85rem; color: var(--text-muted); line-height: 1.8; }
.v-pmd-streetview { color: var(--accent); font-size: .8rem; font-weight: 600; }

/* ── Map ─────────────────────────────────────────────────────────────────────── */
.v-pmd-map { width: 100%; height: 280px; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; z-index: 0; }
.v-pmd-map-placeholder { height: 200px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.03); border: 1px dashed var(--border); border-radius: var(--radius); color: var(--text-dim); font-size: .88rem; }
.v-map-pin { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 4px 12px rgba(0,0,0,0.4); border: 2px solid rgba(255,255,255,.2); }
.v-map-pin > * { transform: rotate(45deg); }
.leaflet-tile { filter: brightness(.7) saturate(.6) invert(1) hue-rotate(200deg); }
.leaflet-container { background: var(--bg-deep); }

/* ── Horaires ────────────────────────────────────────────────────────────────── */
.v-horaires { display: flex; flex-direction: column; gap: .4rem; }
.v-horaire-row { display: flex; justify-content: space-between; align-items: center; padding: .55rem 1rem; background: rgba(255,255,255,.03); border-radius: 8px; font-size: .88rem; }
.v-horaire-jour { font-weight: 600; color: var(--text); text-transform: capitalize; }
.v-horaire-val  { color: var(--accent); }
.v-horaire-closed .v-horaire-jour { color: var(--text-dim); }
.v-horaire-closed .v-horaire-val  { color: var(--text-dim); }

/* ── Ratings / Avis ──────────────────────────────────────────────────────────── */
.v-ratings-list { display: flex; flex-direction: column; gap: 1rem; }
.v-rating-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.v-rating-header { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.v-rating-header strong { font-size: .9rem; color: var(--text); }
.v-rating-subs   { display: flex; flex-wrap: wrap; gap: .75rem; font-size: .78rem; color: var(--text-dim); }
.v-rating-comment { font-size: .88rem; color: var(--text-muted); line-height: 1.6; font-style: italic; }
.v-rating-reply { background: rgba(0,212,170,.06); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; padding: .75rem 1rem; font-size: .82rem; color: var(--text-muted); }
.v-rating-reply strong { color: var(--accent); display: block; margin-bottom: .3rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }

/* ── Star picker ─────────────────────────────────────────────────────────────── */
.v-star-field { display: flex; flex-direction: column; gap: .4rem; }
.v-star-picker { display: flex; gap: .3rem; align-items: center; }
.v-star { font-size: 1.5rem; color: var(--text-dim); cursor: pointer; transition: color .15s, transform .15s; user-select: none; line-height: 1; }
.v-star:hover, .v-star:hover ~ .v-star { color: var(--gold); }
.v-star-picker:hover .v-star { color: var(--gold); }
.v-star-picker .v-star:hover ~ .v-star { color: var(--text-dim); }

/* ── Wizard équipe de soins ──────────────────────────────────────────────────── */
.v-care-team-wizard { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.v-wizard-steps { display: flex; gap: 0; margin-bottom: 2.5rem; position: relative; }
.v-wizard-steps::before { content: ''; position: absolute; top: 20px; left: 0; right: 0; height: 2px; background: var(--border); z-index: 0; }
.v-wizard-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .4rem; position: relative; z-index: 1; }
.v-wizard-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-mid); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .85rem; color: var(--text-dim); transition: all .3s; }
.v-wizard-step.active .v-wizard-step-num { background: var(--accent); border-color: var(--accent); color: #000; }
.v-wizard-step.done .v-wizard-step-num   { background: rgba(0,212,170,.2); border-color: var(--accent); color: var(--accent); }
.v-wizard-step-label { font-size: .72rem; color: var(--text-dim); text-align: center; font-weight: 600; }
.v-wizard-step.active .v-wizard-step-label { color: var(--accent); }

/* ── Care team card ──────────────────────────────────────────────────────────── */
.v-care-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.v-care-member-card { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem; text-align: center; position: relative; }
.v-care-member-card .v-care-role { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: .5rem; }
.v-care-member-card .v-care-name { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: .25rem; }
.v-care-member-card .v-care-contact { font-size: .78rem; color: var(--text-muted); }
.v-care-member-card .v-care-change { position: absolute; top: .5rem; right: .5rem; background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: .8rem; transition: color .2s; }
.v-care-member-card .v-care-change:hover { color: var(--accent); }
.v-care-member-empty { border: 2px dashed var(--border); border-radius: var(--radius); padding: 1.5rem 1rem; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; }
.v-care-member-empty:hover { border-color: var(--accent); background: rgba(0,212,170,.04); }
.v-care-member-empty-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.v-care-member-empty p { font-size: .8rem; color: var(--text-dim); }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.v-footer {
  background: linear-gradient(180deg, var(--bg-mid) 0%, #020810 100%);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 1;
}
.v-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--primary-light), transparent);
  opacity: .4;
}
.v-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.v-footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.v-footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}
.v-footer-logo span { color: var(--accent); }
.v-footer-logo-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}
.v-footer-tagline { font-size: .88rem; color: var(--text-muted); line-height: 1.6; max-width: 260px; }
.v-footer-social { display: flex; gap: .5rem; margin-top: .5rem; }
.v-footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--text-muted);
  transition: background .2s, border-color .2s, color .2s;
  text-decoration: none;
}
.v-footer-social a:hover { background: rgba(0,212,170,.1); border-color: var(--border-hot); color: var(--accent); }
.v-footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 1rem;
}
.v-footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.v-footer-links a {
  font-size: .85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: block;
}
.v-footer-links a:hover { color: var(--accent); padding-left: 4px; }
.v-footer-bottom {
  max-width: var(--container);
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.v-footer-copy {
  font-size: .78rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.v-footer-copy a { color: var(--text-dim); }
.v-footer-copy a:hover { color: var(--accent); }
.v-footer-legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.v-footer-legal a { font-size: .78rem; color: var(--text-dim); text-decoration: none; transition: color .2s; }
.v-footer-legal a:hover { color: var(--accent); }

/* ── Responsive ──────────────────────────────────────────────────────────────── */

/* Desktop (> 900px) : nav visible, hamburger caché */
@media (min-width: 901px) {
  .v-hamburger { display: none !important; }
  .v-topbar-nav { display: flex; }
  .v-mobile-prestations { display: none !important; }
}

/* Tablet / Mobile (≤ 900px) */
@media (max-width: 900px) {
  .v-hamburger { display: flex; }
  .v-topbar-nav { display: none; }

  /* Full-screen overlay */
  #site-nav.open .v-topbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    inset: 0;
    padding-top: 90px;
    padding-bottom: 2rem;
    background: rgba(3,7,22,.97);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    z-index: 99;
    overflow-y: auto;
    animation: v-overlay-in .3s cubic-bezier(.4,0,.2,1);
  }
  @keyframes v-overlay-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* Nav list — centré, staggered */
  #site-nav.open .v-nav {
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    width: min(400px, calc(100% - 3rem));
    flex-wrap: nowrap;
  }
  #site-nav.open .v-nav li {
    opacity: 0;
    transform: translateX(-18px);
    animation: v-navitem-in .38s cubic-bezier(.4,0,.2,1) forwards;
  }
  #site-nav.open .v-nav li:nth-child(1) { animation-delay: .04s; }
  #site-nav.open .v-nav li:nth-child(2) { animation-delay: .09s; }
  #site-nav.open .v-nav li:nth-child(3) { animation-delay: .14s; }
  #site-nav.open .v-nav li:nth-child(4) { animation-delay: .19s; }
  #site-nav.open .v-nav li:nth-child(5) { animation-delay: .24s; }
  #site-nav.open .v-nav li:nth-child(6) { animation-delay: .29s; }
  #site-nav.open .v-nav li:nth-child(7) { animation-delay: .34s; }
  #site-nav.open .v-nav li:nth-child(8) { animation-delay: .39s; }
  @keyframes v-navitem-in {
    to { opacity: 1; transform: translateX(0); }
  }
  #site-nav.open .v-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: .9rem 1.4rem;
    font-size: 1.05rem;
    border-radius: 14px;
    color: rgba(232,240,254,.8);
    background: transparent;
  }
  #site-nav.open .v-nav a::after { display: none; }
  #site-nav.open .v-nav a:hover,
  #site-nav.open .v-nav a.active {
    background: rgba(255,255,255,.07);
    color: #fff;
  }
  #site-nav.open .v-nav-item--blog a {
    color: var(--accent) !important;
    background: rgba(0,212,170,.08) !important;
    border-color: rgba(0,212,170,.22);
  }
  #site-nav.open .v-nav-item--blog a:hover {
    background: rgba(0,212,170,.15) !important;
  }

  /* Mega panel masqué, on montre les prestations en pills */
  .v-mega { display: none !important; }
  .v-nav-caret { display: none; }
  .v-mobile-prestations {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    padding: .15rem 1.4rem .65rem;
  }
  .v-mobile-prest-link {
    font-size: .73rem;
    padding: .25rem .65rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 8px;
    color: rgba(232,240,254,.6);
    text-decoration: none;
    transition: background .15s, color .15s;
  }
  .v-mobile-prest-link:hover { background: rgba(255,255,255,.11); color: #fff; }

  /* Cart button dans overlay */
  #site-nav.open #cart-nav-btn {
    margin-top: 1.5rem;
    width: min(400px, calc(100% - 3rem));
    height: 48px;
    border-radius: 14px;
    border-width: 1px;
    font-size: 1rem;
    animation: v-navitem-in .38s .44s cubic-bezier(.4,0,.2,1) forwards;
    opacity: 0;
    transform: translateX(-18px);
  }

  .v-hero-visual { display: none; }
  .v-two-paths   { grid-template-columns: 1fr; }
  .v-two-tracks  { grid-template-columns: 1fr; }
  .v-footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .v-footer-brand { grid-column: 1 / -1; }
  .v-contact-layout { grid-template-columns: 1fr; }
  .v-two-columns { grid-template-columns: 1fr; }
  .v-pmd-two-col { grid-template-columns: 1fr; }
  .v-section { padding: 3.5rem 0; }
  .v-hero { min-height: 75vh; }
  .v-hero-stats { gap: 1.25rem; }
}

/* ── Hero image de fond ──────────────────────────────────────────────────────── */
.v-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroBgPulse 8s ease-in-out infinite alternate;
  filter: brightness(0.6) saturate(0.7);
}
.v-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  background: rgba(0,212,170,.1);
  border: 1px solid rgba(0,212,170,.25);
  padding: .35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

/* ── Hero stats inline ───────────────────────────────────────────────────────── */
.v-stat-inline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .2rem;
  min-width: 100px;
}
.v-stat-label-inline {
  font-size: .75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── Stats section (type stats) ──────────────────────────────────────────────── */
.v-stats-section { background: linear-gradient(135deg, var(--bg-mid) 0%, #071428 100%); }
.v-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.v-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.v-stat-card:hover { border-color: var(--border-hot); transform: translateY(-4px); box-shadow: var(--glow-teal); }
.v-stat-card .v-stat-num { font-size: 2.4rem; margin-bottom: .5rem; }
.v-stat-card .v-stat-label { margin-top: .5rem; }
.v-stat-desc { font-size: .8rem; color: var(--text-dim); margin-top: .4rem; }

/* ── Feature icon image ──────────────────────────────────────────────────────── */
.v-feature-icon-img {
  filter: invert(1) brightness(1.2);
  opacity: .85;
  width: 32px;
  height: 32px;
}
.v-feature-card[data-color="teal"] .v-feature-icon-img { filter: invert(1) sepia(1) saturate(3) hue-rotate(140deg); }
.v-feature-card[data-color="gold"] .v-feature-icon-img { filter: invert(1) sepia(1) saturate(4) hue-rotate(15deg) brightness(1.1); }

/* ── CTA Banner enrichi ──────────────────────────────────────────────────────── */
.v-cta-deco {
  position: absolute;
  right: -60px; top: -60px;
  width: 300px; height: 300px;
  pointer-events: none;
  opacity: .5;
}
.v-cta-text { flex: 1; }
.v-cta-actions {
  display: flex;
  gap: .75rem;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.v-btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.25);
  padding: .7rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
}
.v-btn--ghost-light:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

/* Mobile (< 600px) */
@media (max-width: 600px) {
  .v-topbar-inner { padding: 0 1rem; }
  .container { padding: 0 1rem; }
  .v-hero-inner { padding: 3rem 0; }
  .v-hero { min-height: 70vh; }
  .v-section { padding: 3rem 0; }
  .v-hero-stats { flex-wrap: wrap; gap: 1rem; }
  .v-features-grid { grid-template-columns: 1fr; }
  .v-partners-grid { grid-template-columns: 1fr; }
  .v-blog-grid { grid-template-columns: 1fr; }
  .v-testimonials-grid { grid-template-columns: 1fr; }
  .v-footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .v-footer-brand { grid-column: auto; }
  .v-footer-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .v-cta-banner { padding: 2rem 1.25rem; }
  .v-form-row { flex-direction: column; }
  .v-process-steps--horizontal { flex-direction: column; }
  .v-process-steps--horizontal .v-process-step::after { display: none; }
  #cookie-banner { bottom: 1rem; left: 1rem; right: 1rem; }
  .v-cookie-btns { width: 100%; justify-content: flex-end; }
  .v-stats-row { gap: 1.25rem; }
  .v-stat-num { font-size: 2rem; }
}

/* ── Wizard équipe de soins ──────────────────────────────────────────────────── */
.v-care-team-wizard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.v-wizard-steps {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
.v-wizard-steps::before {
  content: '';
  position: absolute;
  top: 20px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.v-wizard-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  position: relative;
  z-index: 1;
}
.v-wizard-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-mid);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--text-dim);
  transition: all .3s;
}
.v-wizard-step.active .v-wizard-step-num  { background: var(--accent); border-color: var(--accent); color: #000; }
.v-wizard-step.done .v-wizard-step-num    { background: rgba(0,212,170,.2); border-color: var(--accent); color: var(--accent); }
.v-wizard-step-label { font-size: .72rem; color: var(--text-dim); text-align: center; font-weight: 600; }
.v-wizard-step.active .v-wizard-step-label { color: var(--accent); }

/* ── Care team card ─────────────────────────────────────────────────────────── */
.v-care-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.v-care-member-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  text-align: center;
  position: relative;
}
.v-care-member-card .v-care-role {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .5rem;
}
.v-care-member-card .v-care-name { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: .25rem; }
.v-care-member-card .v-care-contact { font-size: .78rem; color: var(--text-muted); }
.v-care-member-card .v-care-change {
  position: absolute;
  top: .5rem; right: .5rem;
  background: none; border: none;
  color: var(--text-dim); cursor: pointer; font-size: .8rem;
  transition: color .2s;
}
.v-care-member-card .v-care-change:hover { color: var(--accent); }
.v-care-member-empty {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.v-care-member-empty:hover { border-color: var(--accent); background: rgba(0,212,170,.04); }
.v-care-member-empty-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.v-care-member-empty p { font-size: .8rem; color: var(--text-dim); }
.v-two-columns img { border-radius: var(--radius-lg); }
