/* EADV — Présentation terrain · catalogue premium */

.eadv-present {
  --eadv-font-heading: var(--eadv-heading-font, "Playfair Display", Georgia, serif);
  --eadv-font-body: var(--eadv-body-font, "Source Sans 3", system-ui, sans-serif);
  --eadv-hero-start: var(--eadv-secondary-container, #ffd1dc);
  --eadv-hero-mid: color-mix(in srgb, var(--eadv-secondary-container, #ffd1dc) 40%, white);
  --eadv-cta: var(--eadv-tertiary, #ff8c69);
  --eadv-cta-hover: color-mix(in srgb, var(--eadv-cta) 85%, black);
  --eadv-page-max: min(92rem, calc(100vw - 5rem));
  --eadv-page-pad: clamp(1.25rem, 3vw, 3rem);
  /* Chrome mobile bullets : dock flottant + FAB au-dessus */
  --eadv-dock-inset: 0.7rem;
  --eadv-dock-h: 0rem;
  --eadv-chrome-gap: 0.7rem;
  position: relative;
  overflow-x: clip;
  font-family: var(--eadv-font-body);
  color: var(--eadv-text-main, #333333);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, color-mix(in srgb, var(--eadv-primary, #b399d4) 8%, transparent), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 20%, color-mix(in srgb, var(--eadv-secondary-container, #ffd1dc) 35%, transparent), transparent 50%),
    linear-gradient(180deg, #faf8fc 0%, #fff 40%, #fdf9fb 100%);
}

@media (min-width: 1024px) {
  .eadv-present { --eadv-page-max: min(96rem, calc(100vw - 7rem)); }
}

.eadv-present h1,
.eadv-present h2,
.eadv-present h3,
.eadv-present .eadv-brand,
.eadv-present .eadv-section-title {
  font-family: var(--eadv-font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ── Atmosphère décorative ── */
.eadv-atmosphere {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.eadv-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: eadv-float 18s ease-in-out infinite;
}

.eadv-blob--1 {
  width: 28rem;
  height: 28rem;
  top: -8%;
  right: 5%;
  background: color-mix(in srgb, var(--eadv-primary, #b399d4) 35%, transparent);
}

.eadv-blob--2 {
  width: 22rem;
  height: 22rem;
  bottom: 15%;
  left: -5%;
  background: color-mix(in srgb, var(--eadv-secondary-container, #ffd1dc) 55%, transparent);
  animation-delay: -6s;
}

.eadv-blob--3 {
  width: 16rem;
  height: 16rem;
  top: 45%;
  right: 20%;
  background: color-mix(in srgb, var(--eadv-tertiary, #ff8c69) 25%, transparent);
  animation-delay: -12s;
}

@keyframes eadv-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(2%, -3%) scale(1.04); }
  66% { transform: translate(-2%, 2%) scale(0.97); }
}

/* ── Hero pleine largeur ── */
.eadv-hero {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    165deg,
    var(--eadv-hero-start) 0%,
    var(--eadv-hero-mid) 45%,
    transparent 100%
  );
  text-align: center;
  padding: clamp(3rem, 8vw, 5.5rem) var(--eadv-page-pad) clamp(3.5rem, 7vw, 5rem);
}

.eadv-badge {
  display: inline-block;
  padding: 0.45rem 1.35rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 30%, transparent);
  background: color-mix(in srgb, white 70%, var(--eadv-primary-container, #e8dff5));
  backdrop-filter: blur(8px);
  color: var(--eadv-on-surface-variant, #5c4a6e);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.eadv-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.eadv-brand__logo {
  height: clamp(3.5rem, 8vw, 5rem);
  width: auto;
  filter: drop-shadow(0 8px 20px color-mix(in srgb, var(--eadv-primary, #b399d4) 20%, transparent));
}

.eadv-brand__name {
  font-size: clamp(2.75rem, 8vw, 5rem);
  line-height: 1.02;
  color: var(--eadv-primary, #9b6fc4);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--eadv-primary, #b399d4) 40%, transparent);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

.eadv-tagline {
  font-family: var(--eadv-font-heading);
  font-style: italic;
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  color: var(--eadv-text-muted, #6b7280);
  margin-bottom: 1.75rem;
  font-weight: 400;
  max-width: 52rem;
  margin-inline: auto;
}

.eadv-intro {
  max-width: 52rem;
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.8;
  color: var(--eadv-text-main, #444);
}

.eadv-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.9rem 2.25rem;
  border-radius: 9999px;
  background: var(--eadv-cta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 32px color-mix(in srgb, var(--eadv-cta) 38%, transparent);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.eadv-cta:hover {
  background: var(--eadv-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--eadv-cta) 45%, transparent);
}

/* ── Navigation onglets ── */
.eadv-tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, white 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 10%, #eee);
}

.eadv-tabs-bar {
  max-width: var(--eadv-page-max);
  margin: 0 auto;
  padding: 0.75rem var(--eadv-page-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.eadv-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1 1 auto;
  min-width: 0;
}

.eadv-tabs-actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .eadv-tabs-actions { display: none; }
}

.eadv-tabs-action {
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--eadv-primary, #9b6fc4);
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 20%, #e8e4ec);
  background: color-mix(in srgb, white 80%, var(--eadv-primary-container, #e8dff5));
}

.eadv-tabs::-webkit-scrollbar { display: none; }

.eadv-tab {
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--eadv-text-muted, #6b7280);
  text-decoration: none;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.eadv-tab:hover {
  color: var(--eadv-primary, #9b6fc4);
  background: color-mix(in srgb, var(--eadv-primary-container, #e8dff5) 55%, white);
}

.eadv-tab--active {
  color: #fff;
  background: linear-gradient(135deg, var(--eadv-primary, #b399d4), color-mix(in srgb, var(--eadv-primary, #b399d4) 75%, var(--eadv-tertiary, #ff8c69)));
  box-shadow: 0 6px 20px color-mix(in srgb, var(--eadv-primary, #b399d4) 30%, transparent);
}

/* ── Contenu catalogue ── */
.eadv-content {
  position: relative;
  z-index: 1;
  max-width: var(--eadv-page-max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) var(--eadv-page-pad) clamp(4rem, 8vw, 6rem);
}

.eadv-section-head {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: 48rem;
}

@media (min-width: 1024px) {
  .eadv-section-head {
    max-width: 70%;
  }
}

.eadv-section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eadv-primary, #9b6fc4);
}

.eadv-section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.08;
  color: var(--eadv-text-main, #2d2d2d);
  margin-bottom: 0.65rem;
}

.eadv-section-subtitle {
  font-family: var(--eadv-font-heading);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--eadv-text-muted, #6b7280);
  line-height: 1.55;
}

/* ── Grille bento catalogue ── */
.eadv-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

@media (min-width: 640px) {
  .eadv-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .eadv-cards {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem 1.75rem;
  }

  .eadv-card { grid-column: span 4; }
  .eadv-card--chiffre-cle { grid-column: span 4; }
  .eadv-card--chiffre-cle.eadv-card--featured { grid-column: span 8; }
  .eadv-card--fonctionnalite { grid-column: span 4; }
  .eadv-card--comparatif { grid-column: span 6; }
  .eadv-card--tableau-comparatif { grid-column: 1 / -1; }
  .eadv-card--liste-avantages { grid-column: span 6; }
  .eadv-card--temoignage { grid-column: span 6; }
  .eadv-card--temoignage:nth-child(odd) { grid-column: span 5; }
  .eadv-card--temoignage:nth-child(even) { grid-column: span 7; }
}

@media (min-width: 1400px) {
  .eadv-card--chiffre-cle.eadv-card--featured {
    grid-column: span 6;
    grid-row: span 1;
  }
}

/* ── Cartes argument — style vitrine ── */
.eadv-card {
  position: relative;
  border-radius: 1.75rem;
  cursor: pointer;
  outline: none;
  min-height: 11rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.eadv-card:nth-child(3n+1) { border-radius: 1.75rem 2.25rem 1.75rem 1.5rem; }
.eadv-card:nth-child(3n+2) { border-radius: 2rem 1.5rem 2rem 1.75rem; }
.eadv-card:nth-child(3n)   { border-radius: 1.5rem 1.75rem 2.25rem 1.75rem; }

.eadv-card__glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--eadv-primary, #b399d4) 25%, transparent),
    color-mix(in srgb, var(--eadv-tertiary, #ff8c69) 15%, transparent),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 0;
}

.eadv-card__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0;
  border-radius: inherit;
  background: color-mix(in srgb, white 82%, var(--eadv-secondary-container, #fff5f7));
  backdrop-filter: blur(12px);
  border: 1px solid color-mix(in srgb, white 60%, var(--eadv-primary, #b399d4) 12%);
  box-shadow:
    0 1px 0 color-mix(in srgb, white 90%, transparent) inset,
    0 12px 40px color-mix(in srgb, var(--eadv-primary, #b399d4) 6%, transparent);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.eadv-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.35rem, 2.5vw, 2rem);
}

/* Image de fond + overlay lisibilité */
.eadv-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.eadv-card__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.eadv-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 38%,
      rgba(255, 250, 252, 0.82) 68%,
      rgba(255, 255, 255, 0.9) 100%
    );
  transition: background 0.35s;
}

.eadv-card--has-cover .eadv-card__inner {
  background: #fff;
}

.eadv-card--has-cover[data-eadv-accent] .eadv-card__inner,
.eadv-card--has-cover.eadv-card--temoignage .eadv-card__inner,
.eadv-card--has-cover.eadv-card--tableau-comparatif .eadv-card__inner {
  background: transparent;
}

.eadv-card--has-cover:hover .eadv-card__bg-img,
.eadv-card--has-cover:focus-visible .eadv-card__bg-img {
  transform: scale(1.06);
}

.eadv-card--has-cover:hover .eadv-card__overlay,
.eadv-card--has-cover:focus-visible .eadv-card__overlay {
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.8) 40%,
      rgba(255, 248, 252, 0.75) 70%,
      rgba(255, 255, 255, 0.85) 100%
    );
}

.eadv-card--has-cover .eadv-card__title,
.eadv-card--has-cover .eadv-card__value {
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.eadv-card--has-cover .eadv-card__quote {
  background: color-mix(in srgb, white 55%, transparent);
  backdrop-filter: blur(4px);
  padding: 0.65rem 0 0.65rem 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

.eadv-card:hover,
.eadv-card:focus-visible {
  transform: translateY(-4px) rotate(-0.25deg);
}

.eadv-card:hover .eadv-card__glow,
.eadv-card:focus-visible .eadv-card__glow {
  opacity: 1;
}

.eadv-card:hover .eadv-card__inner,
.eadv-card:focus-visible .eadv-card__inner {
  box-shadow:
    0 1px 0 color-mix(in srgb, white 90%, transparent) inset,
    0 24px 56px color-mix(in srgb, var(--eadv-primary, #b399d4) 14%, transparent);
}

/* Accents par position */
.eadv-card[data-eadv-accent="0"] .eadv-card__inner {
  background: linear-gradient(145deg, #fff 0%, color-mix(in srgb, var(--eadv-primary-container, #e8dff5) 35%, white) 100%);
}
.eadv-card[data-eadv-accent="1"] .eadv-card__inner {
  background: linear-gradient(155deg, #fff 0%, color-mix(in srgb, var(--eadv-secondary-container, #ffd1dc) 30%, white) 100%);
}
.eadv-card[data-eadv-accent="2"] .eadv-card__inner {
  background: linear-gradient(160deg, #fff 0%, color-mix(in srgb, var(--eadv-tertiary, #ff8c69) 12%, white) 100%);
}

/* Variantes par type */
.eadv-card--chiffre-cle .eadv-card__value {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.eadv-card--chiffre-cle.eadv-card--featured .eadv-card__inner {
  /* padding moved to __content */
}

.eadv-card--chiffre-cle.eadv-card--featured .eadv-card__content {
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

@media (min-width: 1024px) {
  .eadv-card--chiffre-cle.eadv-card--featured .eadv-card__content {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem 2rem;
  }

  .eadv-card--chiffre-cle.eadv-card--featured .eadv-card__type { width: 100%; }
  .eadv-card--chiffre-cle.eadv-card--featured .eadv-card__value { flex: 0 0 auto; margin: 0; }
  .eadv-card--chiffre-cle.eadv-card--featured .eadv-card__title,
  .eadv-card--chiffre-cle.eadv-card--featured .eadv-card__subtitle { flex: 1 1 12rem; }
  .eadv-card--chiffre-cle.eadv-card--featured .eadv-card__cta { width: 100%; }
}

.eadv-card--temoignage .eadv-card__inner {
  background: linear-gradient(165deg, #fff 0%, color-mix(in srgb, var(--eadv-secondary-container, #ffd1dc) 22%, white) 100%);
}

.eadv-card--temoignage .eadv-card__quote {
  font-family: var(--eadv-font-heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--eadv-text-main, #444);
  margin: 0.75rem 0 0;
  padding-left: 1rem;
  border-left: 3px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 50%, transparent);
}

.eadv-card--tableau-comparatif .eadv-card__inner {
  background: linear-gradient(120deg, color-mix(in srgb, var(--eadv-primary-container, #e8dff5) 25%, white), #fff 50%);
}

.eadv-card--comparatif .eadv-card__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.eadv-card--comparatif .eadv-card__metrics li {
  flex: 1 1 5rem;
  min-width: 4.5rem;
}

.eadv-card--comparatif .eadv-card__metric-val {
  display: block;
  font-family: var(--eadv-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eadv-primary, #9b6fc4);
  line-height: 1.1;
}

.eadv-card--comparatif .eadv-card__metric-lbl {
  display: block;
  font-size: 0.72rem;
  color: var(--eadv-text-muted, #6b7280);
  margin-top: 0.2rem;
  line-height: 1.3;
}

.eadv-card--liste-avantages .eadv-card__perks {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.eadv-card--liste-avantages .eadv-card__perks li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--eadv-text-main, #444);
  line-height: 1.5;
  margin-bottom: 0.35rem;
}

.eadv-card--liste-avantages .eadv-card__perks li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--eadv-primary, #b399d4);
  font-size: 0.65rem;
  top: 0.15rem;
}

.eadv-card__type {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eadv-primary, #9b6fc4);
  margin-bottom: 0.65rem;
}

.eadv-card__title {
  font-family: var(--eadv-font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--eadv-text-main, #2d2d2d);
  line-height: 1.25;
}

.eadv-card__value {
  font-family: var(--eadv-font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--eadv-primary, #9b6fc4);
  margin-bottom: 0.35rem;
}

.eadv-card__subtitle,
.eadv-card__body {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--eadv-text-muted, #6b7280);
}

.eadv-card__body { margin-top: 0.5rem; }

.eadv-card__cta {
  margin-top: auto;
  padding-top: 1.15rem;
  text-align: right;
}

.eadv-card__cta span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--eadv-primary, #9b6fc4);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--eadv-primary, #b399d4) 40%, transparent);
}

/* ── Rails latéraux ── */
.eadv-rail {
  position: fixed;
  z-index: 40;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.55rem;
  background: color-mix(in srgb, white 90%, transparent);
  backdrop-filter: blur(16px);
  border: 1px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 15%, #e8e4ec);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--eadv-primary, #b399d4) 8%, transparent);
}

@media (min-width: 1024px) {
  .eadv-rail { display: flex; }
}

/* Outils PDF / QR sur mobile — mode cartes uniquement (en bulles → speed dial) */
@media (max-width: 1023px) {
  .eadv-present:not(.eadv-present--bullets) .eadv-rail--right {
    display: flex;
    right: 0.35rem;
    padding: 0.4rem 0.3rem;
    gap: 0.3rem;
    border-radius: 1rem;
  }

  .eadv-present--bullets .eadv-rail--right {
    display: none !important;
  }

  .eadv-rail--right .eadv-rail-btn {
    width: 2.35rem;
    min-height: 2.15rem;
  }

  .eadv-rail--right .eadv-rail-btn__label {
    font-size: 0.58rem;
  }
}

/* Mobile / tablette : rail sections à gauche (évite le scroll horizontal des onglets) */
@media (max-width: 1023px) {
  .eadv-rail--sections {
    display: flex;
    left: 0.35rem;
    padding: 0.55rem 0.35rem;
    gap: 0.4rem;
    border-radius: 1.1rem;
  }

  .eadv-rail--sections .eadv-rail-dot {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    text-indent: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--eadv-primary, #b399d4) 12%, white);
    border: 1.5px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 35%, #ddd);
    color: var(--eadv-primary, #9b6fc4);
    font-size: 0.72rem;
    font-weight: 700;
  }

  .eadv-rail--sections .eadv-rail-dot--active {
    width: 2.15rem;
    height: 2.15rem;
    background: var(--eadv-primary, #9b6fc4);
    border-color: var(--eadv-primary, #9b6fc4);
    color: #fff;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--eadv-primary, #9b6fc4) 35%, transparent);
  }

  .eadv-rail-dot__num {
    display: block;
    line-height: 1;
  }

  .eadv-present:not(.eadv-present--bullets) .eadv-content,
  .eadv-present:not(.eadv-present--bullets) .eadv-hero,
  .eadv-present:not(.eadv-present--bullets) .eadv-mobile-section {
    padding-left: 2.85rem;
    padding-right: 2.85rem;
  }

  .eadv-tabs-wrap--desktop {
    display: none;
  }

  .eadv-mobile-section {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    position: sticky;
    top: 0;
    z-index: 28;
    margin: 0 auto;
    max-width: var(--eadv-page-max);
    padding: 0.55rem var(--eadv-page-pad);
    background: color-mix(in srgb, white 90%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 10%, #eee);
  }

  .eadv-mobile-section__idx {
    flex: 0 0 auto;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--eadv-primary, #9b6fc4);
    background: color-mix(in srgb, var(--eadv-primary, #9b6fc4) 12%, white);
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
  }

  .eadv-mobile-section__title {
    font-size: 0.85rem;
    font-weight: 650;
    color: var(--eadv-text, #1f2937);
    line-height: 1.25;
  }
}

@media (min-width: 1024px) {
  .eadv-mobile-section { display: none; }
  .eadv-rail-dot__num { display: none; }
}

.eadv-rail--left {
  left: 0.5rem;
  border-radius: 1.25rem;
}

.eadv-rail--right {
  right: 0.5rem;
  border-radius: 1.25rem;
}

.eadv-rail-dot {
  display: block;
  width: 5px;
  height: 1.35rem;
  border-radius: 6px;
  background: color-mix(in srgb, var(--eadv-primary, #b399d4) 25%, #ddd);
  transition: height 0.25s, background 0.25s, width 0.25s, color 0.2s, box-shadow 0.2s;
  overflow: hidden;
  text-indent: -9999px;
  text-decoration: none;
}

.eadv-rail-dot--active {
  height: 2.25rem;
  width: 6px;
  background: var(--eadv-primary, #b399d4);
}

.eadv-rail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  min-height: 2.5rem;
  padding: 0.35rem;
  border-radius: 0.85rem;
  color: var(--eadv-text-muted, #6b7280);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.eadv-rail-btn:hover {
  background: color-mix(in srgb, var(--eadv-primary-container, #e8dff5) 70%, white);
  color: var(--eadv-primary, #9b6fc4);
}

.eadv-rail-btn__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Footer ── */
.eadv-footer {
  position: relative;
  z-index: 1;
  max-width: var(--eadv-page-max);
  margin: 0 auto;
  padding: 2rem var(--eadv-page-pad) 3.5rem;
  border-top: 1px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 10%, #eee);
  font-size: 0.75rem;
  color: var(--eadv-text-muted, #9ca3af);
  text-align: center;
  line-height: 1.6;
}

/* ── Modal source premium (split + carousel) ── */
body.eadv-modal-open {
  overflow: hidden;
}

.eadv-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 1.5vw, 1.25rem);
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, color-mix(in srgb, var(--eadv-primary, #b399d4) 22%, transparent), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 80%, color-mix(in srgb, var(--eadv-tertiary, #ff8c69) 18%, transparent), transparent 50%),
    rgba(28, 22, 36, 0.58);
  backdrop-filter: blur(12px);
  overflow-y: auto;
}

.eadv-modal {
  position: relative;
  width: min(52rem, 96vw);
  max-height: min(92vh, 58rem);
  overflow: hidden;
  border-radius: 1.75rem;
  background: linear-gradient(155deg, #fff 0%, color-mix(in srgb, var(--eadv-secondary-container, #fff5f7) 42%, white) 100%);
  border: 1px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 14%, #e8e4ec);
  box-shadow:
    0 28px 80px rgba(20, 12, 30, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.eadv-modal--split {
  width: min(96rem, 96vw);
  height: min(90vh, 62rem);
  max-height: min(90vh, 62rem);
}

.eadv-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 0;
  background: color-mix(in srgb, white 82%, transparent);
  color: var(--eadv-text-muted, #6b7280);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.eadv-modal__close:hover {
  background: #fff;
  color: var(--eadv-text-main, #2d2438);
}

.eadv-modal__shell {
  display: grid;
  grid-template-columns: 1fr;
  max-height: min(92vh, 58rem);
  height: 100%;
}

@media (min-width: 900px) {
  .eadv-modal--split .eadv-modal__shell {
    grid-template-columns: minmax(22rem, 0.9fr) minmax(28rem, 1.25fr);
    height: 100%;
    max-height: none;
  }
}

.eadv-modal__content {
  padding: clamp(1.5rem, 3.2vw, 2.75rem);
  overflow-y: auto;
  max-height: min(92vh, 58rem);
}

.eadv-modal--split .eadv-modal__content {
  max-height: none;
  height: 100%;
}

.eadv-modal__hero {
  margin-bottom: 1.5rem;
  padding-right: 1.75rem;
}

.eadv-modal__kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eadv-primary, #9b6fc4);
  margin: 0 0 0.7rem;
}

.eadv-modal__title {
  font-family: var(--eadv-font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1.18;
  margin: 0 0 0.7rem;
  color: var(--eadv-text-main, #2d2438);
}

.eadv-modal__value {
  font-family: var(--eadv-font-heading);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 700;
  color: var(--eadv-primary, #9b6fc4);
  margin: 0 0 0.7rem;
}

.eadv-modal__lead,
.eadv-modal__desc {
  margin: 0 0 0.7rem;
  color: var(--eadv-text-muted, #6b7280);
  line-height: 1.6;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.eadv-modal__desc {
  color: var(--eadv-text-main, #3a3145);
}

.eadv-modal__section {
  margin-top: 1.15rem;
  padding: 1.1rem 1.15rem;
  border-radius: 1.15rem;
  background: color-mix(in srgb, white 78%, var(--eadv-primary-container, #e8dff5));
  border: 1px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 12%, #eee);
}

.eadv-modal__section-title {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eadv-primary, #9b6fc4);
}

.eadv-modal__facts {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.eadv-modal__fact {
  display: grid;
  gap: 0.15rem;
}

.eadv-modal__fact dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--eadv-text-muted, #9ca3af);
}

.eadv-modal__fact dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--eadv-text-main, #2d2438);
  word-break: break-word;
}

.eadv-modal__link {
  color: var(--eadv-primary, #9b6fc4);
  text-decoration: underline;
}

.eadv-modal__muted,
.eadv-modal__empty-media {
  margin: 0;
  font-size: 0.9rem;
  color: var(--eadv-text-muted, #9ca3af);
  font-style: italic;
}

.eadv-modal__media {
  position: relative;
  min-height: 18rem;
  background: linear-gradient(160deg, #1a1322 0%, #2c2038 55%, #1f1728 100%);
  border-left: 1px solid color-mix(in srgb, white 8%, transparent);
}

.eadv-modal--split .eadv-modal__media {
  min-height: 100%;
  height: 100%;
}

@media (max-width: 899px) {
  .eadv-modal__media {
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, white 8%, transparent);
    min-height: 18rem;
  }

  .eadv-modal--split {
    width: min(96vw, 42rem);
    height: auto;
    max-height: min(94vh, 64rem);
    overflow-y: auto;
  }

  .eadv-modal--split .eadv-modal__content {
    max-height: none;
    height: auto;
  }

  .eadv-modal--split .eadv-modal__shell {
    max-height: none;
    height: auto;
  }

  .eadv-modal--split .eadv-modal__media {
    min-height: min(48vh, 22rem);
    height: auto;
  }
}

.eadv-carousel {
  position: relative;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
}

.eadv-carousel__viewport {
  position: relative;
  flex: 1 1 auto;
  min-height: 18rem;
}

@media (min-width: 900px) {
  .eadv-carousel__viewport {
    min-height: 100%;
  }
}

.eadv-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.75rem);
}

.eadv-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.eadv-carousel__img,
.eadv-carousel__video,
.eadv-carousel__iframe {
  width: 100%;
  height: 100%;
  max-height: min(70vh, 42rem);
  border: 0;
  border-radius: 1.15rem;
  background: #050508;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.eadv-modal--split .eadv-carousel__img,
.eadv-modal--split .eadv-carousel__video,
.eadv-modal--split .eadv-carousel__iframe {
  max-height: 100%;
}

.eadv-carousel__img,
.eadv-carousel__video {
  object-fit: contain;
}

.eadv-carousel__media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eadv-carousel__media-frame.is-loading .eadv-carousel__img,
.eadv-carousel__media-frame.is-loading .eadv-carousel__video,
.eadv-carousel__media-frame.is-loading .eadv-carousel__iframe {
  opacity: 0;
}

.eadv-carousel__media-frame:not(.is-loading) .eadv-carousel__img,
.eadv-carousel__media-frame:not(.is-loading) .eadv-carousel__video,
.eadv-carousel__media-frame:not(.is-loading) .eadv-carousel__iframe {
  opacity: 1;
  transition: opacity 0.35s ease;
}

.eadv-carousel__media-frame.is-error .eadv-carousel__img,
.eadv-carousel__media-frame.is-error .eadv-carousel__video,
.eadv-carousel__media-frame.is-error .eadv-carousel__iframe {
  display: none;
}

.eadv-carousel__skeleton {
  position: absolute;
  inset: clamp(1rem, 2vw, 1.75rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(145deg, color-mix(in srgb, #3a2f4a 70%, #121018), color-mix(in srgb, #1a1322 80%, #2c2038));
  border: 1px solid color-mix(in srgb, white 8%, transparent);
  overflow: hidden;
}

.eadv-carousel__skeleton[hidden] {
  display: none;
}

.eadv-carousel__skeleton-pulse {
  width: min(68%, 18rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eadv-carousel__skeleton-bar {
  height: 0.85rem;
  border-radius: 999px;
  background: color-mix(in srgb, white 18%, transparent);
  animation: eadv-skeleton-pulse 1.4s ease-in-out infinite;
}

.eadv-carousel__skeleton-bar--lg {
  width: 100%;
  height: 7.5rem;
  border-radius: 1rem;
}

.eadv-carousel__skeleton-bar--md {
  width: 78%;
  animation-delay: 0.12s;
}

.eadv-carousel__skeleton-bar--sm {
  width: 52%;
  animation-delay: 0.24s;
}

.eadv-carousel__skeleton-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, white 62%, transparent);
}

.eadv-carousel__error {
  position: absolute;
  inset: clamp(1rem, 2vw, 1.75rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 1.15rem;
  background: color-mix(in srgb, #1a1322 90%, #3a2f4a);
  border: 1px solid color-mix(in srgb, white 10%, transparent);
  color: color-mix(in srgb, white 78%, transparent);
  text-align: center;
  padding: 1.5rem;
}

.eadv-carousel__error[hidden] {
  display: none;
}

.eadv-carousel__error p {
  margin: 0;
  font-size: 0.92rem;
}

.eadv-carousel__error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: color-mix(in srgb, #ff8c69 35%, transparent);
  color: #ffd1c2;
  font-weight: 800;
}

@keyframes eadv-skeleton-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.eadv-carousel__badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: color-mix(in srgb, var(--eadv-primary, #9b6fc4) 75%, black);
  backdrop-filter: blur(8px);
}

.eadv-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 0;
  background: color-mix(in srgb, white 88%, transparent);
  color: #2d2438;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.eadv-carousel__nav:hover { background: #fff; }
.eadv-carousel__nav--prev { left: 0.75rem; }
.eadv-carousel__nav--next { right: 0.75rem; }

.eadv-carousel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem 1rem;
}

.eadv-carousel__dots {
  display: flex;
  gap: 0.4rem;
}

.eadv-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: color-mix(in srgb, white 35%, transparent);
  cursor: pointer;
  transition: width 0.2s, background 0.2s;
}

.eadv-carousel__dot.is-active {
  width: 1.15rem;
  background: #fff;
}

.eadv-carousel__counter {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, white 72%, transparent);
}

.eadv-preview-banner {
  position: relative;
  z-index: 50;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem;
}

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

.eadv-footer__sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════
   Vue Bullets — hub radial, barre onglets, toggle (MVP → V2)
   ═══════════════════════════════════════════════════════════ */

.eadv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.eadv-view-toggle {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 999px;
  background: color-mix(in srgb, white 82%, var(--eadv-primary-container, #e8dff5));
  border: 1px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 18%, #e8e4ec);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--eadv-primary, #b399d4) 10%, transparent);
}

.eadv-view-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--eadv-text-muted, #6b7280);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.eadv-view-toggle__btn:hover {
  color: var(--eadv-primary, #9b6fc4);
}

.eadv-view-toggle__btn.is-active {
  background: var(--eadv-primary, #9b6fc4);
  color: #fff;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--eadv-primary, #9b6fc4) 35%, transparent);
}

.eadv-view-toggle__icon {
  font-size: 0.85rem;
  line-height: 1;
}

.eadv-personas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.eadv-persona {
  border: 1px solid color-mix(in srgb, var(--eadv-primary, #9b6fc4) 22%, #e8e4ec);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: #fff;
  color: var(--eadv-text-muted, #6b7280);
  font-size: 0.7rem;
  font-weight: 650;
  text-decoration: none;
}

.eadv-persona.is-active {
  background: var(--eadv-primary, #9b6fc4);
  color: #fff;
}

/* ── Hub ── */
.eadv-bullet-hub {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto 2rem;
  scroll-margin-top: 5.5rem;
  scroll-margin-bottom: 6rem;
}

.eadv-bullet-hub__stage {
  position: relative;
  min-height: 0;
}

.eadv-bullet-hub__center,
.eadv-bullet-map__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  background: linear-gradient(165deg, #fff 0%, color-mix(in srgb, var(--eadv-secondary-container, #ffd1dc) 35%, white) 100%);
  border: 1px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 15%, #e8e4ec);
  box-shadow:
    0 12px 40px color-mix(in srgb, var(--eadv-primary, #b399d4) 12%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.eadv-bullet-hub__center {
  max-width: 14rem;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  border-radius: 50%;
  aspect-ratio: 1;
}

.eadv-bullet-hub__logo {
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
  margin-bottom: 0.35rem;
}

.eadv-bullet-hub__badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eadv-primary, #9b6fc4);
  margin-bottom: 0.35rem;
}

.eadv-bullet-hub__title {
  font-family: var(--eadv-font-heading);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  line-height: 1.25;
  margin: 0;
  color: var(--eadv-text-main, #2d2438);
}

.eadv-bullet-hub__subtitle {
  font-size: 0.72rem;
  color: var(--eadv-text-muted, #6b7280);
  margin: 0.35rem 0 0;
  line-height: 1.35;
}

.eadv-bullet-hub__empty {
  text-align: center;
  color: var(--eadv-text-muted, #9ca3af);
  font-style: italic;
  padding: 2rem;
}

/* ── Vue bilatérale (présentations client) — texte toujours visible ── */
.eadv-bullet-map {
  display: none;
}

.eadv-bullet-map__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.eadv-bullet-map__center {
  width: 13.5rem;
  height: 13.5rem;
  max-width: 13.5rem;
  margin: 0 auto;
  padding: 1.1rem;
  border-radius: 50%;
  flex: 0 0 auto;
}

@media (min-width: 900px) {
  .eadv-bullet-hub--bilateral .eadv-bullet-map {
    display: grid;
    grid-template-columns: 1fr minmax(12rem, 14rem) 1fr;
    gap: 1.25rem 1.5rem;
    align-items: center;
    padding: 1rem 0.5rem 1.5rem;
  }

  .eadv-bullet-hub--bilateral .eadv-bullet-hub__list {
    display: none !important;
  }

  .eadv-bullet-map__col--left .eadv-bullet--map {
    justify-content: flex-end;
    text-align: right;
  }

  .eadv-bullet-map__col--right .eadv-bullet--map {
    justify-content: flex-start;
    text-align: left;
  }
}

/* Orbit / liste classique */
.eadv-bullet-hub__orbit {
  display: none;
}

.eadv-bullet-hub__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.eadv-bullet-hub__list > li {
  margin: 0;
}

.eadv-bullet--radial,
.eadv-bullet--map {
  display: none !important;
}

@media (min-width: 768px) {
  .eadv-bullet-hub:not(.eadv-bullet-hub--bilateral) .eadv-bullet-hub__stage {
    min-height: 32rem;
  }

  .eadv-bullet-hub:not(.eadv-bullet-hub--bilateral) .eadv-bullet-hub__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12.5rem;
    max-width: 12.5rem;
    margin: 0;
    z-index: 3;
  }

  .eadv-bullet-hub:not(.eadv-bullet-hub--bilateral) .eadv-bullet-hub__orbit {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
  }

  .eadv-bullet-hub:not(.eadv-bullet-hub--bilateral) .eadv-bullet-hub__list {
    display: none !important;
  }

  .eadv-bullet-hub:not(.eadv-bullet-hub--bilateral) .eadv-bullet--radial {
    display: flex !important;
  }

  .eadv-bullet-hub:not(.eadv-bullet-hub--bilateral) .eadv-bullet--list {
    display: none !important;
  }
}

@media (min-width: 900px) {
  .eadv-bullet-hub--bilateral .eadv-bullet--map {
    display: flex !important;
  }

  .eadv-bullet-hub--bilateral .eadv-bullet--list {
    display: none !important;
  }
}

/* Masquer focus panel legacy si présent */
.eadv-bullet-focus {
  display: none !important;
}

/* ── Bullet node ── */
.eadv-bullet {
  --eadv-bullet-color: var(--eadv-primary, #9b6fc4);
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: inherit;
  transition: opacity 0.25s, transform 0.25s, filter 0.25s;
}

.eadv-bullet.is-dimmed {
  opacity: 0.28;
  filter: grayscale(0.4);
}

.eadv-bullet.is-highlighted .eadv-bullet__node {
  transform: scale(1.12);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--eadv-bullet-color) 45%, transparent);
}

.eadv-bullet__node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--eadv-bullet-color) 18%, white);
  border: 2px solid var(--eadv-bullet-color);
  color: var(--eadv-bullet-color);
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s;
}

.eadv-bullet:hover .eadv-bullet__node,
.eadv-bullet:focus-visible .eadv-bullet__node {
  background: var(--eadv-bullet-color);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--eadv-bullet-color) 40%, transparent);
}

.eadv-bullet__num {
  font-size: 0.95rem;
  line-height: 1;
}

.eadv-bullet__icon {
  position: absolute;
  bottom: -0.15rem;
  right: -0.15rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--eadv-bullet-color) 40%, #ddd);
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eadv-bullet-color);
}

.eadv-bullet__label {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.eadv-bullet__label-text {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--eadv-text-main, #2d2438);
}

.eadv-bullet__meta {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--eadv-text-muted, #9ca3af);
}

.eadv-bullet__spoke {
  display: none;
}

/* Radial layout (peu de points, section) */
@media (min-width: 768px) {
  .eadv-bullet--radial {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max-content;
    max-width: 10rem;
    pointer-events: auto;
    z-index: 4;
    transform:
      translate(-50%, -50%)
      rotate(var(--eadv-bullet-angle, 0deg))
      translateY(calc(-1 * clamp(10.5rem, 26vw, 14rem)))
      rotate(calc(-1 * var(--eadv-bullet-angle, 0deg)));
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
  }

  .eadv-bullet--radial .eadv-bullet__spoke {
    display: none;
  }

  .eadv-bullet--radial .eadv-bullet__label {
    align-items: center;
    text-align: center;
    background: color-mix(in srgb, white 90%, transparent);
    backdrop-filter: blur(6px);
    padding: 0.25rem 0.55rem;
    border-radius: 0.65rem;
    box-shadow: 0 2px 10px color-mix(in srgb, var(--eadv-bullet-color) 12%, transparent);
  }

  .eadv-bullet--radial .eadv-bullet__label-text {
    font-size: 0.74rem;
    max-width: 9rem;
  }
}

/* Bilatéral HEMLIBRA — label toujours visible */
.eadv-bullet--map {
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 1rem;
  background: color-mix(in srgb, white 94%, var(--eadv-bullet-color));
  border: 1px solid color-mix(in srgb, var(--eadv-bullet-color) 28%, #e8e4ec);
  box-shadow: 0 3px 14px color-mix(in srgb, var(--eadv-bullet-color) 10%, transparent);
  position: relative;
}

.eadv-bullet--map:hover,
.eadv-bullet--map:focus-visible,
.eadv-bullet--map.is-highlighted {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--eadv-bullet-color) 55%, #e8e4ec);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--eadv-bullet-color) 22%, transparent);
}

.eadv-bullet--map.is-dimmed {
  opacity: 0.28;
}

.eadv-bullet--map .eadv-bullet__spoke {
  display: none;
}

.eadv-bullet--map .eadv-bullet__label {
  flex: 1 1 auto;
  min-width: 0;
}

.eadv-bullet--map .eadv-bullet__label-text {
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.eadv-bullet--map .eadv-bullet__meta {
  margin-top: 0.15rem;
}

.eadv-bullet--align-left {
  flex-direction: row-reverse;
}

.eadv-bullet--align-left .eadv-bullet__label {
  align-items: flex-end;
  text-align: right;
}

.eadv-bullet--align-right {
  flex-direction: row;
}

.eadv-bullet--align-right .eadv-bullet__label {
  align-items: flex-start;
  text-align: left;
}

/* Trait vers le centre */
@media (min-width: 900px) {
  .eadv-bullet-map__col--left .eadv-bullet--map::after,
  .eadv-bullet-map__col--right .eadv-bullet--map::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 1.1rem;
    height: 1px;
    background: color-mix(in srgb, var(--eadv-bullet-color) 45%, transparent);
    pointer-events: none;
  }

  .eadv-bullet-map__col--left .eadv-bullet--map::after {
    right: -1.15rem;
  }

  .eadv-bullet-map__col--right .eadv-bullet--map::before {
    left: -1.15rem;
  }
}

.eadv-present--scope-all .eadv-bullet-hub {
  max-width: 78rem;
}

/* List layout (mobile) */
.eadv-bullet--list {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 1.1rem;
  background: color-mix(in srgb, white 92%, var(--eadv-primary-container, #e8dff5));
  border: 1px solid color-mix(in srgb, var(--eadv-bullet-color) 22%, #e8e4ec);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--eadv-bullet-color) 8%, transparent);
}

.eadv-bullet--list:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--eadv-bullet-color) 45%, #e8e4ec);
}

.eadv-bullet--list .eadv-bullet__spoke {
  display: none;
}

/* Type filter bar */
.eadv-bullet-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0 0.5rem;
  position: relative;
  z-index: 5;
}

.eadv-bullet-type {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 20%, #e8e4ec);
  background: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--eadv-text-muted, #6b7280);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.eadv-bullet-type.is-active,
.eadv-bullet-type:hover {
  background: color-mix(in srgb, var(--eadv-primary, #9b6fc4) 12%, white);
  color: var(--eadv-primary, #9b6fc4);
  border-color: color-mix(in srgb, var(--eadv-primary, #9b6fc4) 40%, #e8e4ec);
}

.eadv-bullet-type__lbl {
  letter-spacing: 0.02em;
}

/* Speed dial mobile — au-dessus du dock sections (jamais masqué) */
.eadv-speed-dial {
  display: none;
  position: fixed;
  left: max(0.85rem, env(safe-area-inset-left, 0px));
  right: auto;
  bottom: calc(
    var(--eadv-dock-inset) + var(--eadv-dock-h) + var(--eadv-chrome-gap) + env(safe-area-inset-bottom, 0px)
  );
  z-index: 55;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0.55rem;
  pointer-events: none;
}

.eadv-speed-dial > * {
  pointer-events: auto;
}

.eadv-speed-dial__trigger {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, #fff 35%, transparent);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--eadv-primary, #9b6fc4) 88%, white), var(--eadv-primary, #9b6fc4));
  color: #fff;
  box-shadow:
    0 12px 32px color-mix(in srgb, var(--eadv-primary, #9b6fc4) 42%, transparent),
    inset 0 1px 0 color-mix(in srgb, #fff 28%, transparent);
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eadv-speed-dial__trigger:active {
  transform: scale(0.96);
}

.eadv-speed-dial__icon {
  font-size: 1.05rem;
  line-height: 1;
  grid-area: 1 / 1;
  transition: opacity 0.2s, transform 0.2s;
}

.eadv-speed-dial__icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}

.eadv-speed-dial.is-open .eadv-speed-dial__icon:not(.eadv-speed-dial__icon--close) {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}

.eadv-speed-dial.is-open .eadv-speed-dial__icon--close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.eadv-speed-dial__menu {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0.45rem;
  padding-bottom: 0.15rem;
}

.eadv-speed-dial__menu[hidden] {
  display: none !important;
}

.eadv-speed-dial__item {
  position: relative;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  padding: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  text-decoration: none;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--eadv-primary, #b399d4) 18%, transparent);
  font-size: 0.95rem;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--eadv-primary, #b399d4) 20%, #e8e4ec);
  color: var(--eadv-primary, #9b6fc4);
  font-weight: 700;
}

.eadv-speed-dial__item--tool {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.eadv-speed-dial__tip {
  position: absolute;
  left: calc(100% + 0.45rem);
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  padding: 0.25rem 0.55rem;
  border-radius: 0.55rem;
  background: color-mix(in srgb, #1f2937 92%, transparent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0.95;
}

@media (max-width: 899px) {
  .eadv-bullet-types--bar {
    display: none;
  }

  .eadv-present--bullets .eadv-speed-dial {
    display: flex;
  }
}

@media (min-width: 900px) {
  .eadv-speed-dial {
    display: none !important;
  }
}

.eadv-mobile-section {
  display: none;
}

/* ── Dock sections flottant (macro onglets) ── */
.eadv-bullet-tab-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding:
    0
    max(var(--eadv-dock-inset), env(safe-area-inset-left, 0px))
    calc(var(--eadv-dock-inset) + env(safe-area-inset-bottom, 0px))
    max(var(--eadv-dock-inset), env(safe-area-inset-right, 0px));
  background: transparent;
  border: 0;
  box-shadow: none;
  pointer-events: none;
}

.eadv-bullet-tab-bar__shell {
  pointer-events: auto;
  max-width: min(36rem, 100%);
  margin: 0 auto;
  border-radius: 1.45rem;
  padding: 1px;
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, #fff 80%, transparent),
      color-mix(in srgb, var(--eadv-primary, #b399d4) 28%, transparent) 45%,
      color-mix(in srgb, var(--eadv-secondary-container, #ffd1dc) 35%, transparent)
    );
  box-shadow:
    0 18px 48px color-mix(in srgb, #1f1630 18%, transparent),
    0 4px 14px color-mix(in srgb, var(--eadv-primary, #9b6fc4) 16%, transparent);
}

.eadv-bullet-tab-bar__inner {
  display: flex;
  align-items: stretch;
  gap: 0.2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: none;
  margin: 0;
  padding: 0.4rem 0.45rem;
  width: 100%;
  border-radius: calc(1.45rem - 1px);
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, #fff 92%, transparent) 0%,
      color-mix(in srgb, #faf7fc 88%, transparent) 100%
    );
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  justify-content: safe center;
}

.eadv-bullet-tab-bar__inner::-webkit-scrollbar {
  display: none;
}

.eadv-bullet-tab {
  flex: 0 0 auto;
  min-width: 3.35rem;
  max-width: 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  padding: 0.35rem 0.45rem;
  scroll-snap-align: center;
  text-decoration: none;
  color: var(--eadv-text-muted, #6b7280);
  border-radius: 1.05rem;
  transition: color 0.2s, transform 0.2s, background 0.2s;
}

.eadv-bullet-tab__node {
  --eadv-bullet-color: var(--eadv-primary, #9b6fc4);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--eadv-bullet-color) 12%, white);
  border: 1.5px solid color-mix(in srgb, var(--eadv-bullet-color) 45%, #ddd);
  color: var(--eadv-bullet-color);
  font-weight: 700;
  font-size: 0.78rem;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.eadv-bullet-tab__label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 100%;
  width: 100%;
  text-align: center;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eadv-present--with-dock {
  --eadv-dock-h: 4.65rem;
}

@media (max-width: 899px) {
  .eadv-bullet-tab__node {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.72rem;
  }

  .eadv-bullet-tab__count {
    display: none;
  }
}

@media (min-width: 900px) {
  .eadv-bullet-tab-bar {
    padding-inline: max(1.25rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }

  .eadv-bullet-tab-bar__shell {
    max-width: min(42rem, 100%);
  }

  .eadv-bullet-tab {
    min-width: 3.75rem;
  }
}

.eadv-bullet-tab__count {
  font-size: 0.55rem;
  font-weight: 600;
  opacity: 0.7;
}

.eadv-bullet-tab--active,
.eadv-bullet-tab:hover {
  color: var(--eadv-text-main, #2d2438);
  background: color-mix(in srgb, var(--eadv-primary, #9b6fc4) 8%, transparent);
}

.eadv-bullet-tab--active .eadv-bullet-tab__node {
  background: var(--eadv-bullet-color);
  color: #fff;
  border-color: var(--eadv-bullet-color);
  transform: scale(1.08);
  box-shadow: 0 6px 16px color-mix(in srgb, var(--eadv-bullet-color) 38%, transparent);
}

.eadv-footer--with-bullet-bar {
  padding-bottom: calc(var(--eadv-dock-inset) + var(--eadv-dock-h) + env(safe-area-inset-bottom, 0px) + 1.25rem);
}

.eadv-present--bullets .eadv-content {
  padding-bottom: calc(var(--eadv-dock-inset) + var(--eadv-dock-h) + env(safe-area-inset-bottom, 0px) + 1rem);
}

.eadv-present--bullets .eadv-bullet-hub {
  padding-bottom: 0.5rem;
}


/* ── Export PDF (capture bullets propre, sans layout radial étroit) ── */
body.eadv-pdf-export {
  overflow: visible !important;
}

body.eadv-pdf-export .eadv-rail,
body.eadv-pdf-export .eadv-preview-banner,
body.eadv-pdf-export .eadv-speed-dial,
body.eadv-pdf-export .eadv-mobile-section,
body.eadv-pdf-export .eadv-view-toggle {
  display: none !important;
}

/* ── Mode pitch / salle de réunion ── */
.eadv-pitch {
  display: none;
}

.eadv-present--pitch {
  min-height: 100dvh;
  background: #0f172a;
  color: #fff;
}

.eadv-present--pitch > :not(.eadv-atmosphere):not(.eadv-preview-banner):not(.eadv-pitch) {
  display: none !important;
}

.eadv-present--pitch .eadv-pitch {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100dvh;
}

.eadv-pitch__hud,
.eadv-pitch__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  background: color-mix(in srgb, #0f172a 88%, transparent);
  color: #cbd5e1;
  font-size: 0.75rem;
  backdrop-filter: blur(14px);
}

.eadv-pitch__stage {
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 4rem);
}

.eadv-pitch__slide {
  width: min(74rem, 100%);
  animation: eadv-pitch-in 0.3s ease-out;
}

.eadv-pitch__slide .eadv-card {
  min-height: min(66vh, 44rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: scale(1.02);
}

.eadv-pitch__section {
  margin: 0 0 0.8rem;
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eadv-pitch__controls {
  justify-content: center;
}

.eadv-pitch__controls button,
.eadv-pitch__exit {
  border: 1px solid color-mix(in srgb, white 25%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, white 10%, transparent);
  color: #fff;
  padding: 0.55rem 1rem;
  text-decoration: none;
  cursor: pointer;
}

@keyframes eadv-pitch-in {
  from { opacity: 0; transform: translateX(1.5rem); }
  to { opacity: 1; transform: translateX(0); }
}

body.eadv-pdf-export .eadv-atmosphere {
  opacity: 0.2;
}

body.eadv-pdf-export .eadv-present {
  max-width: 100%;
  padding: 0.5rem 1rem 0.75rem;
}

body.eadv-pdf-export .eadv-hero {
  padding: 0.35rem 0 0.4rem;
  margin: 0 0 0.35rem;
}

body.eadv-pdf-export .eadv-brand__name {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

body.eadv-pdf-export .eadv-tagline,
body.eadv-pdf-export .eadv-intro {
  margin: 0.2rem 0;
  font-size: 0.9rem;
}

body.eadv-pdf-export .eadv-hero__actions {
  margin-top: 0.45rem;
}

body.eadv-pdf-export .eadv-bullet-tab-bar {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  margin-top: 0.75rem;
  padding: 0;
  pointer-events: auto;
}

body.eadv-pdf-export .eadv-bullet-tab-bar__shell {
  max-width: none;
  box-shadow: none;
  background: color-mix(in srgb, #fff 94%, var(--eadv-primary-container, #e8dff5));
  border-radius: 0.85rem;
}

body.eadv-pdf-export .eadv-bullet-tab-bar__inner {
  overflow: visible;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  backdrop-filter: none;
  background: transparent;
}

body.eadv-pdf-export .eadv-bullet-tab {
  min-width: 5.25rem;
  max-width: 9rem;
}

body.eadv-pdf-export .eadv-bullet-tab__label {
  max-width: none;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  font-size: 0.6rem;
}

/* Force carte bilatérale / liste — jamais le radial absolu en PDF */
body.eadv-pdf-export .eadv-bullet-hub--bilateral .eadv-bullet-map {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(11rem, 12.5rem) minmax(0, 1fr);
  gap: 0.65rem 0.9rem;
  align-items: center;
  padding: 0.35rem 0.15rem 0.5rem;
}

body.eadv-pdf-export .eadv-bullet-hub--bilateral .eadv-bullet-hub__list,
body.eadv-pdf-export .eadv-bullet-hub--bilateral .eadv-bullet--list,
body.eadv-pdf-export .eadv-bullet-hub--bilateral .eadv-bullet--radial {
  display: none !important;
}

body.eadv-pdf-export .eadv-bullet-hub--bilateral .eadv-bullet--map {
  display: flex !important;
  position: static !important;
  transform: none !important;
  max-width: none;
  width: 100%;
  padding: 0.5rem 0.65rem;
}

body.eadv-pdf-export .eadv-bullet-hub:not(.eadv-bullet-hub--bilateral) .eadv-bullet-hub__stage {
  min-height: 0 !important;
}

body.eadv-pdf-export .eadv-bullet-hub:not(.eadv-bullet-hub--bilateral) .eadv-bullet-hub__center {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 0 auto 0.75rem !important;
  width: 11rem;
  max-width: 11rem;
  padding: 0.9rem 0.75rem;
}

body.eadv-pdf-export .eadv-bullet-hub:not(.eadv-bullet-hub--bilateral) .eadv-bullet-hub__orbit {
  display: none !important;
}

body.eadv-pdf-export .eadv-bullet-hub:not(.eadv-bullet-hub--bilateral) .eadv-bullet-hub__list {
  display: flex !important;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

body.eadv-pdf-export .eadv-bullet-hub:not(.eadv-bullet-hub--bilateral) .eadv-bullet--list {
  display: flex !important;
  position: static !important;
  transform: none !important;
}

body.eadv-pdf-export .eadv-bullet-hub:not(.eadv-bullet-hub--bilateral) .eadv-bullet--radial,
body.eadv-pdf-export .eadv-bullet--radial {
  display: none !important;
}

body.eadv-pdf-export .eadv-bullet--map .eadv-bullet__label-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  white-space: normal;
}

body.eadv-pdf-export .eadv-bullet-map__col {
  gap: 0.5rem;
}

body.eadv-pdf-export .eadv-bullet-map__center {
  width: 11.5rem;
  height: 11.5rem;
  max-width: 11.5rem;
}

body.eadv-pdf-export .eadv-bullet-types {
  display: none !important;
}

body.eadv-pdf-export .eadv-footer {
  display: none !important;
}

body.eadv-pdf-export .eadv-content {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .eadv-bullet,
  .eadv-bullet__node,
  .eadv-bullet-tab__node,
  .eadv-blob {
    transition: none !important;
    animation: none !important;
  }
}
