/* Cloudbizz Voice — page produit (générée par scripts/generate-cloudbizz-voice.mjs).
   Même grammaire que la page sœur Microsoft 365 ; accent corail réservé aux états d'appel. */
@font-face {
  font-family: 'Cerebri Sans';
  src: url('/Fonts/Cerebri-Sans/CerebriSans-Light.woff2') format('woff2');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Cerebri Sans';
  src: url('/Fonts/Cerebri-Sans/CerebriSans-Book.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Cerebri Sans';
  src: url('/Fonts/Cerebri-Sans/CerebriSans-SemiBold.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

.cbv-page {
  --cbv-bg: #040815;
  --cbv-line: rgba(139, 166, 211, .17);
  --cbv-text: #cbd7eb;
  --cbv-muted: rgba(203, 215, 235, .72);
  --cbv-dim: rgba(203, 215, 235, .56);
  --cbv-coral: #ff7a59;
  --cbv-cyan: #24c9f0;
  --cbv-violet: #8b62ff;
  --cbv-green: #40dfb2;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--cbv-text);
  background:
    radial-gradient(circle at 66% 9%, rgba(44, 95, 222, .16), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(255, 122, 89, .06), transparent 22%),
    var(--cbv-bg);
  font-family: 'Cerebri Sans', Inter, system-ui, sans-serif;
  font-feature-settings: "cv01", "ss03";
  color-scheme: dark;
}

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

.cbv-page a { color: inherit; }
.cbv-page img, .cbv-page svg { display: block; }
.cbv-page button, .cbv-page select { font: inherit; }

.cbv-page .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.cbv-page :focus-visible {
  outline: 2px solid #7fb0ff;
  outline-offset: 3px;
  border-radius: 6px;
}

.cbv-skip {
  position: fixed;
  left: 18px;
  top: -64px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: #3f56ff;
  text-decoration: none;
  font-weight: 600;
}

.cbv-skip:focus { top: 14px; }

.cbv-shell {
  width: var(--cb-shell);
  max-width: 1520px;
  margin-inline: auto;
}

/* Header */
.cbv-topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  height: 76px;
  border-bottom: 1px solid rgba(120, 151, 204, .11);
  background: rgba(3, 8, 20, .82);
  backdrop-filter: blur(22px) saturate(130%);
  transition: background .25s ease, box-shadow .25s ease;
}

.cbv-topbar.is-scrolled {
  background: rgba(3, 8, 20, .94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

.cbv-topbar__inner {
  width: min(calc(100% - 120px), 1588px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3.8vw, 72px);
}

.cbv-brand { display: inline-flex; align-items: center; text-decoration: none; }

.cbv-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.8vw, 50px);
}

.cbv-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(239, 244, 255, .85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.cbv-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--cb-accent-gradient);
  transition: right .25s ease;
}

.cbv-nav a:hover::after,
.cbv-nav a:focus-visible::after { right: 0; }

.cbv-topbar__actions { display: flex; align-items: center; gap: 16px; }

/* Connexion : amélioré en menu par login-menu.js (panneau partagé du site). */
.cbv-login { display: inline-flex; align-items: center; min-height: 44px; color: #dbe6f7; font-size: 14px; font-weight: 600; white-space: nowrap; text-decoration: none; }
.cbv-login:hover { color: #fff; }
.cbv-login:focus-visible { outline: 2px solid #67e0b9; outline-offset: 4px; border-radius: 8px; }

.cbv-lang select {
  width: 64px;
  height: 44px;
  padding: 0 24px 0 14px;
  border: 1px solid rgba(148, 170, 211, .26);
  border-radius: 22px;
  color: #eef4ff;
  background: #07101e url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='m3 4.5 3 3 3-3' fill='none' stroke='%23b9c8e6' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 10px center / 12px;
  font-size: 13px;
  font-weight: 600;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.cbv-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1), border-color .25s ease, box-shadow .25s ease;
}

.cbv-btn:hover { transform: translateY(-2px); }
.cbv-btn--primary {
  background: linear-gradient(135deg, #6170ff 0%, #3e3cff 100%);
  box-shadow: 0 10px 34px rgba(74, 76, 255, .34), inset 0 1px rgba(255, 255, 255, .25);
}
.cbv-btn--primary:hover { box-shadow: 0 15px 42px rgba(74, 76, 255, .44); }
.cbv-btn--ghost { border-color: rgba(166, 185, 225, .42); background: rgba(7, 14, 27, .44); }
.cbv-btn--ghost:hover { border-color: rgba(166, 185, 225, .7); }
.cbv-btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.cbv-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 170, 211, .2);
  border-radius: 10px;
  color: #fff;
  background: rgba(7, 15, 29, .72);
  cursor: pointer;
}

.cbv-menu-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.cbv-breadcrumb {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cbv-dim);
  font-size: 13px;
}

.cbv-breadcrumb a { text-decoration: none; }
.cbv-breadcrumb a:hover { color: #fff; }
.cbv-breadcrumb b { color: #8db4ff; font-weight: 600; }

/* Hero */
.cbv-hero { position: relative; padding: 22px 0 58px; }
.cbv-hero::before {
  content: '';
  position: absolute;
  inset: -54px 0 auto;
  height: 720px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(78, 127, 238, .06) 50%, transparent 50.1%),
    radial-gradient(ellipse at 68% 32%, rgba(40, 102, 229, .16), transparent 41%);
  mask-image: linear-gradient(#000 0 72%, transparent);
}

.cbv-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, .92fr) minmax(640px, 1.3fr);
  align-items: start;
  gap: clamp(40px, 4vw, 78px);
}

.cbv-hero__copy { padding-top: 8px; }

.cbv-release {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 23px;
  padding: 4px 14px 4px 6px;
  border: 1px solid rgba(255, 122, 89, .28);
  border-radius: 99px;
  color: rgba(223, 230, 246, .9);
  background: rgba(52, 26, 34, .38);
  font-size: 13px;
}

.cbv-release strong {
  padding: 5px 10px;
  border-radius: 99px;
  color: #fff;
  background: linear-gradient(135deg, #ff8a5c, #e3486b);
  font-size: 10px;
  letter-spacing: .06em;
}

.cbv-hero h1,
.cbv-section-title,
.cbv-side-title,
.cbv-cta h2 {
  margin: 0;
  color: var(--cb-display-ink-dark);
  font-family: var(--cb-display-font);
  font-weight: var(--cb-display-weight);
  letter-spacing: var(--cb-display-tracking);
  line-height: var(--cb-display-leading);
}

.cbv-hero h1 { max-width: 680px; font-size: var(--cb-title-hero); }
.cbv-hero h1 em,
.cbv-section-title em,
.cbv-side-title em,
.cbv-cta h2 em {
  font-style: normal;
  color: transparent;
  background: var(--cb-accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.cbv-hero__lead {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--cb-lead-ink-dark);
  font-size: 18px;
  font-weight: var(--cb-lead-weight);
  letter-spacing: var(--cb-lead-tracking);
  line-height: 1.55;
}

.cbv-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }

.cbv-platforms {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  margin-top: 32px;
}

.cbv-platforms__label {
  flex: 0 0 auto;
  padding-right: 18px;
  border-right: 1px solid rgba(143, 166, 208, .2);
  color: rgba(225, 232, 246, .72);
  font-size: 14px;
  font-weight: 600;
}

.cbv-platforms ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.cbv-platforms li {
  padding: 7px 11px;
  border: 1px solid rgba(136, 161, 205, .2);
  border-radius: 99px;
  color: rgba(222, 231, 246, .8);
  background: rgba(10, 19, 34, .6);
  font-size: 12px;
}

/* App preview */
.cbv-product {
  position: relative;
  min-width: 0;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .36));
}

.cbv-product::before {
  content: '';
  position: absolute;
  inset: -15% -8%;
  z-index: -1;
  background: radial-gradient(circle, rgba(47, 111, 245, .15), transparent 64%);
}

.cbv-app {
  overflow: hidden;
  border: 1px solid rgba(84, 128, 213, .32);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(9, 17, 31, .98), rgba(6, 14, 25, .95));
  box-shadow: inset 0 1px rgba(124, 164, 255, .3), 0 0 0 1px rgba(22, 57, 120, .23);
}

.cbv-app__bar {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(137, 163, 204, .13);
}

.cbv-app__logo { color: #f2f4f8; font-size: 18px; font-weight: 600; letter-spacing: -.03em; }
.cbv-app__logo b { color: var(--cbv-coral); font-weight: 600; }
.cbv-app__status { display: inline-flex; align-items: center; gap: 7px; padding: 5px 10px; border-radius: 99px; color: #52e0b4; background: rgba(38, 190, 140, .12); font-size: 11px; }
.cbv-app__status i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.cbv-app__dots { display: flex; gap: 8px; margin-left: auto; }
.cbv-app__dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(164, 188, 231, .42); }

.cbv-app__body { display: grid; grid-template-columns: 96px minmax(190px, .9fr) minmax(0, 1.25fr); min-height: 440px; }

.cbv-app__rail { display: grid; align-content: start; gap: 4px; padding: 14px 8px; border-right: 1px solid rgba(137, 163, 204, .1); }
.cbv-app__rail span { display: grid; justify-items: center; gap: 5px; padding: 9px 4px; border-radius: 9px; color: rgba(204, 217, 239, .6); font-size: 10.5px; text-align: center; }
.cbv-app__rail svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.cbv-app__rail .is-active { color: #ffb29c; background: rgba(255, 122, 89, .12); }

.cbv-app__contacts { min-width: 0; display: grid; align-content: start; gap: 4px; padding: 14px 12px; border-right: 1px solid rgba(137, 163, 204, .1); }
.cbv-app__search { display: block; margin-bottom: 8px; padding: 9px 11px; overflow: hidden; border: 1px solid rgba(139, 166, 211, .15); border-radius: 8px; color: var(--cbv-dim); background: rgba(16, 27, 45, .6); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.cbv-app__label { margin: 4px 4px 6px; color: rgba(210, 222, 241, .5); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.cbv-contact { min-width: 0; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 4px 10px; padding: 8px 6px; border-radius: 8px; }
.cbv-contact:nth-of-type(2) { background: rgba(64, 105, 218, .12); }
.cbv-contact__copy { min-width: 0; }
.cbv-contact__copy b { display: block; overflow: hidden; color: #eaf0fb; font-size: 12px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.cbv-contact__copy small { display: block; margin-top: 2px; overflow: hidden; color: var(--cbv-dim); font-size: 10.5px; text-overflow: ellipsis; white-space: nowrap; }
.cbv-contact__state { grid-column: 2; font-size: 10px; font-style: normal; }
.cbv-contact__state--available { color: #52e0b4; }
.cbv-contact__state--busy { color: #ff9b80; }
.cbv-contact__state--away { color: #f5c969; }
.cbv-contact__state--dnd { color: #ff7f97; }

.cbv-avatar { position: relative; width: 34px; height: 34px; display: grid; place-items: center; grid-row: span 2; border-radius: 50%; color: #e8eefc; background: linear-gradient(145deg, #32467e, #1c2a4f); font-size: 11px; font-weight: 600; }
.cbv-avatar--small { width: 28px; height: 28px; font-size: 10px; }
.cbv-presence { position: absolute; right: -1px; bottom: -1px; width: 11px; height: 11px; border: 2px solid #09111f; border-radius: 50%; }
.cbv-presence--available { background: #3ddca9; }
.cbv-presence--busy { background: var(--cbv-coral); }
.cbv-presence--away { background: #f5c24f; }
.cbv-presence--dnd { background: #ff5577; }

.cbv-app__main { min-width: 0; display: grid; align-content: start; gap: 12px; padding: 16px; }

.cbv-call {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 122, 89, .32);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 89, .16), transparent 62%),
    rgba(16, 24, 42, .82);
  text-align: center;
}

.cbv-call__label { display: inline-flex; align-items: center; gap: 7px; color: #ffb29c; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; }
.cbv-call__label i { width: 7px; height: 7px; border-radius: 50%; background: var(--cbv-coral); box-shadow: 0 0 10px var(--cbv-coral); animation: cbv-pulse 1.8s ease-in-out infinite; }
.cbv-call__avatar { width: 54px; height: 54px; display: grid; place-items: center; margin: 12px 0 8px; border-radius: 50%; color: #ffd4c7; background: linear-gradient(145deg, rgba(255, 122, 89, .35), rgba(227, 72, 107, .25)); box-shadow: 0 0 0 7px rgba(255, 122, 89, .08); }
.cbv-call__avatar svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.cbv-call__name { color: #f4f7fc; font-size: 15px; font-weight: 600; }
.cbv-call__detail { margin-top: 4px; color: var(--cbv-dim); font-size: 11px; }
.cbv-call__time { margin-top: 8px; color: #eaf0fb; font-family: ui-monospace, SFMono-Regular, monospace; font-size: 18px; }

.cbv-wave { height: 26px; display: flex; align-items: center; gap: 3px; margin: 8px 0 12px; }
.cbv-wave i { width: 3px; height: 30%; border-radius: 3px; background: linear-gradient(#ffb29c, #ff7a59); animation: cbv-wave 1.4s ease-in-out infinite; }
.cbv-wave i:nth-child(3n) { height: 70%; animation-delay: -.3s; }
.cbv-wave i:nth-child(3n + 1) { height: 45%; animation-delay: -.7s; }
.cbv-wave i:nth-child(4n) { height: 90%; animation-delay: -1s; }

.cbv-call__controls { width: 100%; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 6px; }
.cbv-call__controls > span { min-width: 0; display: grid; justify-items: center; gap: 5px; }
.cbv-call__controls svg { width: 34px; height: 34px; padding: 8px; border-radius: 50%; fill: none; stroke: #dce6f7; stroke-width: 1.7; background: rgba(125, 150, 200, .14); }
.cbv-call__controls small { max-width: 100%; overflow: hidden; color: var(--cbv-dim); font-size: 9.5px; text-overflow: ellipsis; white-space: nowrap; }
.cbv-call__controls .is-on svg { stroke: #fff; background: rgba(255, 122, 89, .45); }
.cbv-call__controls .is-hangup svg { stroke: #fff; background: #e3486b; }

.cbv-queue { display: grid; grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr)); align-items: center; gap: 8px; padding: 12px; border: 1px solid rgba(139, 166, 211, .14); border-radius: 12px; background: rgba(16, 27, 45, .62); }
.cbv-queue strong { display: flex; align-items: center; gap: 8px; color: #eaf0fb; font-size: 12px; font-weight: 600; }
.cbv-queue strong svg { width: 18px; height: 18px; fill: none; stroke: var(--cbv-cyan); stroke-width: 1.6; }
.cbv-queue span { min-width: 0; color: var(--cbv-dim); font-size: 10px; line-height: 1.3; }
.cbv-queue b { display: block; color: #eef4ff; font-size: 15px; font-weight: 600; }

.cbv-bubble { display: flex; align-items: flex-start; gap: 10px; padding: 11px 12px; border: 1px solid rgba(139, 166, 211, .12); border-radius: 12px 12px 12px 4px; background: rgba(64, 105, 218, .12); }
.cbv-bubble .cbv-avatar { grid-row: auto; flex: 0 0 auto; }
.cbv-bubble > span:last-child { min-width: 0; color: rgba(222, 231, 246, .84); font-size: 12px; line-height: 1.45; }
.cbv-bubble b { display: block; color: #9dbbff; font-size: 11px; font-weight: 600; }

.cbv-activity { position: absolute; right: -150px; top: 60px; width: 178px; display: grid; gap: 12px; }
.cbv-activity::before { content: ''; position: absolute; left: -26px; top: 17px; bottom: 17px; border-left: 1px dashed rgba(78, 143, 255, .5); }
.cbv-activity-card { position: relative; min-height: 76px; padding: 13px 12px 11px 49px; border: 1px solid rgba(130, 158, 207, .23); border-radius: 10px; background: rgba(9, 17, 31, .9); box-shadow: 0 14px 25px rgba(0, 0, 0, .18); }
.cbv-activity-card::before { content: ''; position: absolute; left: -32px; top: 24px; width: 7px; height: 7px; border-radius: 50%; background: var(--activity); box-shadow: 0 0 12px var(--activity); }
.cbv-activity-card__icon { position: absolute; left: 12px; top: 13px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: var(--activity); background: color-mix(in srgb, var(--activity) 14%, transparent); }
.cbv-activity-card__icon svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.cbv-activity-card b { display: block; color: #eef3fb; font-size: 11px; }
.cbv-activity-card span { display: block; margin-top: 4px; color: var(--cbv-muted); font-size: 10px; line-height: 1.35; }
.cbv-activity-card small { display: block; margin-top: 4px; color: var(--cbv-dim); font-size: 9px; text-align: right; }
.cbv-activity-card--coral { --activity: #ff7a59; }
.cbv-activity-card--violet { --activity: #9169ff; }
.cbv-activity-card--cyan { --activity: #33bdfa; }
.cbv-activity-card--green { --activity: #36dca6; }

/* Benefits */
.cbv-benefits { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 13px; margin-top: 46px; }
.cbv-benefit { min-height: 150px; padding: 24px 18px 18px; border: 1px solid var(--cbv-line); border-radius: 12px; background: linear-gradient(145deg, rgba(13, 23, 40, .75), rgba(7, 14, 27, .7)); }
.cbv-benefit svg { width: 31px; height: 31px; margin-bottom: 14px; fill: none; stroke: var(--benefit); stroke-width: 1.6; filter: drop-shadow(0 0 8px color-mix(in srgb, var(--benefit) 30%, transparent)); }
.cbv-benefit h3 { margin: 0; color: #e5edf9; font-size: 14px; font-weight: 600; letter-spacing: -.01em; line-height: 1.35; }
.cbv-benefit h3 span { color: var(--cbv-dim); }
.cbv-benefit p { margin: 12px 0 0; color: var(--cbv-muted); font-size: 12.5px; line-height: 1.55; }

.cbv-proofbar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 0; padding: 28px 0 20px; border-bottom: 1px solid rgba(133, 158, 202, .12); color: var(--cbv-dim); font-size: 13px; list-style: none; }
.cbv-proofbar li { display: flex; align-items: center; gap: 12px; }
.cbv-proofbar li::before { content: ''; flex: 1; height: 1px; background: rgba(131, 154, 196, .16); }
.cbv-proofbar i { width: 6px; height: 6px; border-radius: 50%; background: #34dca6; box-shadow: 0 0 9px #34dca6; }

/* Sections */
.cbv-section { position: relative; padding: 120px 0; }
.cbv-section--tinted { background: linear-gradient(180deg, rgba(8, 15, 29, .25), rgba(13, 21, 37, .62), rgba(8, 15, 29, .25)); }
.cbv-section--line { border-top: 1px solid rgba(133, 158, 202, .1); }
.cbv-section-head { max-width: 920px; margin: 0 auto 55px; text-align: center; }
.cbv-eyebrow { margin: 0 0 16px; color: var(--cb-eyebrow-ink-dark); font-size: var(--cb-eyebrow-size); font-weight: var(--cb-eyebrow-weight); letter-spacing: var(--cb-eyebrow-tracking); text-transform: uppercase; }
.cbv-section-title { font-size: var(--cb-title-section); }
.cbv-section-lead { max-width: 760px; margin: 21px auto 0; color: var(--cb-lead-ink-dark); font-size: var(--cb-lead-section); font-weight: var(--cb-lead-weight); letter-spacing: var(--cb-lead-tracking); line-height: 1.4; }
.cbv-side-title { font-size: var(--cb-title-section-side); }
.cbv-side-copy > p:not(.cbv-eyebrow) { margin: 24px 0 0; color: var(--cbv-muted); font-size: 18px; line-height: 1.65; }

/* Mobility */
.cbv-mobility { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.cbv-photo { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(84, 128, 213, .28); border-radius: 22px; background: #0a1322; box-shadow: 0 34px 80px rgba(0, 0, 0, .38); }
.cbv-photo img { width: 100%; height: auto; aspect-ratio: 16 / 12.5; object-fit: cover; object-position: 64% 40%; }
.cbv-photo::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(4, 8, 21, .55), transparent 48%), linear-gradient(0deg, rgba(4, 8, 21, .5), transparent 35%); }
.cbv-photo__call { position: absolute; z-index: 1; left: 28px; bottom: 28px; display: flex; align-items: center; gap: 12px; max-width: calc(100% - 56px); padding: 12px 16px 12px 12px; border: 1px solid rgba(255, 122, 89, .35); border-radius: 14px; background: rgba(8, 14, 27, .86); backdrop-filter: blur(12px); box-shadow: 0 18px 38px rgba(0, 0, 0, .3); }
.cbv-photo__icon { width: 40px; height: 40px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #ff8a5c, #e3486b); }
.cbv-photo__icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.cbv-photo__call b { display: block; color: #f3f6fc; font-size: 14px; font-weight: 600; }
.cbv-photo__call small { display: block; margin-top: 2px; color: var(--cbv-muted); font-size: 12px; }
.cbv-photo__call em { margin-left: 8px; padding: 5px 9px; border-radius: 99px; color: #52e0b4; background: rgba(38, 190, 140, .14); font-size: 11px; font-style: normal; white-space: nowrap; }
.cbv-photo figcaption { position: absolute; z-index: 1; right: 16px; top: 14px; padding: 4px 9px; border-radius: 99px; color: rgba(230, 237, 250, .82); background: rgba(4, 8, 21, .62); font-size: 11px; }

.cbv-outcome-list { display: grid; gap: 12px; margin-top: 32px; }
.cbv-outcome { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 17px; padding: 16px 20px; border: 1px solid var(--cbv-line); border-radius: 14px; background: rgba(10, 19, 34, .7); }
.cbv-outcome__number { color: rgba(255, 150, 120, .8); font-family: ui-monospace, SFMono-Regular, monospace; font-size: 12px; }
.cbv-outcome h3 { margin: 0; color: #edf3fd; font-size: 17px; font-weight: 600; }
.cbv-outcome p { margin: 5px 0 0; color: var(--cbv-muted); font-size: 14px; line-height: 1.45; }

/* Capabilities */
.cbv-capabilities { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.cbv-capability { position: relative; min-height: 250px; overflow: hidden; padding: 30px; border: 1px solid var(--cbv-line); border-radius: 18px; background: linear-gradient(145deg, rgba(12, 23, 41, .9), rgba(7, 15, 28, .84)); }
.cbv-capability::after { content: ''; position: absolute; width: 220px; height: 220px; right: -100px; bottom: -120px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--cap) 15%, transparent), transparent 67%); pointer-events: none; }
.cbv-capability--wide { grid-column: span 7; }
.cbv-capability--narrow { grid-column: span 5; }
.cbv-capability--half { grid-column: span 6; }
.cbv-capability__icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 28px; border: 1px solid color-mix(in srgb, var(--cap) 35%, transparent); border-radius: 13px; color: var(--cap); background: color-mix(in srgb, var(--cap) 10%, transparent); }
.cbv-capability__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.cbv-capability h3 { margin: 0; color: #edf3fd; font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.cbv-capability p { max-width: 580px; margin: 13px 0 0; color: var(--cbv-muted); font-size: 15px; line-height: 1.6; }
.cbv-capability ul { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.cbv-capability li { padding: 6px 10px; border: 1px solid rgba(136, 161, 205, .16); border-radius: 99px; color: rgba(215, 225, 242, .78); background: rgba(3, 8, 17, .34); font-size: 12px; }

/* Editions */
.cbv-editions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cbv-edition { position: relative; overflow: hidden; padding: 34px 30px 30px; border: 1px solid var(--cbv-line); border-radius: 20px; background: linear-gradient(160deg, color-mix(in srgb, var(--edition) 12%, rgba(10, 19, 34, .9)), rgba(7, 14, 27, .86) 55%); }
.cbv-edition::before { content: ''; position: absolute; inset: 0 0 auto; height: 2px; background: linear-gradient(90deg, var(--edition), transparent 80%); }
.cbv-edition__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; color: var(--edition); background: color-mix(in srgb, var(--edition) 12%, transparent); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--edition) 30%, transparent); }
.cbv-edition__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.cbv-edition__audience { margin: 26px 0 6px; color: var(--cbv-dim); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.cbv-edition h3 { margin: 0; color: #f0f4fc; font-size: 28px; font-weight: 600; letter-spacing: -.03em; }
.cbv-edition > p:not(.cbv-edition__audience) { margin: 12px 0 0; color: var(--cbv-muted); font-size: 15px; line-height: 1.6; }
.cbv-edition ul { display: grid; gap: 10px; margin: 24px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(139, 166, 211, .12); list-style: none; }
.cbv-edition li { display: flex; align-items: center; gap: 10px; color: rgba(222, 231, 246, .86); font-size: 14px; }
.cbv-edition li svg { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: var(--edition); stroke-width: 2; }

/* Platform */
.cbv-platform { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: center; }
.cbv-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 24px; margin: 32px 0 0; }
.cbv-points dt { display: flex; align-items: center; gap: 9px; color: #eef4fc; font-size: 16px; font-weight: 600; }
.cbv-points dt svg { width: 17px; height: 17px; fill: none; stroke: var(--cbv-green); stroke-width: 2; }
.cbv-points dd { margin: 6px 0 0 26px; color: var(--cbv-muted); font-size: 14px; line-height: 1.5; }

.cbv-diagram { position: relative; padding: 34px; border: 1px solid rgba(84, 128, 213, .28); border-radius: 22px; background: radial-gradient(circle at 50% 50%, rgba(47, 111, 245, .12), transparent 60%), rgba(7, 14, 27, .78); }
.cbv-diagram__tenants { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 12px; }
.cbv-tenant { display: grid; gap: 4px; padding: 16px; border: 1px solid rgba(139, 166, 211, .18); border-radius: 14px; background: rgba(13, 23, 40, .8); }
.cbv-tenant b { color: #e9eff9; font-size: 14px; font-weight: 600; }
.cbv-tenant small { color: var(--cbv-dim); font-size: 12px; }
.cbv-tenant em { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; color: #52e0b4; font-size: 11px; font-style: normal; }
.cbv-tenant em svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.cbv-tenant.is-yours { border-color: rgba(255, 122, 89, .5); background: linear-gradient(145deg, rgba(255, 122, 89, .14), rgba(13, 23, 40, .86)); box-shadow: 0 0 30px rgba(255, 122, 89, .12); }
.cbv-diagram__links { height: 34px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; justify-items: center; }
.cbv-diagram__links--tenants { grid-template-columns: 1.2fr 1fr 1fr; gap: 12px; }
.cbv-diagram__links i { width: 1px; border-left: 1px dashed rgba(110, 160, 255, .5); }
.cbv-diagram__core { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border: 1px solid rgba(102, 145, 255, .45); border-radius: 16px; background: linear-gradient(135deg, rgba(40, 70, 150, .45), rgba(16, 30, 60, .8)); box-shadow: inset 0 1px rgba(149, 180, 255, .2), 0 0 40px rgba(60, 110, 255, .15); }
.cbv-diagram__core-icon { width: 48px; height: 48px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 14px; color: #fff; background: var(--cb-accent-gradient); }
.cbv-diagram__core-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.cbv-diagram__core b { display: block; color: #f3f6fc; font-size: 17px; font-weight: 600; }
.cbv-diagram__core small { display: block; margin-top: 3px; color: var(--cbv-muted); font-size: 13px; }
.cbv-diagram__endpoints { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.cbv-diagram__endpoints span { display: grid; min-height: 46px; place-items: center; padding: 8px; border: 1px solid rgba(139, 166, 211, .16); border-radius: 11px; color: rgba(222, 231, 246, .82); background: rgba(13, 23, 40, .7); font-size: 12px; text-align: center; }

.cbv-tech { display: block; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(133, 158, 202, .12); color: var(--cbv-muted); font-size: 14px; line-height: 1.6; }
.cbv-tech span { display: inline-block; margin-right: 12px; color: var(--cb-eyebrow-ink-dark); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.cbv-tech a { color: #9dbbff; text-underline-offset: 3px; }
.cbv-tech a:hover { color: #fff; }

/* Flow */
.cbv-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 0; padding: 0; list-style: none; }
.cbv-flow li { position: relative; min-height: 300px; padding: 34px 30px 30px; border: 1px solid var(--cbv-line); border-radius: 18px; background: rgba(8, 17, 31, .7); }
.cbv-flow li:not(:last-child)::after { content: ''; position: absolute; top: 68px; left: calc(100% + 3px); width: 17px; border-top: 1px dashed rgba(98, 141, 234, .45); }
.cbv-flow__number { color: rgba(140, 170, 247, .8); font-family: ui-monospace, SFMono-Regular, monospace; font-size: 12px; }
.cbv-flow__icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 28px 0 25px; border-radius: 17px; color: var(--step); background: color-mix(in srgb, var(--step) 10%, transparent); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--step) 28%, transparent); }
.cbv-flow__icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.cbv-flow h3 { margin: 0; color: #eef4fe; font-size: 20px; font-weight: 600; }
.cbv-flow p { margin: 13px 0 0; color: var(--cbv-muted); font-size: 15px; line-height: 1.6; }

/* Security */
.cbv-security { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.cbv-security__matrix { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.cbv-security__matrix article { min-height: 150px; padding: 22px; border: 1px solid var(--cbv-line); border-radius: 15px; background: rgba(9, 18, 33, .74); }
.cbv-security__matrix svg { width: 27px; height: 27px; margin-bottom: 18px; fill: none; stroke: #42ddb5; stroke-width: 1.7; }
.cbv-security__matrix h3 { margin: 0; color: #eef4fc; font-size: 15px; font-weight: 600; }
.cbv-security__matrix p { margin: 8px 0 0; color: var(--cbv-muted); font-size: 13.5px; line-height: 1.5; }

/* FAQ */
.cbv-faq { max-width: 940px; margin: 0 auto; display: grid; gap: 11px; }
.cbv-faq details { border: 1px solid var(--cbv-line); border-radius: 14px; background: rgba(9, 18, 33, .68); }
.cbv-faq summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 23px; color: #eef3fb; cursor: pointer; font-size: 17px; font-weight: 600; list-style: none; }
.cbv-faq summary::-webkit-details-marker { display: none; }
.cbv-faq summary::after { content: '+'; color: #70a6ff; font-size: 23px; font-weight: 300; }
.cbv-faq details[open] summary::after { content: '−'; }
.cbv-faq details p { margin: 0; padding: 0 23px 24px; color: var(--cbv-muted); font-size: 15px; line-height: 1.65; }

/* CTA */
.cbv-cta { padding: 0 0 120px; }
.cbv-cta__inner { position: relative; overflow: hidden; padding: 68px; border: 1px solid rgba(91, 135, 233, .3); border-radius: 23px; background: linear-gradient(135deg, rgba(27, 47, 91, .8), rgba(14, 25, 48, .95) 52%, rgba(64, 30, 42, .7)); box-shadow: inset 0 1px rgba(149, 180, 255, .18); }
.cbv-cta__inner::before { content: ''; position: absolute; width: 500px; height: 500px; right: -170px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 122, 89, .2), transparent 64%); }
.cbv-cta__copy { position: relative; max-width: 830px; }
.cbv-cta h2 { font-size: var(--cb-title-cta); }
.cbv-cta p { max-width: 720px; margin: 19px 0 0; color: var(--cbv-muted); font-size: 18px; line-height: 1.6; }

/* Reveal : le contenu reste visible sans JavaScript. */
.cbv-js [data-reveal] { opacity: 0; translate: 0 16px; transition: opacity .65s ease, translate .65s cubic-bezier(.16, 1, .3, 1); }
.cbv-js [data-reveal].is-visible { opacity: 1; translate: 0 0; }

@keyframes cbv-pulse { 50% { opacity: .35; } }
@keyframes cbv-wave { 50% { transform: scaleY(.45); } }

@media (max-width: 1640px) {
  .cbv-activity { display: none; }
}

@media (max-width: 1540px) {
  .cbv-hero__grid { grid-template-columns: minmax(520px, .9fr) minmax(600px, 1.2fr); }
  .cbv-app__body { grid-template-columns: 84px minmax(180px, .9fr) minmax(0, 1.2fr); }
  .cbv-benefit { padding-inline: 15px; }
}

@media (max-width: 1320px) {
  .cbv-topbar__inner { width: min(calc(100% - 54px), 1240px); }
  .cbv-nav { gap: 22px; }
  .cbv-shell { width: min(calc(100% - 54px), 1240px); }
  .cbv-hero__grid { grid-template-columns: minmax(460px, .85fr) minmax(540px, 1.15fr); gap: 35px; }
  .cbv-activity { display: none; }
  .cbv-app__body { grid-template-columns: 76px minmax(170px, .85fr) minmax(0, 1.2fr); }
  .cbv-benefits { grid-template-columns: repeat(3, 1fr); }
  .cbv-mobility, .cbv-platform { gap: 48px; }
  .cbv-diagram { padding: 26px; }
}

@media (max-width: 1080px) {
  .cbv-nav { position: fixed; inset: 76px 18px auto; z-index: 95; display: grid; justify-content: stretch; gap: 0; padding: 14px; border: 1px solid var(--cbv-line); border-radius: 15px; background: #050b16; box-shadow: 0 30px 70px rgba(0, 0, 0, .45); opacity: 0; visibility: hidden; pointer-events: none; translate: 0 -12px; transition: opacity .2s ease, translate .2s ease, visibility .2s; }
  .cbv-topbar.is-menu-open .cbv-nav { opacity: 1; visibility: visible; pointer-events: auto; translate: 0 0; }
  .cbv-nav a { padding: 14px 12px; }
  .cbv-nav a::after { display: none; }
  .cbv-menu-toggle { display: block; justify-self: end; }
  .cbv-topbar.is-menu-open .cbv-menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .cbv-topbar.is-menu-open .cbv-menu-toggle span:nth-child(2) { opacity: 0; }
  .cbv-topbar.is-menu-open .cbv-menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .cbv-topbar__actions { gap: 12px; }
  .cbv-hero { padding-top: 8px; }
  .cbv-hero__grid { grid-template-columns: 1fr; }
  .cbv-hero__copy { max-width: 760px; }
  .cbv-product { max-width: 900px; }
  .cbv-mobility, .cbv-platform, .cbv-security { grid-template-columns: 1fr; gap: 50px; }
  .cbv-capability--wide, .cbv-capability--narrow, .cbv-capability--half { grid-column: span 6; }
  .cbv-editions { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .cbv-shell { width: min(calc(100% - 32px), 680px); }
  .cbv-topbar { height: 68px; }
  .cbv-topbar__inner { width: calc(100% - 32px); gap: 10px; }
  .cbv-nav { inset: 68px 12px auto; }
  .cbv-lang select { width: 52px; }
  .cbv-login { justify-content: center; width: 44px; }
  .cbv-login .cb-login-trigger__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .cbv-login .cb-login-trigger__icon { width: 20px; height: 20px; margin: 0; }
  .cbv-login .cb-login-trigger__chevron { display: none; }
  .cbv-topbar__cta { display: none; }
  .cbv-breadcrumb { min-height: 48px; overflow: hidden; white-space: nowrap; }
  .cbv-hero { padding-bottom: 38px; }
  .cbv-hero h1 { font-size: clamp(40px, 11.5vw, 56px); }
  .cbv-hero__lead { font-size: 17px; }
  .cbv-hero__actions { display: grid; grid-template-columns: 1fr; }
  .cbv-btn { width: 100%; }
  .cbv-platforms { display: grid; gap: 12px; }
  .cbv-platforms__label { padding: 0; border: 0; }
  .cbv-product::before { inset-inline: 0; }
  .cbv-app { border-radius: 14px; }
  .cbv-app__body { display: block; min-height: 0; }
  .cbv-app__rail, .cbv-app__contacts { display: none; }
  .cbv-app__main { padding: 12px; }
  .cbv-call__controls { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 10px; }
  .cbv-queue { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cbv-queue strong { grid-column: 1 / -1; }
  .cbv-benefits { grid-template-columns: 1fr; margin-top: 30px; }
  .cbv-benefit { min-height: 0; }
  .cbv-proofbar { grid-template-columns: 1fr; gap: 12px; padding-top: 24px; }
  .cbv-proofbar li::before { display: none; }
  .cbv-section { padding: 86px 0; }
  .cbv-section-head { margin-bottom: 38px; text-align: left; }
  .cbv-eyebrow { font-size: 13px; }
  .cbv-section-title { font-size: clamp(38px, 11vw, 54px); }
  .cbv-section-lead { font-size: 19px; }
  .cbv-side-title { font-size: clamp(36px, 10.5vw, 50px); }
  .cbv-side-copy > p:not(.cbv-eyebrow) { font-size: 16px; }
  .cbv-photo { border-radius: 16px; }
  .cbv-photo img { aspect-ratio: 4 / 3.4; object-position: 68% 40%; }
  .cbv-photo__call { left: 14px; right: 14px; bottom: 14px; max-width: none; }
  .cbv-photo__call em { display: none; }
  .cbv-capabilities { grid-template-columns: 1fr; }
  .cbv-capability--wide, .cbv-capability--narrow, .cbv-capability--half { grid-column: auto; }
  .cbv-capability { min-height: 0; padding: 24px; }
  .cbv-edition { padding: 28px 22px 24px; }
  .cbv-points { grid-template-columns: 1fr; }
  .cbv-diagram { padding: 18px; }
  .cbv-diagram__tenants { grid-template-columns: 1fr; }
  .cbv-tenant:not(.is-yours) { display: none; }
  .cbv-diagram__links { height: 24px; }
  .cbv-diagram__links--tenants { grid-template-columns: 1fr; }
  .cbv-diagram__links--tenants i:not(:first-child), .cbv-diagram__links--endpoints { display: none; }
  .cbv-diagram__endpoints { margin-top: 12px; }
  .cbv-diagram__endpoints { grid-template-columns: repeat(2, 1fr); }
  .cbv-diagram__endpoints span:last-child { grid-column: 1 / -1; }
  .cbv-flow { grid-template-columns: 1fr; }
  .cbv-flow li { min-height: 0; }
  .cbv-flow li:not(:last-child)::after { display: none; }
  .cbv-security__matrix { grid-template-columns: 1fr; }
  .cbv-faq summary { min-height: 66px; padding: 15px 18px; font-size: 15px; }
  .cbv-faq details p { padding: 0 18px 20px; font-size: 14px; }
  .cbv-cta { padding-bottom: 80px; }
  .cbv-cta__inner { padding: 40px 24px; }
  .cbv-cta h2 { font-size: 32px; }
  .cbv-cta p { font-size: 16px; }
}

@media (max-width: 390px) {
  .cbv-menu-toggle { width: 44px; }
  .cbv-call__controls svg { width: 32px; height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .cbv-page *, .cbv-page *::before, .cbv-page *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .cbv-js [data-reveal] { opacity: 1; translate: none; }
}
