/* DS extension — composants alignés sur /preview */

/* Avatar */
.of-site .ds-av-wrap { position: relative; display: inline-block; }
.of-site .ds-av {
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: inherit; flex-shrink: 0;
  background: var(--of-blue-100); color: var(--of-blue);
}
.of-site .ds-av-xs { width: 24px; height: 24px; font-size: 10px; }
.of-site .ds-av-sm { width: 32px; height: 32px; font-size: 12px; }
.of-site .ds-av-md { width: 40px; height: 40px; font-size: 13px; }
.of-site .ds-av-lg { width: 56px; height: 56px; font-size: 18px; }
.of-site .ds-av-xl { width: 72px; height: 72px; font-size: 22px; }
.of-site .ds-av.hue-mint   { background: #D4F9EF; color: #0E8F6F; }
.of-site .ds-av.hue-coral  { background: #FFE2DD; color: #C44430; }
.of-site .ds-av.hue-violet { background: #F4DBFF; color: #9521D0; }
.of-site .ds-av.hue-amber  { background: #FFF3DC; color: #B07415; }
.of-site .ds-av-status {
  position: absolute; right: 0; bottom: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: #26DEB5; border: 2px solid #fff;
}
.of-site .ds-av-group { display: inline-flex; }
.of-site .ds-av-group .ds-av { border: 2px solid #fff; }
.of-site .ds-av-group .ds-av + .ds-av { margin-left: -10px; }
.of-site .ds-av-more {
  background: #fff !important; color: var(--of-ink-2) !important;
  box-shadow: inset 0 0 0 1px var(--of-line); font-size: 11px !important;
}

/* FormField */
.of-site .ds-field { display: flex; flex-direction: column; gap: 6px; }
.of-site .ds-field-label {
  font-size: 13px; font-weight: 600; color: var(--of-ink);
  display: flex; align-items: center; gap: 4px;
}
.of-site .ds-field-label .req { color: #FF6B5C; }
.of-site .ds-field-wrap { position: relative; display: flex; flex-direction: column; }
.of-site .ds-field-input {
  height: 44px; border-radius: 10px;
  border: 1px solid var(--of-line); background: #fff;
  padding: 0 14px; font-family: inherit; font-size: 14px; color: var(--of-ink);
  outline: none;
  transition: border-color 200ms var(--of-ease), box-shadow 200ms var(--of-ease);
  width: 100%;
}
.of-site textarea.ds-field-input { height: auto; min-height: 120px; padding: 14px; resize: vertical; line-height: 1.5; }
.of-site .ds-field-input:hover { border-color: var(--of-mute); }
.of-site .ds-field-input:focus,
.of-site .ds-field.is-focus .ds-field-input {
  border-color: var(--of-blue);
  box-shadow: 0 0 0 3px rgba(51, 64, 250, .15);
}
.of-site .ds-field-input::placeholder { color: var(--of-mute); }
.of-site .ds-field-help { font-size: 12px; color: var(--of-ink-3); line-height: 1.4; display: flex; align-items: center; gap: 4px; }
.of-site .ds-field.is-error .ds-field-input { border-color: #FF6B5C; box-shadow: 0 0 0 3px rgba(255, 107, 92, .15); }
.of-site .ds-field.is-error .ds-field-help { color: #C44430; }
.of-site .ds-field.is-success .ds-field-input { border-color: #26DEB5; box-shadow: 0 0 0 3px rgba(38, 222, 181, .15); padding-right: 40px; }
.of-site .ds-field-check {
  position: absolute; right: 12px; top: 22px; transform: translateY(-50%);
  color: #0E8F6F;
}
.of-site .ds-field.is-disabled .ds-field-input {
  background: var(--of-bg-soft); color: var(--of-mute); cursor: not-allowed; border-color: #E5E7EB;
}
.of-site .ds-field.is-disabled .ds-field-label { color: var(--of-mute); }

/* Tooltip */
.of-site .ds-term {
  position: relative;
  border-bottom: 1px dashed var(--of-blue);
  padding-bottom: 1px;
  font-weight: 600;
  cursor: help;
  display: inline;
}
.of-site .ds-term:hover .ds-tt,
.of-site .ds-help-icon:hover .ds-tt { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.of-site .ds-tt {
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #fff; color: var(--of-ink);
  font-size: 12px; font-weight: 500; line-height: 1.45;
  padding: 10px 14px; border-radius: 8px;
  border: 1px solid var(--of-blue-100);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  pointer-events: none;
  z-index: 1200;
  opacity: 0; visibility: hidden;
  transition: opacity 150ms var(--of-ease), transform 150ms var(--of-ease), visibility 150ms;
}
.of-site .ds-tt::before {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: var(--of-blue-100);
}
.of-site .ds-tt::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-1.5px);
  border: 5px solid transparent; border-top-color: #fff;
}
.of-site .ds-tt-multiline { white-space: normal; max-width: 240px; line-height: 1.5; padding: 12px 14px; }
.of-site .ds-help-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--of-blue-100); color: var(--of-blue);
  font-size: 10px; font-weight: 700; margin-left: 4px;
  cursor: help; position: relative;
}

/* Empty state */
.of-site .ds-empty {
  border: 1px dashed var(--of-blue-200);
  background: #FAFBFC;
  border-radius: 16px;
  padding: 48px 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.of-site .ds-empty-icon {
  width: 72px; height: 72px;
  background: var(--of-blue-100); color: var(--of-blue);
  border-radius: 20px;
  display: inline-flex; align-items: center; justify-content: center;
}
.of-site .ds-empty h3 { font-size: 18px; font-weight: 700; color: var(--of-ink); margin: 0; }
.of-site .ds-empty p { font-size: 14px; color: var(--of-ink-3); line-height: 1.55; max-width: 360px; margin: 0; text-wrap: pretty; }
.of-site .ds-empty-actions { display: flex; gap: 10px; margin-top: 6px; }
.of-site .ds-btn-primary-sm {
  background: var(--of-blue); color: #fff; padding: 10px 20px; border-radius: 10px;
  font-weight: 700; font-size: 13px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; font-family: inherit;
}
.of-site .ds-btn-primary-sm:hover { background: var(--of-blue-hover); }
.of-site .ds-btn-ghost-sm {
  background: #fff; color: var(--of-blue); padding: 10px 20px; border-radius: 10px;
  font-weight: 700; font-size: 13px; border: 1px solid var(--of-blue-200); cursor: pointer; font-family: inherit;
}
.of-site .ds-btn-ghost-sm:hover { background: var(--of-blue-50); }

/* Skeleton */
@keyframes ds-shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }
.of-site .ds-sk {
  background: linear-gradient(90deg, #F0F4FF 0%, #E8E9FF 50%, #F0F4FF 100%);
  background-size: 800px 100%;
  animation: ds-shimmer 1.4s linear infinite;
  border-radius: 6px;
}
.of-site .ds-sk-line { height: 12px; }
.of-site .ds-sk-h { height: 22px; width: 70%; border-radius: 8px; }
.of-site .ds-sk-tile { width: 60px; height: 60px; border-radius: 16px; }
.of-site .ds-sk-avatar { width: 44px; height: 44px; border-radius: 50%; }
.of-site .ds-sk-card {
  border: 1px solid var(--of-blue-100); border-radius: 12px;
  padding: 24px; background: #fff;
  box-shadow: var(--of-shadow-card);
  display: flex; flex-direction: column; gap: 14px;
}
.of-site .ds-sk-row { display: flex; gap: 14px; align-items: center; }
.of-site .ds-sk-stack { display: flex; flex-direction: column; gap: 8px; flex: 1; }

/* Modal */
.of-site .ds-overlay {
  position: fixed; inset: 0;
  background: rgba(26, 26, 26, .55);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px;
  animation: ds-fade-in 200ms var(--of-ease);
}
@keyframes ds-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes ds-pop-in { from { opacity: 0; transform: scale(.96) translateY(8px); } to { opacity: 1; transform: none; } }
.of-site .ds-modal {
  background: #fff; border-radius: 16px;
  width: 460px; max-width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
  overflow: hidden;
  animation: ds-pop-in 220ms var(--of-ease);
}
.of-site .ds-modal-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 24px 24px 0;
}
.of-site .ds-modal-title { font-size: 20px; font-weight: 700; color: var(--of-ink); line-height: 1.25; letter-spacing: -.3px; }
.of-site .ds-modal-close {
  background: none; border: none; cursor: pointer; color: var(--of-mute); padding: 4px;
  width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.of-site .ds-modal-close:hover { background: var(--of-bg-soft); color: var(--of-ink); }
.of-site .ds-modal-body { padding: 12px 24px 24px; }
.of-site .ds-modal-body p { font-size: 14px; color: var(--of-ink-2); line-height: 1.55; }
.of-site .ds-modal-foot {
  display: flex; gap: 10px; justify-content: flex-end;
  padding: 16px 24px;
  border-top: 1px solid var(--of-blue-50);
  background: #FAFBFC;
}
.of-site .ds-btn-ghost {
  background: #fff; color: var(--of-ink-2); border: 1px solid var(--of-line);
  padding: 10px 18px; border-radius: 10px; font-weight: 600; font-size: 14px; cursor: pointer; font-family: inherit;
}
.of-site .ds-btn-ghost:hover { background: var(--of-bg-soft); }
.of-site .ds-btn-go {
  background: var(--of-blue); color: #fff; border: none;
  padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: 14px; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.of-site .ds-btn-go:hover { background: var(--of-blue-hover); }

/* Toast */
.of-site .ds-toast-stack {
  position: fixed; right: 24px; bottom: 24px; z-index: 1100;
  display: flex; flex-direction: column; gap: 12px;
  max-width: 420px;
}
@keyframes ds-toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.of-site .ds-toast {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; padding: 14px 16px;
  border-radius: 12px; border: 1px solid var(--of-blue-100);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
  animation: ds-toast-in 240ms var(--of-ease);
}
.of-site .ds-toast-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.of-site .ds-toast-body { flex: 1; }
.of-site .ds-toast-title { font-size: 14px; font-weight: 700; color: var(--of-ink); margin-bottom: 2px; }
.of-site .ds-toast-desc { font-size: 13px; color: var(--of-ink-2); line-height: 1.45; }
.of-site .ds-toast-close {
  background: none; border: none; cursor: pointer; color: var(--of-mute); padding: 2px;
  width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.of-site .ds-toast.success .ds-toast-icon { background: #D4F9EF; color: #0E8F6F; }
.of-site .ds-toast.error   .ds-toast-icon { background: #FFE2DD; color: #C44430; }
.of-site .ds-toast.info    .ds-toast-icon { background: var(--of-blue-100); color: var(--of-blue); }
.of-site .ds-toast.warning .ds-toast-icon { background: #FFF3DC; color: #B07415; }

/* Pack banner — horizontal layout for "pack on top of tab" */
.of-site .pack-banner {
  background: linear-gradient(135deg, #2A36E0 0%, #3340FA 60%, #4450FA 100%);
  color: #fff;
  border-radius: 16px;
  padding: 32px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(51,64,250,.22);
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: transform 200ms var(--of-ease), box-shadow 200ms var(--of-ease);
}
.of-site .pack-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(51,64,250,.28);
}
.of-site .pack-banner::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,.10), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.of-site .pack-banner > * { position: relative; z-index: 1; }
.of-site .pack-banner__main {
  display: flex; flex-direction: column; gap: 14px;
}
.of-site .pack-banner__list {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.of-site .pack-banner__list li {
  font-size: 13px; color: #fff; font-weight: 600;
  background: rgba(255,255,255,.13);
  padding: 6px 12px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 6px;
}
.of-site .pack-banner__aside {
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: 32px;
}
.of-site .pack-banner__price-old {
  font-size: 14px; color: rgba(255,255,255,.55); text-decoration: line-through;
}
.of-site .pack-banner__price-new {
  font-size: 36px; font-weight: 700; letter-spacing: -1px; color: #fff;
}
.of-site .pack-banner__price-sub {
  font-size: 12px; color: rgba(255,255,255,.75); margin-top: 2px;
}

/* Notify panel — for "soon" persona tabs */
.of-site .notify-panel {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 28px 32px;
  background: var(--of-bg-soft);
  border: 1px solid var(--of-line-2);
  border-radius: 16px;
}
.of-site .notify-panel__main { display: flex; flex-direction: column; gap: 6px; max-width: 640px; }
.of-site .notify-panel__title { font-size: 18px; font-weight: 700; color: var(--of-ink); }
.of-site .notify-panel__desc  { font-size: 14px; color: var(--of-ink-2); line-height: 1.5; }

/* Persona tab head — small subtitle below tabs */
.of-site .persona-tab-head {
  text-align: center;
  font-size: 13px; color: var(--of-ink-3);
  display: flex; gap: 8px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.of-site .persona-tab-head strong { color: var(--of-ink); font-weight: 700; }
.of-site .persona-tab-head .dot { color: var(--of-mute-2); }

/* Pack card — section "Nos formations" tab "Packs" · highlight premium */
.of-site .pack-card {
  background: var(--pack-bg, linear-gradient(135deg, #2A36E0 0%, #3340FA 60%, #4450FA 100%));
  color: var(--pack-fg, #fff);
  border: 1px solid var(--pack-border, transparent);
  border-radius: 12px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--pack-shadow, 0 20px 50px rgba(51,64,250,.25));
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 200ms var(--of-ease), box-shadow 200ms var(--of-ease);
}
.of-site .pack-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pack-shadow-hover, 0 24px 60px rgba(51,64,250,.32));
}
.of-site .pack-card::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: var(--pack-glow, radial-gradient(circle, rgba(255,255,255,.10), transparent 65%));
  border-radius: 50%;
  pointer-events: none;
}
.of-site .pack-card > * { position: relative; z-index: 1; }
.of-site .pack-card__head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.of-site .pack-card__badge {
  background: var(--pack-badge-bg, #fff); color: var(--pack-badge-fg, var(--of-blue));
  padding: 4px 12px; border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  display: inline-flex; align-items: center; gap: 4px;
}
.of-site .pack-card__meta {
  font-size: 12px; color: var(--pack-fg-mute, rgba(255,255,255,.75)); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.of-site .pack-card__meta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px; font-weight: 500;
  color: var(--pack-fg-mute, rgba(255,255,255,.75));
}
.of-site .pack-card__meta-row span {
  display: inline-flex; align-items: center; gap: 6px;
}
.of-site .pack-card__meta-row svg { color: var(--pack-fg, currentColor); opacity: .85; }
.of-site .pack-card__title { color: var(--pack-fg, #fff); font-size: 22px; letter-spacing: -.5px; line-height: 1.2; }
.of-site .pack-card__subtitle { color: var(--pack-fg-mute, rgba(255,255,255,.85)); font-size: 14px; line-height: 1.45; }
.of-site .pack-card__list {
  list-style: none; padding: 16px 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--pack-rule, rgba(255,255,255,.18));
  border-bottom: 1px solid var(--pack-rule, rgba(255,255,255,.18));
}
.of-site .pack-card__list li {
  font-size: 14px; color: var(--pack-fg, #fff);
  display: flex; align-items: center; gap: 10px;
}
.of-site .pack-card__list li svg { color: var(--pack-fg, #fff); opacity: .9; flex-shrink: 0; }
.of-site .pack-card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: auto;
}
.of-site .pack-card__price-old {
  font-size: 14px; color: var(--pack-fg-faint, rgba(255,255,255,.55)); text-decoration: line-through;
  margin-right: 8px;
}
.of-site .pack-card__price-new {
  font-size: 26px; font-weight: 700; color: var(--pack-fg, #fff);
}
.of-site .pack-card__price-sub {
  font-size: 11px; color: var(--pack-fg-mute, rgba(255,255,255,.7)); font-weight: 500;
  display: block; margin-top: 2px;
}
.of-site .pack-card__cta {
  background: var(--pack-cta-bg, #fff); color: var(--pack-cta-fg, var(--of-blue));
  padding: 10px 18px; border-radius: 10px;
  font-weight: 700; font-size: 14px; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
  border: none; cursor: pointer;
  transition: background 180ms var(--of-ease);
}
.of-site .pack-card__cta:hover { background: var(--pack-cta-hover, var(--of-blue-50)); }

/* Caution Wizify section — origin / Guillaume / Décomplex */
.of-site .caution-slab {
  background: var(--of-bg-soft);
  border-top: 1px solid var(--of-line-2);
  border-bottom: 1px solid var(--of-line-2);
}
.of-site .caution-grid {
  display: grid; grid-template-columns: 1.35fr 1fr;
  gap: 60px; align-items: center;
}
.of-site .caution-quote {
  font-size: 32px; line-height: 1.15; letter-spacing: -1px;
  color: var(--of-ink); font-weight: 700; text-wrap: balance;
}
.of-site .caution-quote em {
  color: var(--of-blue); font-style: italic; font-weight: 700;
}
.of-site .caution-cards { display: flex; flex-direction: column; gap: 16px; }
.of-site .caution-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--of-blue-100);
  border-radius: 12px;
}
.of-site .caution-card__avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--of-blue-100); color: var(--of-blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}
.of-site .caution-card__body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.of-site .caution-card__label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--of-blue);
}
.of-site .caution-card__title { font-size: 15px; font-weight: 700; color: var(--of-ink); line-height: 1.3; }
.of-site .caution-card__sub  { font-size: 13px; color: var(--of-ink-3); line-height: 1.4; }

/* Merged blue slab — Notre Approche + À l'origine de Wizify en un seul bloc */
.of-site .section--blue-merged {
  background: var(--of-blue);
  color: #fff;
  border-radius: 40px 40px 0 0;
  padding: 100px 0;
  box-shadow: var(--of-shadow-section-up);
}
.of-site .section--blue-merged .container + .container { margin-top: 80px; }
.of-site .section--blue-merged .blue-divider { margin: 80px auto; }
.of-site .blue-divider {
  height: 0;
  border: 0;
  margin: 80px 0;
}

/* Interactive pillar cards — Notre Approche */
.of-site .pillar-card {
  cursor: pointer; font-family: inherit;
  text-align: left;
  display: flex; flex-direction: column; gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: inherit;
  transition: all 200ms var(--of-ease);
  position: relative;
}
.of-site .pillar-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}
.of-site .pillar-card--active {
  background: #fff; color: var(--of-ink);
  border-color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.of-site .pillar-card--active:hover { transform: translateY(-2px); background: #fff; }
.of-site .pillar-card .icon-tile {
  background: rgba(255,255,255,.16); color: #fff;
  width: 44px; height: 44px;
  transition: all 200ms var(--of-ease);
}
.of-site .pillar-card--active .icon-tile {
  background: var(--of-blue-100); color: var(--of-blue);
}
.of-site .pillar-card__title {
  font-size: 17px; font-weight: 700; line-height: 1.2;
  color: inherit;
}
.of-site .pillar-card__body {
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,.78);
}
.of-site .pillar-card--active .pillar-card__body { color: var(--of-ink-2); }
.of-site .pillar-card__arrow {
  position: absolute; bottom: 18px; right: 18px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.10); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: all 200ms var(--of-ease);
}
.of-site .pillar-card--active .pillar-card__arrow {
  background: var(--of-blue); color: #fff;
  opacity: 1;
}

/* Pillar preview — big visual placeholder under the cards */
.of-site .pillar-preview {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  display: flex; flex-direction: column; gap: 14px;
}
.of-site .pillar-preview__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 4px 8px;
}
.of-site .pillar-preview__title {
  font-size: 15px; font-weight: 700; color: var(--of-ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.of-site .pillar-preview__title .ds-badge-sem { margin-right: 4px; }
.of-site .pillar-preview__hint { font-size: 12px; color: var(--of-mute); }
.of-site .pillar-preview__panel {
  aspect-ratio: 16/9;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--of-blue-50) 0%, #fff 50%, var(--of-blue-50) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(51,64,250,.06) 16px, rgba(51,64,250,.06) 32px);
  background-blend-mode: multiply;
  border: 1px dashed var(--of-blue-200);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.of-site .pillar-preview__placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; padding: 24px;
}
.of-site .pillar-preview__placeholder__icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--of-blue-100); color: var(--of-blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.of-site .pillar-preview__placeholder__title {
  font-size: 18px; font-weight: 700; color: var(--of-ink);
}
.of-site .pillar-preview__placeholder__sub {
  font-size: 13px; color: var(--of-ink-3);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  letter-spacing: .2px;
}

/* Interactive pillar — 2-column layout (list left, preview right) */
.of-site .pillar-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: start;
}

/* Pillar list item (vertical column, left side) */
.of-site .pillar-item {
  cursor: pointer; font-family: inherit; text-align: left;
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 18px 18px 22px;
  background: transparent;
  border: none;
  border-left: 3px solid transparent;
  color: rgba(255,255,255,.78);
  transition: all 200ms var(--of-ease);
  border-radius: 0 12px 12px 0;
  width: 100%;
}
.of-site .pillar-item:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.of-site .pillar-item--active {
  background: rgba(255,255,255,.10);
  border-left-color: #fff;
  color: #fff;
}
.of-site .pillar-item__icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,.10); color: rgba(255,255,255,.78);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 200ms var(--of-ease);
}
.of-site .pillar-item--active .pillar-item__icon {
  background: #fff; color: var(--of-blue);
}
.of-site .pillar-item__main { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.of-site .pillar-item__title {
  font-size: 15px; font-weight: 700; line-height: 1.3;
  color: inherit;
}
.of-site .pillar-item__hint {
  font-size: 12px; color: rgba(255,255,255,.55);
  font-weight: 500;
}
.of-site .pillar-item--active .pillar-item__hint { color: rgba(255,255,255,.75); }
.of-site .pillar-item__chev {
  color: rgba(255,255,255,.40); opacity: 0;
  transition: opacity 200ms var(--of-ease);
  margin-top: 9px; flex-shrink: 0;
}
.of-site .pillar-item--active .pillar-item__chev { opacity: 1; color: #fff; }

/* Right column — visual + description card */
.of-site .pillar-pane {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  display: flex; flex-direction: column; gap: 20px;
}
.of-site .pillar-pane__visual {
  aspect-ratio: 16/9;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--of-blue-50) 0%, #fff 50%, var(--of-blue-50) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(51,64,250,.06) 16px, rgba(51,64,250,.06) 32px);
  background-blend-mode: multiply;
  border: 1px dashed var(--of-blue-200);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.of-site .pillar-pane__placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; padding: 24px;
}
.of-site .pillar-pane__placeholder__icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--of-blue-100); color: var(--of-blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.of-site .pillar-pane__placeholder__title {
  font-size: 18px; font-weight: 700; color: var(--of-ink);
}
.of-site .pillar-pane__placeholder__sub {
  font-size: 12px; color: var(--of-ink-3);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; letter-spacing: .2px;
}
.of-site .pillar-pane__body {
  display: flex; flex-direction: column; gap: 8px;
  padding: 4px 12px 16px;
}
.of-site .pillar-pane__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--of-blue); text-transform: uppercase;
}
.of-site .pillar-pane__title {
  font-size: 22px; font-weight: 700; color: var(--of-ink);
  letter-spacing: -.5px; line-height: 1.2;
}
.of-site .pillar-pane__desc {
  font-size: 15px; color: var(--of-ink-2); line-height: 1.55;
}

/* Interactive pillar — horizontal row of 4 chip-cards + expandable detail */
.of-site .pillar-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.of-site .pillar-chip {
  cursor: pointer; font-family: inherit; text-align: left;
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: #fff;
  transition: all 200ms var(--of-ease);
  position: relative;
}
.of-site .pillar-chip:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-2px);
}
.of-site .pillar-chip--active {
  background: #fff; color: var(--of-ink);
  border-color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.of-site .pillar-chip--active:hover { transform: translateY(-2px); background: #fff; }
.of-site .pillar-chip__icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.16); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 200ms var(--of-ease);
}
.of-site .pillar-chip--active .pillar-chip__icon {
  background: var(--of-blue-100); color: var(--of-blue);
}
.of-site .pillar-chip__title { font-size: 16px; font-weight: 700; line-height: 1.25; }
.of-site .pillar-chip__hint {
  font-size: 12px; color: rgba(255,255,255,.65); font-weight: 500;
}
.of-site .pillar-chip--active .pillar-chip__hint { color: var(--of-ink-3); }

/* Detail pane — 2 columns: text left, visual right */
.of-site .pillar-detail {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.of-site .pillar-detail__body {
  display: flex; flex-direction: column; gap: 10px;
}
.of-site .pillar-detail__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--of-blue); text-transform: uppercase;
}
.of-site .pillar-detail__title {
  font-size: 26px; font-weight: 700; color: var(--of-ink);
  letter-spacing: -.5px; line-height: 1.2;
}
.of-site .pillar-detail__desc {
  font-size: 15px; color: var(--of-ink-2); line-height: 1.6;
}
.of-site .pillar-detail__visual {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--of-blue-50) 0%, #fff 50%, var(--of-blue-50) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(51,64,250,.06) 16px, rgba(51,64,250,.06) 32px);
  background-blend-mode: multiply;
  border: 1px dashed var(--of-blue-200);
  display: flex; align-items: center; justify-content: center;
}
.of-site .pillar-detail__placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; padding: 24px;
}
.of-site .pillar-detail__placeholder__icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: var(--of-blue-100); color: var(--of-blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.of-site .pillar-detail__placeholder__title {
  font-size: 18px; font-weight: 700; color: var(--of-ink);
}
.of-site .pillar-detail__placeholder__sub {
  font-size: 12px; color: var(--of-ink-3);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; letter-spacing: .2px;
}

/* À l'origine — Guillaume layout : photo right, bio left, proof items below */
.of-site .origine-top {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 56px; align-items: stretch;
}
.of-site .origine-bio { display: flex; flex-direction: column; gap: 14px; }
.of-site .origine-bio__role {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.70);
}
.of-site .origine-bio__name {
  font-size: 36px; font-weight: 700; letter-spacing: -1px;
  color: #fff; line-height: 1.1;
}
.of-site .origine-bio__lead {
  font-size: 18px; line-height: 1.55; color: #fff;
}
.of-site .origine-bio__body {
  font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.80);
}
.of-site .origine-photo {
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,.04)),
    repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,.06) 16px, rgba(255,255,255,.06) 32px);
  border: 1px dashed rgba(255,255,255,.32);
  display: flex; align-items: center; justify-content: center;
  height: 100%;
}
.of-site .origine-photo__placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); text-align: center;
}
.of-site .origine-photo__placeholder__icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: rgba(255,255,255,.16); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.of-site .origine-photo__placeholder__title { font-size: 15px; font-weight: 700; color: #fff; }
.of-site .origine-photo__placeholder__sub  {
  font-size: 11px; color: rgba(255,255,255,.70);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; letter-spacing: .2px;
}

/* Proof items row — compact pills on blue */
.of-site .origine-proofs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 6px;
}
.of-site .origine-proof {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  font-size: 13px; font-weight: 600; line-height: 1.3;
}
.of-site .origine-proof svg {
  width: 14px; height: 14px;
  color: #fff; opacity: .85;
  flex-shrink: 0;
}

/* Logo bar — marquee (infinite scroll) */
.of-site .marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.of-site .marquee__track {
  display: flex; gap: 56px; width: max-content;
  animation: of-marquee 36s linear infinite;
}
.of-site .marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes of-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.of-site .logo-ph {
  flex-shrink: 0;
  width: 160px; height: 56px; border-radius: 8px;
  background: var(--of-bg-soft);
  border: 1px dashed var(--of-line);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--of-mute);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px; font-weight: 600; letter-spacing: .3px;
  transition: all 200ms var(--of-ease);
}
.of-site .logo-ph:hover {
  border-color: var(--of-blue-200);
  background: var(--of-blue-50);
  color: var(--of-blue);
}

/* Interactive steps — section "Les étapes de votre formation" */
.of-site .step-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.of-site .step-btn {
  cursor: pointer; font-family: inherit; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 0 8px;
  background: transparent; border: none;
  color: var(--of-ink-3);
  transition: color 200ms var(--of-ease);
  position: relative;
}
.of-site .step-btn:hover { color: var(--of-ink); }
.of-site .step-btn--active { color: var(--of-blue); }
.of-site .step-btn__dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; border: 2px solid var(--of-blue-100);
  color: var(--of-mute);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 200ms var(--of-ease);
  z-index: 2; position: relative;
}
.of-site .step-btn:hover .step-btn__dot {
  border-color: var(--of-blue);
}
.of-site .step-btn--active .step-btn__dot {
  background: var(--of-blue); border-color: var(--of-blue); color: #fff;
  box-shadow: 0 0 0 6px var(--of-blue-100);
}
.of-site .step-btn--done .step-btn__dot {
  background: var(--of-blue); border-color: var(--of-blue); color: #fff;
}
.of-site .step-btn__num {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--of-mute);
}
.of-site .step-btn--active .step-btn__num,
.of-site .step-btn--done   .step-btn__num { color: var(--of-blue); }
.of-site .step-btn__title {
  font-size: 16px; font-weight: 700; line-height: 1.2;
  color: var(--of-ink);
}
.of-site .step-btn--active .step-btn__title { color: var(--of-blue); }
.of-site .step-btn::after {
  content: ""; position: absolute;
  top: 24px; left: 50%; width: 100%;
  height: 2px; background: var(--of-blue-100);
  z-index: 1;
}
.of-site .step-btn--done::after { background: var(--of-blue); }
.of-site .step-btn:last-child::after { display: none; }

/* Down-arrow below the active step — bridges visually to the panel */
.of-site .step-btn::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid var(--of-blue);
  transform: translateX(-50%) scale(.6);
  opacity: 0;
  transition: opacity 220ms var(--of-ease), transform 260ms var(--of-ease);
  pointer-events: none;
  z-index: 3;
}
.of-site .step-btn--active::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Active step panel */
.of-site .step-panel {
  background: var(--of-bg-soft);
  border: 1px solid var(--of-line-2);
  border-radius: 16px;
  padding: 32px;
  /* Align panel left/right with the leftmost & rightmost step dots (96px each).
     Side inset = column-width − dot ÷ 2 = (25% − 96px) ÷ 2 = 12.5% − 48px each.
     Effective width = container − 2 × inset = 75% + 96px. */
  width: calc(75% + 96px);
  margin-inline: auto;
  position: relative;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 40px; align-items: start;
}
.of-site .step-panel__head { display: flex; flex-direction: column; gap: 10px; }
.of-site .step-panel__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--of-blue); text-transform: uppercase;
}
.of-site .step-panel__title {
  font-size: 26px; font-weight: 700; color: var(--of-ink);
  letter-spacing: -.5px; line-height: 1.2;
}
.of-site .step-panel__desc {
  font-size: 15px; color: var(--of-ink-2); line-height: 1.6;
}
.of-site .step-panel__reassure {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 30px;
}
.of-site .step-panel__reassure-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--of-mute); text-transform: uppercase;
  margin-bottom: 4px;
}
.of-site .step-panel__reassure-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--of-ink); line-height: 1.5;
}
.of-site .step-panel__reassure-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: #D4F9EF; color: #0E8F6F;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* "Overlap" effect — a section that climbs over the previous one with rounded top + up-shadow.
   clip-path keeps the shadow above (and on sides) but hides the soft glow below the section,
   so it doesn't bleed into the section that follows. */
.of-site .section--overlap-top {
  position: relative;
  z-index: 2;
  border-radius: 40px 40px 0 0;
  margin-top: -40px;
  box-shadow: var(--of-shadow-section-up);
  clip-path: inset(-100px -100px 0 -100px);
}

/* Hero — polaroid stack visual (right column) */
.of-site .hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
}
.of-site .hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.of-site .polaroid {
  background: #fff;
  border-radius: 6px;
  padding: 16px 16px 22px;
  box-shadow: 0 32px 64px rgba(0,0,0,.14), 0 6px 16px rgba(51,64,250,.10);
  position: relative;
}
.of-site .polaroid--back {
  position: absolute;
  top: 20px; left: 40px; right: -40px;
  padding: 14px 14px 18px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  transform: rotate(7deg);
  opacity: .80;
  z-index: 1;
}
.of-site .polaroid__img {
  aspect-ratio: 4/3;
  width: 100%;
  background:
    linear-gradient(135deg, var(--of-blue-50) 0%, #fff 50%, var(--of-blue-50) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(51,64,250,.05) 14px, rgba(51,64,250,.05) 28px);
  background-blend-mode: multiply;
  border: 1px dashed var(--of-blue-200);
  border-radius: 6px;
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  color: var(--of-mute);
  overflow: hidden;
}
.of-site .polaroid__img-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--of-blue-100); color: var(--of-blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.of-site .polaroid__img-label {
  font-size: 10px; color: var(--of-mute);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.of-site .polaroid__caption {
  padding: 14px 4px 0;
  display: flex; flex-direction: column; gap: 4px;
}
.of-site .polaroid__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  color: var(--of-blue); text-transform: uppercase;
}
.of-site .polaroid__eyebrow--mute {
  color: var(--of-mute);
}
.of-site .polaroid__title {
  font-size: 15px; font-weight: 700; color: var(--of-ink); line-height: 1.25;
}
.of-site .polaroid__title--mute {
  color: var(--of-mute); font-size: 12px;
}
.of-site .polaroid__play {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0) 50%, rgba(26,26,26,.45) 100%);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border-radius: 6px;
}
.of-site .polaroid__play-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--of-blue); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(51,64,250,.45);
  transition: transform 200ms var(--of-ease);
}
.of-site .polaroid__play:hover .polaroid__play-btn {
  transform: scale(1.06);
}

/* "Tester ce module" CTA centered on the polaroid image (replaces play button) */
.of-site .polaroid__cta {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--of-blue); color: #fff;
  padding: 11px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  box-shadow: 0 16px 40px rgba(51,64,250,.45), 0 2px 6px rgba(0,0,0,.10);
  border: none; cursor: pointer;
  transition: transform 200ms var(--of-ease), box-shadow 200ms var(--of-ease);
  z-index: 2;
}
.of-site .polaroid__cta:hover {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 20px 48px rgba(51,64,250,.55);
}

/* "Tester ce module" sticker */
.of-site .hero-sticker {
  position: absolute; top: -14px; right: -24px;
  background: var(--of-blue); color: #fff;
  padding: 9px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 12px 28px rgba(51,64,250,.30);
  transform: rotate(8deg);
  border: none; cursor: pointer;
  z-index: 3;
  transition: transform 200ms var(--of-ease);
}
.of-site .hero-sticker:hover {
  transform: rotate(8deg) scale(1.03);
}

/* Pastilles around the polaroid */
.of-site .hero-pastille {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px 6px 6px;
  background: #fff; color: var(--of-ink);
  border-radius: 999px;
  border: 1px solid var(--of-blue-100);
  box-shadow: 0 8px 24px rgba(51,64,250,.14), 0 2px 6px rgba(0,0,0,.04);
  font-size: 11.5px; font-weight: 700; white-space: nowrap;
}
.of-site .hero-pastille--mint {
  border-color: #A8E8D2;
}
.of-site .hero-pastille__icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--of-blue-50); color: var(--of-blue);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.of-site .hero-pastille--mint .hero-pastille__icon {
  background: #D4F9EF; color: #0E8F6F;
}

/* Caution Wizify section — on blue slab */
.of-site .caution-cards-inline {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.of-site .caution-card-blue {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  transition: background 200ms var(--of-ease);
}
.of-site .caution-card-blue:hover { background: rgba(255,255,255,.13); }
.of-site .caution-card-blue__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.of-site .caution-card-blue__label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.70);
}
.of-site .caution-card-blue__title { font-size: 17px; font-weight: 700; color: #fff; line-height: 1.3; }
.of-site .caution-card-blue__sub   { font-size: 13.5px; color: rgba(255,255,255,.80); line-height: 1.5; }

/* Placeholder for stats / testimonials (T+3 mois) */
.of-site .pub-placeholder {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 36px 32px;
  border: 1.5px dashed var(--of-blue-200);
  background: var(--of-blue-50);
  border-radius: 16px;
  text-align: center; flex-direction: column;
}
.of-site .pub-placeholder__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--of-blue-100); color: var(--of-blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.of-site .pub-placeholder__title {
  font-size: 16px; font-weight: 700; color: var(--of-ink);
}
.of-site .pub-placeholder__sub {
  font-size: 14px; color: var(--of-ink-2); max-width: 520px; line-height: 1.5;
}

/* Pack card · 3 highlight variants (controlled by Tweak) */

/* A · top accent bar */
.of-site .pack-card.is-hl-bar::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 5px; background: var(--of-blue);
  z-index: 0;
}
.of-site .pack-card.is-hl-bar { padding-top: 32px; }

/* B · halo bleu (glowy shadow) */
.of-site .pack-card.is-hl-halo {
  box-shadow: 0 18px 48px rgba(51,64,250,.20), 0 0 0 1px var(--of-blue-200);
  border-color: transparent;
}
.of-site .pack-card.is-hl-halo:hover {
  box-shadow: 0 26px 64px rgba(51,64,250,.28), 0 0 0 1px var(--of-blue);
}

/* C · ribbon coin top-right */
.of-site .pack-card.is-hl-ribbon::after {
  content: "★ POPULAIRE";
  position: absolute;
  top: 28px; right: -52px;
  width: 170px;
  text-align: center;
  background: var(--ribbon-bg, var(--of-blue)); color: var(--ribbon-fg, #fff);
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  padding: 6px 0;
  transform: rotate(45deg);
  transform-origin: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.of-site .pack-card.is-hl-ribbon { padding-top: 32px; }

/* Course card status badges (override for "À venir" state) */
.of-site .course-card-status {
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
  padding: 4px 10px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.of-site .course-card-status--soon {
  background: var(--of-bg-soft); color: var(--of-ink-3);
  border: 1px solid var(--of-line-2);
}
.of-site .course-card-status--open {
  background: #D4F9EF; color: #0E8F6F;
}

/* Persona card — section "Vous êtes" (archi B) */
.of-site .persona-card {
  background: #fff; border: 1px solid var(--of-blue-100); border-radius: 16px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 24px;
  cursor: pointer; text-decoration: none;
  min-height: 220px;
  transition: transform 200ms var(--of-ease), box-shadow 200ms var(--of-ease), border-color 200ms var(--of-ease);
  box-shadow: var(--of-shadow-card);
}
.of-site .persona-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--of-shadow-card-hover);
  border-color: var(--of-blue-200);
}
.of-site .persona-card--open {
  background: var(--of-blue); color: #fff;
  border-color: var(--of-blue);
  box-shadow: 0 12px 32px rgba(51,64,250,.20);
}
.of-site .persona-card--open:hover {
  border-color: var(--of-blue);
  box-shadow: 0 16px 40px rgba(51,64,250,.28);
}
.of-site .persona-card--b2b {
  background: var(--of-ink); color: #fff;
  border-color: var(--of-ink);
}
.of-site .persona-card--b2b:hover { border-color: var(--of-ink); }
.of-site .persona-card__tile {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.15); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.of-site .persona-card__tile--soft {
  background: var(--of-blue-50); color: var(--of-blue);
}
.of-site .persona-card__tile--dark {
  background: rgba(255,255,255,.10); color: #fff;
}
.of-site .persona-card__status {
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
  padding: 4px 10px; border-radius: 6px;
  background: #fff; color: var(--of-blue);
  display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.of-site .persona-card__status--soft {
  background: var(--of-bg-soft); color: var(--of-ink-3);
  border: 1px solid var(--of-line-2);
}
.of-site .persona-card__status--dark {
  background: rgba(255,255,255,.10); color: #fff;
}

/* Hero topic chips — extend DS .ds-badge-sem.is-success with click affordance */
.of-site .topic-pill {
  cursor: pointer; transition: background 180ms var(--of-ease);
}
.of-site .topic-pill:hover { background: #BDF0E0; }

/* Hero trust badges */
.of-site .trust-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 8px;
  background: #fff; border: 1px solid var(--of-line-2);
}
.of-site .trust-badge-stars {
  color: #F5A524; display: inline-flex; gap: 2px;
}
/* Small blue logo placeholder badge — same family as .hero-badge but tighter */
.of-site .hero-logo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--of-blue-100); color: var(--of-blue);
  padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: .2px;
}

/* Tabs underline */
.of-site .ds-tabs-underline {
  display: flex; gap: 0;
  border-bottom: 1px solid #E5E7EB;
}
.of-site .ds-tabs-underline .ds-tab {
  padding: 12px 20px;
  font-size: 14px; font-weight: 600; color: var(--of-ink-3);
  cursor: pointer; background: none; border: none; font-family: inherit;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 200ms var(--of-ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.of-site .ds-tabs-underline .ds-tab.is-active { color: var(--of-blue); border-bottom-color: var(--of-blue); font-weight: 700; }
.of-site .ds-tabs-underline .ds-tab:hover:not(.is-active) { color: var(--of-ink); }
.of-site .ds-tabs-underline .ds-tab-count {
  display: inline-block;
  background: var(--of-blue-100); color: var(--of-blue);
  font-size: 11px; font-weight: 700; padding: 1px 7px; border-radius: 999px;
}
.of-site .ds-tabs-underline .ds-tab.is-active .ds-tab-count { background: var(--of-blue); color: #fff; }

/* Course card aligned */
.of-site .ds-course {
  background: #fff; border: 1px solid #E8E9FF; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 200ms var(--of-ease), box-shadow 200ms var(--of-ease);
  cursor: pointer;
}
.of-site .ds-course:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0, 0, 0, .10); }
.of-site .ds-course-head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 16px 18px 0;
}
.of-site .ds-course-tag {
  background: #E8E9FF; color: #3340FA;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 6px; letter-spacing: .3px;
  text-transform: uppercase;
}
.of-site .ds-course-opco {
  background: #D4F9EF; color: #0E8F6F; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 4px;
}
.of-site .ds-course-body { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.of-site .ds-course-title { font-size: 16px; font-weight: 700; color: #1A1A1A; line-height: 1.3; text-wrap: pretty; }
.of-site .ds-course-desc { font-size: 13px; color: #666; line-height: 1.5; flex: 1; }
.of-site .ds-course-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding-top: 12px; border-top: 1px solid #F0F4FF;
  font-size: 12px; color: #555;
}
.of-site .ds-course-meta .m { display: inline-flex; align-items: center; gap: 5px; }
.of-site .ds-course-meta .m svg { color: #3340FA; }
.of-site .ds-course-meta strong { color: #1A1A1A; font-weight: 700; }
.of-site .ds-course-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 12px 18px; background: #FAFBFC; border-top: 1px solid #F0F4FF;
}
.of-site .ds-course-price { font-size: 14px; font-weight: 700; color: #1A1A1A; }
.of-site .ds-course-price small { font-weight: 500; color: #999; font-size: 11px; display: block; line-height: 1; }
.of-site .ds-course-cta {
  background: #3340FA; color: #fff; padding: 8px 14px; border-radius: 8px;
  font-weight: 700; font-size: 12px; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 4px;
}
.of-site .ds-course-cta:hover { background: var(--of-blue-hover); }

/* Testimonial aligned */
.of-site .ds-testi {
  background: #fff; border: 1px solid var(--of-blue-100); border-radius: 12px;
  padding: 24px 26px;
  box-shadow: var(--of-shadow-card);
  display: flex; flex-direction: column; gap: 16px;
}
.of-site .ds-testi-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.of-site .ds-quote-mark {
  color: var(--of-blue); display: inline-flex; align-items: center; justify-content: center;
}
.of-site .ds-stars { display: inline-flex; gap: 3px; }
.of-site .ds-testi-quote {
  font-size: 16px; color: var(--of-ink); line-height: 1.55;
  text-wrap: pretty; font-weight: 500;
}
.of-site .ds-testi-foot {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--of-blue-50);
  padding-top: 16px;
}
.of-site .ds-testi-name { font-size: 14px; font-weight: 700; color: var(--of-ink); line-height: 1.2; }
.of-site .ds-testi-role { font-size: 12px; color: var(--of-ink-3); margin-top: 2px; }
.of-site .ds-testi-on-blue {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: none;
}
.of-site .ds-testi-on-blue .ds-testi-quote { color: #fff; }
.of-site .ds-testi-on-blue .ds-quote-mark { color: #fff; }
.of-site .ds-testi-on-blue .ds-testi-name { color: #fff; }
.of-site .ds-testi-on-blue .ds-testi-role { color: rgba(255, 255, 255, .67); }
.of-site .ds-testi-on-blue .ds-testi-foot { border-top-color: rgba(255, 255, 255, .13); }
.of-site .ds-testi-on-blue .ds-av { background: rgba(255, 255, 255, .13); color: #fff; }

/* ─────────────────────────────────────────────────────── */
/* ILLUSTRATIONS — formation rows, pillars, steps, hero…   */
/* Variante C choisie pour formation-row : 100 px sans tuile */
/* ─────────────────────────────────────────────────────── */

/* Formation row · sceau institutionnel (code + niveau) */
.of-site .formation-row {
  grid-template-columns: 64px 1fr 20px;
  column-gap: 18px;
  padding: 16px 20px;
  align-items: center;
}
.of-site .formation-row__icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--of-blue); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0; padding: 0;
  font-weight: 800; font-size: 13px; letter-spacing: -.3px; line-height: 1;
  box-shadow: 0 0 0 3px var(--of-blue-100), 0 0 0 4px var(--of-blue-200);
  flex-shrink: 0; text-align: center;
}
.of-site .formation-row__icon small {
  font-size: 8px; font-weight: 700; letter-spacing: 1px;
  opacity: .7; margin-top: 2px; line-height: 1;
}
.of-site .formation-row__icon img { display: none; } /* legacy illustration support — masquée */

/* Pillar chip · illustration bandeau plein-chip */
.of-site .pillar-chip { padding: 16px 14px; }
.of-site .pillar-chip__icon {
  width: 100%;
  height: 100px;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
  padding: 8px;
  margin-bottom: 4px;
  color: #fff;
}
.of-site .pillar-chip--active .pillar-chip__icon {
  background: var(--of-blue-50);
}
.of-site .pillar-chip__icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

/* Step dot · 96×96 avec illustration */
.of-site .step-btn__dot {
  width: 96px; height: 96px;
  background: #fff;
  border: 2px solid var(--of-blue-100);
  padding: 10px;
  box-shadow: 0 8px 20px -8px rgba(51,64,250,.15);
  overflow: hidden;
}
.of-site .step-btn--active .step-btn__dot {
  background: var(--of-blue-50);
  border-color: var(--of-blue);
  box-shadow: 0 0 0 6px var(--of-blue-100);
}
.of-site .step-btn--done .step-btn__dot {
  background: var(--of-blue-50);
  border-color: var(--of-blue);
}
.of-site .step-btn__dot img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.of-site .step-btn::after { top: 48px; }
/* Done badge — petit check dans le coin */
.of-site .step-btn__done-badge {
  position: absolute;
  top: 0; right: calc(50% - 56px);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--of-mint); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  z-index: 3;
}

/* Hero polaroid · illustration en lieu et place de l'aperçu */
.of-site .polaroid__img--ill {
  background: var(--of-blue-50);
  padding: 14px;
}
.of-site .polaroid__img--ill img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

/* Origine photo · illustration avatar */
.of-site .origine-photo--ill {
  background: rgba(255,255,255,.10) !important;
  padding: 28px;
  display: flex; align-items: center; justify-content: center;
}
.of-site .origine-photo--ill img {
  width: 100%; max-height: 380px;
  object-fit: contain;
  display: block;
}

/* B2B panel · illustration grande à droite */
.of-site .b2b-illustration {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
  height: 100%;
}
.of-site .b2b-illustration img {
  max-width: 100%; max-height: 280px;
  object-fit: contain;
  display: block;
}

/* ============================================================
   FAQ list (centered layout)
   ============================================================ */
.of-site .faq-list {
  display: flex; flex-direction: column;
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
}

/* ============================================================
   Newsletter — unified pill form (white container, blue submit)
   ============================================================ */
.of-site .nl-form {
  display: flex; align-items: center;
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 8px;
  gap: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22), 0 1px 0 rgba(255, 255, 255, .12) inset;
}
.of-site .nl-form__input {
  flex: 1;
  height: 44px;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--of-ink);
  min-width: 0;
}
.of-site .nl-form__input::placeholder { color: var(--of-mute); }
.of-site .nl-form__input:focus { outline: none; }
.of-site .nl-form__submit {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 22px;
  background: var(--of-blue); color: #fff;
  border: none; border-radius: 999px;
  font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms var(--of-ease), transform 200ms var(--of-ease);
}
.of-site .nl-form__submit:hover { background: var(--of-blue-hover); }
.of-site .nl-form__submit:active { transform: scale(.97); }
.of-site .nl-form__fine {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255, 255, 255, .65);
  margin-top: 4px;
}
  flex-shrink: 0;
  width: 120px; height: 120px;
  background: rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 14px;
  display: flex; align-items: center; justify-content: center;
}
.of-site .nl-illustration img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* FAQ · petite illustration au-dessus du eyebrow */
.of-site .faq-illustration {
  width: 96px; height: 96px;
  background: var(--of-blue-50);
  border-radius: 16px;
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.of-site .faq-illustration img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* Hero · petite illustration flottante (optionnelle) */
.of-site .hero-float {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 12px 28px rgba(51,64,250,.18);
  border: 1px solid var(--of-blue-100);
  z-index: 3;
}
.of-site .hero-float img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}

/* ============================================================
   Notre approche — Deck stacké (4 cartes "feuilles volantes")
   ============================================================ */
.of-site .approche-deck-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 96px;
  padding-bottom: 16px;
}

.of-site .approche-deck {
  position: relative;
  width: 100%;
  max-width: 620px;
  height: 480px;
  margin: 0 auto;
  perspective: 1800px;
}

.of-site .approche-card {
  position: absolute;
  inset: 0;
  background: #fff;
  color: var(--of-ink);
  border-radius: 20px;
  padding: 26px 28px 22px;
  box-shadow: 0 24px 64px rgba(0,0,0,.28), 0 6px 16px rgba(0,0,0,.10);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 14px;
  transition:
    transform 450ms var(--of-ease),
    box-shadow 450ms var(--of-ease),
    filter 450ms var(--of-ease),
    opacity 250ms var(--of-ease);
  transform-origin: 50% 60%;
  will-change: transform;
}

/* stack positions — top first */
.of-site .approche-card--p0 {
  z-index: 4;
  transform: translate(0, 0) rotate(-1.2deg);
  cursor: pointer;
}
.of-site .approche-card--p0:hover {
  transform: translate(0, -4px) rotate(-1.2deg);
  box-shadow: 0 32px 72px rgba(0,0,0,.32), 0 8px 18px rgba(0,0,0,.12);
}
.of-site .approche-card--p1 {
  z-index: 3;
  transform: translate(18px, 16px) rotate(2.5deg);
  filter: brightness(.96);
}
.of-site .approche-card--p2 {
  z-index: 2;
  transform: translate(38px, 32px) rotate(-1.8deg);
  filter: brightness(.90);
}
.of-site .approche-card--p3 {
  z-index: 1;
  transform: translate(58px, 48px) rotate(1.5deg);
  filter: brightness(.84);
}

/* card content */
.of-site .approche-card__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
}
.of-site .approche-card__head-l {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0;
}
.of-site .approche-card__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--of-blue); text-transform: uppercase;
}
.of-site .approche-card__title {
  font-size: 22px; font-weight: 700; letter-spacing: -.5px;
  color: var(--of-ink); line-height: 1.15; margin: 0;
}
.of-site .approche-card__counter {
  display: inline-flex; align-items: baseline; gap: 4px;
  flex-shrink: 0;
}
.of-site .approche-card__counter-num {
  font-size: 22px; font-weight: 700; letter-spacing: -.5px;
  color: var(--of-ink);
}
.of-site .approche-card__counter-tot {
  font-size: 13px; font-weight: 500; color: var(--of-mute);
}

.of-site .approche-card__visual {
  background: var(--of-blue-50);
  border: 1px dashed var(--of-blue-200);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.of-site .approche-card__visual-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 12px;
  width: 100%; height: 100%;
}
.of-site .approche-card__ill {
  max-width: 200px;
  max-height: 100%;
  object-fit: contain;
  flex: 1;
  min-height: 0;
}
.of-site .approche-card__visual-tag {
  font-size: 10px; color: var(--of-ink-3);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  letter-spacing: .3px;
  text-align: center;
}

.of-site .approche-card__desc {
  font-size: 14px; color: var(--of-ink-2);
  line-height: 1.55; margin: 0;
}

.of-site .approche-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}
.of-site .approche-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 13px; font-weight: 700;
  color: var(--of-blue); background: transparent; border: none;
  padding: 6px 0; cursor: pointer;
  transition: color 200ms var(--of-ease), gap 200ms var(--of-ease);
}
.of-site .approche-card__cta:hover {
  color: var(--of-blue-hover);
  gap: 10px;
}
.of-site .approche-card__hint {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--of-mute);
}

/* Hide foot of stacked cards underneath — they're behind the top one anyway,
   but the gradient brightness filter does the rest. We keep them for size. */
.of-site .approche-card:not(.approche-card--p0) .approche-card__hint { opacity: 0; }
.of-site .approche-card:not(.approche-card--p0) { cursor: default; pointer-events: none; }

/* Controls */
.of-site .approche-deck-ctrl {
  display: flex; align-items: center; gap: 16px;
}
.of-site .approche-deck-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.30);
  color: #fff; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 200ms var(--of-ease);
}
.of-site .approche-deck-arrow:hover {
  background: #fff; color: var(--of-blue); border-color: #fff;
  transform: translateY(-1px);
}
.of-site .approche-deck-arrow:active { transform: scale(.96); }

.of-site .approche-deck-dots {
  display: flex; gap: 6px; align-items: center;
  padding: 0 4px;
}
.of-site .approche-deck-dot {
  position: relative;
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.30); border: none;
  cursor: pointer; padding: 0;
  transition: all 280ms var(--of-ease);
}
.of-site .approche-deck-dot:hover { background: rgba(255,255,255,.55); }
.of-site .approche-deck-dot--active {
  background: #fff;
  width: 32px; border-radius: 5px;
}
.of-site .approche-deck-dot__label {
  position: absolute;
  white-space: nowrap;
  bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.4); padding: 4px 10px; border-radius: 6px;
  opacity: 0; pointer-events: none;
  transition: opacity 200ms var(--of-ease);
}
.of-site .approche-deck-dot:hover .approche-deck-dot__label { opacity: 1; }
