/* Page « Créer du contenu » / MultiPost+ — alignée landing + effets template ZIC Content */

.zh-content-page {
  --zc-accent: #22c55e;
  --zc-accent-soft: rgba(34, 197, 94, 0.35);
}

/* Pas de padding-top sur le wrap : avec nav fixed, ça laissait une bande du body clair
   sous la barre → nav semi-transparente paraissait lavande au lieu du violet du hero. */

.zh-content-hero {
  position: relative;
  overflow: hidden;
  background: var(--zh-hero);
  padding: clamp(48px, 8vw, 96px) 24px 72px;
  /* Hauteur barre nav (~62px) + espacement comme la home au-dessus du contenu */
  padding-top: calc(62px + clamp(48px, 8vw, 96px));
}
.zh-content-hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 120%;
  background: radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.35), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(34, 197, 94, 0.12), transparent 45%);
  pointer-events: none;
}

.zh-content-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.zh-content-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 18px;
  animation: zh-fadeIn 0.7s ease both;
}
.zh-content-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--zc-accent);
  animation: zc-pulse-dot 2s ease-in-out infinite;
}

@keyframes zc-pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--zc-accent-soft);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

.zh-content-hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 16px;
  animation: zh-fadeIn 0.65s ease 0.08s both;
}
.zh-content-hero h1 .accent {
  display: block;
  background: linear-gradient(105deg, #86efac, #4ade80, #bbf7d0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.zh-content-hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
  margin-bottom: 28px;
  animation: zh-fadeIn 0.65s ease 0.14s both;
}

.zh-content-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: zh-fadeIn 0.65s ease 0.2s both;
}
.zh-content-hero-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.zh-content-hero-cta a:hover {
  transform: translateY(-2px);
}
.zh-content-hero-cta .primary {
  background: #fff;
  color: #4c1d95;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.zh-content-hero-cta .secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.zh-content-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 32px;
  animation: zh-fadeIn 0.65s ease 0.26s both;
}
.zh-content-hero-stats > div {
  text-align: left;
}
.zh-content-hero-stats strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.zh-content-hero-stats span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Colonne visuelle — hub + satellites (glass, hiérarchie typo, float sur wrapper) */
.zh-content-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zh-content-orbit {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  isolation: isolate;
}

.zh-content-orbit-glow {
  position: absolute;
  inset: 8% 10% 12% 10%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(167, 139, 245, 0.22) 0%,
    rgba(109, 40, 217, 0.08) 42%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: zc-orbit-glow-breathe 8s ease-in-out infinite;
}

@keyframes zc-orbit-glow-breathe {
  0%,
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.zh-content-orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 78%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 0;
  animation: zc-orbit-ring-spin 48s linear infinite;
}

@keyframes zc-orbit-ring-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.zh-content-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 104px;
  height: 104px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(155deg, #7c3aed 0%, #5b21b6 45%, #4c1d95 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12) inset, 0 24px 56px rgba(0, 0, 0, 0.38),
    0 0 40px rgba(139, 92, 246, 0.35);
  animation: zc-hub-float 6s ease-in-out infinite;
}

.zh-content-hub-mark {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 42%, rgba(255, 255, 255, 0.08));
  opacity: 0.5;
  pointer-events: none;
}

.zh-content-hub-text {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.06em;
  color: #fff;
  line-height: 1;
}

.zh-content-hub-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

@keyframes zc-hub-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
}

/* Satellite : animation sur le wrapper, hover sur la carte interne */
.zh-content-sat {
  position: absolute;
  z-index: 2;
  animation: zc-sat-drift 5.8s ease-in-out infinite;
  animation-delay: var(--zc-sat-delay, 0s);
  will-change: transform;
}

@keyframes zc-sat-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(4px, -9px, 0);
  }
  70% {
    transform: translate3d(-3px, 5px, 0);
  }
}

.zh-content-sat--nw {
  left: 0;
  top: 2%;
}
.zh-content-sat--e {
  right: -4%;
  top: 38%;
}
.zh-content-sat--sw {
  left: 2%;
  bottom: 1%;
}

.zh-content-sat-card {
  width: 158px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 245, 255, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 18px 40px rgba(30, 10, 60, 0.2),
    0 4px 12px rgba(76, 29, 149, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.4s cubic-bezier(0.34, 1.45, 0.64, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.zh-content-sat:hover .zh-content-sat-card {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 1) inset, 0 26px 52px rgba(30, 10, 60, 0.28),
    0 0 0 1px rgba(109, 40, 217, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

.zh-content-sat-head {
  display: flex;
  align-items: center;
  gap: 11px;
}

.zh-content-sat-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  background: var(--zc-icon-bg, #6d28d9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 6px 16px rgba(0, 0, 0, 0.22);
}

.zh-content-sat-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.zh-content-sat-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1e1b4b;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zh-content-sat-subs {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #64748b;
  letter-spacing: 0.02em;
}

.zh-content-sat-tag {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.zh-content-sat-tag.is-live {
  color: #14532d;
  background: linear-gradient(180deg, rgba(220, 252, 231, 0.95), rgba(187, 247, 208, 0.85));
  border: 1px solid rgba(34, 197, 94, 0.35);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.08) inset;
  animation: zc-tag-live 2.8s ease-in-out infinite;
}

.zh-content-sat-tag.is-idle {
  color: #5b4d8c;
  background: rgba(237, 233, 254, 0.95);
  border: 1px solid rgba(109, 40, 217, 0.12);
}

@keyframes zc-tag-live {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2), 0 0 0 1px rgba(34, 197, 94, 0.08) inset;
  }
  50% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0), 0 0 0 1px rgba(34, 197, 94, 0.08) inset;
  }
}

.zh-content-scroll-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  font-family: "DM Sans", sans-serif;
  padding: 8px;
}
.zh-content-scroll-hint svg {
  animation: zh-chevronBounce 1.8s ease-in-out infinite;
}

/* Sections corps */
.zh-content-section {
  padding: clamp(56px, 8vw, 88px) 24px;
}
.zh-content-section.alt {
  background: linear-gradient(180deg, var(--zh-bg3) 0%, var(--zh-bg1) 100%);
}
.zh-content-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.zh-content-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zh-purple);
  margin-bottom: 10px;
}
.zh-content-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  color: var(--zh-text);
  margin-bottom: 10px;
}
.zh-content-section .lead {
  color: var(--zh-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 40rem;
  margin-bottom: 36px;
}

/* Grille canaux */
.zh-content-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.zh-content-channel-card {
  background: #fff;
  border: 1px solid rgba(109, 40, 217, 0.1);
  border-radius: 16px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  opacity: 0;
  transform: translateY(16px);
}
.zh-content-channel-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.2s, border-color 0.2s;
}
.zh-content-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(109, 40, 217, 0.12);
  border-color: rgba(109, 40, 217, 0.22);
}
.zh-content-channel-card .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.zh-content-channel-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}
.zh-content-channel-card .name {
  font-weight: 700;
  font-size: 15px;
  color: var(--zh-text);
}
.zh-content-channel-card .subs {
  font-size: 13px;
  color: var(--zh-muted);
}
.zh-content-channel-card .pill {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.zh-content-channel-card .pill.live {
  background: rgba(34, 197, 94, 0.14);
  color: #166534;
}
.zh-content-channel-card .pill.idle {
  background: rgba(107, 84, 168, 0.1);
  color: var(--zh-muted);
}

/* Features */
.zh-content-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.zh-content-feature {
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid rgba(109, 40, 217, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(14px);
}
.zh-content-feature.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.2s, border-color 0.2s;
}
.zh-content-feature:hover {
  border-color: rgba(109, 40, 217, 0.2);
  box-shadow: 0 12px 32px rgba(109, 40, 217, 0.1);
  transform: translateY(-3px);
}
.zh-content-feature .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.12), rgba(139, 92, 246, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--zh-purple);
}
.zh-content-feature h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--zh-text);
}
.zh-content-feature p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--zh-muted);
}

/* Steps */
.zh-content-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.zh-content-step {
  position: relative;
  padding: 26px 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(109, 40, 217, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
}
.zh-content-step.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.zh-content-step::before {
  content: attr(data-step);
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(109, 40, 217, 0.07);
  line-height: 1;
}
.zh-content-step .n {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--zh-purple);
  margin-bottom: 10px;
}
.zh-content-step h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--zh-text);
}
.zh-content-step p {
  font-size: 0.95rem;
  color: var(--zh-muted);
  line-height: 1.55;
}

/* FAQ — même esprit que ZIC Content.html */
.zc-faq-item {
  background: #fff;
  border: 1px solid rgba(109, 40, 217, 0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.zc-faq-item[open] {
  border-color: rgba(109, 40, 217, 0.25);
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.08);
}
.zc-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--zh-text);
}
.zc-faq-item summary::-webkit-details-marker {
  display: none;
}
.zc-faq-item .arrow {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--zh-purple);
}
.zc-faq-item[open] .arrow {
  transform: rotate(180deg);
}
.zc-faq-item .answer {
  padding: 0 22px 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--zh-muted);
}

@media (max-width: 1024px) {
  .zh-content-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .zh-content-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .zh-content-hero-cta {
    justify-content: center;
  }
  .zh-content-hero-stats {
    justify-content: center;
  }
  .zh-content-hero-stats > div {
    text-align: center;
  }
  .zh-content-channels {
    grid-template-columns: repeat(2, 1fr);
  }
  .zh-content-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  /* Anciennement : "contenu masque par .zh-mobile-soon sur body.zh-home-body".
     Le gate mobile-soon a ete retire, ces regles servent maintenant
     reellement le rendu mobile (1 colonne pour features et steps). Pour les
     channels on bascule en carousel scroll-snap horizontal (cf. plus bas). */
  .zh-content-features,
  .zh-content-steps {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   Content / Shop / Drop — Mobile (<=768px)
   ----------------------------------------------------------------------------
   Patterns communs aux 3 pages produit (mises en page identiques) : hero
   1 colonne, orbit/satellites masques, sections paddings reduits, catalogues
   en carousel scroll-snap horizontal.
   ============================================================================ */

@media (max-width: 768px) {
  /* Hero : padding lateral serre, taille typo recalibree. */
  .zh-content-hero {
    padding: calc(80px + env(safe-area-inset-top)) 16px 32px;
  }
  .zh-content-hero h1 {
    font-size: clamp(28px, 7vw, 38px);
    letter-spacing: -1px;
  }
  .zh-content-hero-sub {
    font-size: 15px;
  }

  /* Orbit + satellites : trop charges sur mobile, on les masque. Le hero
     reste lisible avec le hub texte centre. */
  .zh-content-visual {
    display: none;
  }

  /* CTA pleine largeur (pile vertical). */
  .zh-content-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .zh-content-hero-cta a {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 14px 20px;
    text-align: center;
  }

  /* Stats hero : 3 colonnes sur 1 ligne, plus serrees. */
  .zh-content-hero-stats {
    gap: 16px;
    width: 100%;
  }
  .zh-content-hero-stats > div {
    flex: 1;
    min-width: 0;
  }
  .zh-content-hero-stats strong {
    font-size: 22px;
  }

  /* Sections : padding horizontal = 16px, vertical = 48px (plus aere mais
     plus court que le desktop 88px). */
  .zh-content-section {
    padding: 48px 16px;
  }
  .zh-content-section h2 {
    font-size: clamp(22px, 5.5vw, 30px);
  }
  .zh-content-section .lead {
    font-size: 0.98rem;
  }

  /* Channels (content) / catalog (shop, drop) -> carousel scroll-snap
     horizontal mobile. Le markup est .zh-content-channels (utilise par les
     3 pages) avec class supplementaire .zh-shop-catalog ou .zh-drop-catalog
     sur la SECTION parente — donc on cible directement .zh-content-channels. */
  .zh-content-channels {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 4px 16px 12px;
    margin: 0 -16px;
    scroll-padding-left: 16px;
  }
  .zh-content-channels::-webkit-scrollbar { display: none; }
  .zh-content-channel-card {
    flex: 0 0 80%;
    max-width: 280px;
    scroll-snap-align: start;
  }
  .zh-content-channel-card:hover {
    transform: none;
  }

  /* Features et Steps en 1 colonne. */
  .zh-content-features,
  .zh-content-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .zh-content-feature,
  .zh-content-step {
    padding: 18px 16px;
  }
  .zh-content-feature:hover,
  .zh-content-step:hover {
    transform: none;
  }

  /* FAQ : padding compact, taille summary lisible. */
  .zc-faq-item summary {
    padding: 14px 16px;
    font-size: 15px;
  }
  .zc-faq-item .answer {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  /* Scroll hint : on le masque sur mobile (espace precieux et redondant
     avec le scroll naturel). */
  .zh-content-scroll-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .zh-content-hero {
    padding-top: calc(72px + env(safe-area-inset-top));
  }
  .zh-content-hero h1 {
    font-size: clamp(26px, 7vw, 32px);
  }
  .zh-content-hero-stats {
    gap: 10px;
  }
  .zh-content-hero-stats strong {
    font-size: 19px;
  }
  .zh-content-channel-card {
    flex-basis: 84%;
  }
  .zh-content-section {
    padding: 40px 16px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .zh-content-orbit {
    max-width: 360px;
  }
  .zh-content-sat-card {
    width: 148px;
    padding: 12px 12px 10px;
  }
}

/* ─── Page contenu v2 (template ZIC Content / MultiPost+) ───────────────── */

.zh-content-page--v2 .zh-content-hero--stack {
  background: var(--zh-hero);
}

.zh-content-hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(167, 139, 245, 0.45), transparent 42%),
    radial-gradient(circle at 92% 78%, rgba(249, 115, 22, 0.32), transparent 40%);
  filter: blur(0);
}

.zh-content-page--v2 .zh-content-hero-inner {
  max-width: 1180px;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 72px);
}

.zh-content-hero-copy {
  position: relative;
  z-index: 1;
}

.zh-content-badge--split {
  gap: 10px;
  padding: 5px 13px 5px 5px;
}

.zh-content-badge-new {
  padding: 2px 8px;
  border-radius: 100px;
  background: #22c55e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.zh-content-badge-eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.06em;
}

.zh-content-hero-h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: #fff;
  margin: 0 0 16px;
}

.zh-content-hero-h1-accent {
  background: linear-gradient(90deg, #fff, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.zh-content-page--v2 .zh-content-hero-cta .primary {
  border-radius: 100px;
  padding: 14px 24px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--zh-text);
}

.zh-content-page--v2 .zh-content-hero-cta .secondary {
  border-radius: 100px;
  padding: 14px 22px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.zh-content-livestat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 100px;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.35);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  width: fit-content;
  animation: zh-fadeIn 0.65s ease 0.24s both;
}

.zh-content-livestat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.3);
  animation: zc-pulse-dot 2s ease-in-out infinite;
}

/* Pile téléphones hero */
.zh-content-visual--stack {
  min-height: 420px;
  position: relative;
  z-index: 1;
}

.zh-content-phone-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
}

/* Carousel live : un téléphone, posts en fondu */
.zh-content-phone-carousel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zh-content-phone--slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(240px, 52vw);
  height: min(420px, 88vw);
  transform: translate(-50%, -50%) scale(0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    visibility 0.55s ease;
  animation: none !important;
  z-index: 1;
}

.zh-content-phone--slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  z-index: 2;
}

.zh-content-phone-media--has-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.zh-content-phone-media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.zh-content-phone-media--has-img .zh-content-phone-time,
.zh-content-phone-media--has-img .zh-content-phone-caption {
  z-index: 2;
}

.zh-content-phone {
  position: absolute;
  width: min(240px, 52vw);
  height: min(420px, 88vw);
  border-radius: 24px;
  overflow: hidden;
  background: #0f0826;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  transform: translate3d(var(--zc-phone-dx, 0), var(--zc-phone-dy, 0), 0) rotate(var(--zc-phone-rot, 0deg))
    scale(var(--zc-phone-sc, 1));
  animation: zc-float-a 6s ease-in-out infinite;
  animation-delay: var(--zc-phone-delay, 0s);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.zh-content-phone:nth-child(1) {
  z-index: 1;
}

.zh-content-phone:nth-child(2) {
  z-index: 2;
  animation-name: zc-float-b;
}

.zh-content-phone:nth-child(3) {
  z-index: 3;
}

.zh-content-phone:hover {
  z-index: 4 !important;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.5);
  transform: translate3d(var(--zc-phone-dx, 0), var(--zc-phone-dy, 0), 0) rotate(calc(var(--zc-phone-rot, 0deg) * 0.4))
    scale(calc(var(--zc-phone-sc, 1) * 1.02));
}

@keyframes zc-float-a {
  0%,
  100% {
    transform: translate3d(var(--zc-phone-dx, 0), var(--zc-phone-dy, 0), 0) rotate(var(--zc-phone-rot, 0deg))
      scale(var(--zc-phone-sc, 1)) translateY(0);
  }
  50% {
    transform: translate3d(var(--zc-phone-dx, 0), var(--zc-phone-dy, 0), 0) rotate(var(--zc-phone-rot, 0deg))
      scale(var(--zc-phone-sc, 1)) translateY(-10px);
  }
}

@keyframes zc-float-b {
  0%,
  100% {
    transform: translate3d(var(--zc-phone-dx, 0), var(--zc-phone-dy, 0), 0) rotate(var(--zc-phone-rot, 0deg))
      scale(var(--zc-phone-sc, 1)) translateY(0);
  }
  50% {
    transform: translate3d(var(--zc-phone-dx, 0), var(--zc-phone-dy, 0), 0) rotate(var(--zc-phone-rot, 0deg))
      scale(var(--zc-phone-sc, 1)) translateY(8px);
  }
}

.zh-content-phone-chrome {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.zh-content-phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.zh-content-phone-head-left {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.zh-content-phone-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.zh-content-phone-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zh-content-phone-format {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.zh-content-phone-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  min-height: 0;
}

.zh-content-phone-media {
  flex: 1;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--zc-net, #6d28d9) 0%, #1a0a3d 100%);
}

.zh-content-phone-time {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.zh-content-phone-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  color: #fff;
}

.zh-content-phone-caption strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.zh-content-phone-caption span {
  font-size: 10px;
  opacity: 0.88;
}

.zh-content-section-inner--wide {
  max-width: 1180px;
}

.zh-content-section-inner--editor {
  max-width: 1180px;
}

.zh-content-section-inner--faq {
  max-width: 820px;
}

.zh-content-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.zh-content-section-head .lead {
  margin-left: auto;
  margin-right: auto;
}

.zh-content-networks-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.zh-content-network-card {
  padding: 22px 12px;
  text-align: center;
  align-items: center;
}

.zh-content-network-mark {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.zh-content-network-name {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--zh-text);
  margin-bottom: 10px;
}

.zh-content-network-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.zh-content-network-pill {
  padding: 2px 7px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  color: var(--zh-muted);
  background: var(--zh-bg1);
}

.zh-content-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.zh-content-why-card {
  position: relative;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid rgba(109, 40, 217, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.zh-content-why-blob {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--zc-accent, #6d28d9);
  opacity: 0.1;
  pointer-events: none;
}

.zh-content-why-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.zh-content-why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--zc-accent, #6d28d9), #4c1d95);
}

.zh-content-why-stat {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zc-accent, #6d28d9);
  white-space: nowrap;
}

.zh-content-why-card h3 {
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--zh-text);
  letter-spacing: -0.03em;
}

.zh-content-why-card p {
  position: relative;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--zh-muted);
}

.zh-content-page--v2 .zh-content-step::before {
  display: none;
}

.zh-content-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.zh-content-step-num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--zh-purple);
  letter-spacing: -0.04em;
  line-height: 1;
}

.zh-content-step-tag {
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--zh-bg1);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zh-purple);
  white-space: nowrap;
}

.zh-content-how-cta {
  text-align: center;
  margin-top: 36px;
}

.zh-content-how-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  background: var(--zh-text);
  color: #fff;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.zh-content-how-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 10, 61, 0.2);
}

.zh-content-editor-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 20px;
  align-items: flex-start;
}

.zh-content-draft-panel {
  position: sticky;
  top: 88px;
  background: #fff;
  border-radius: 20px;
  padding: 24px 22px;
  border: 1px solid rgba(109, 40, 217, 0.08);
  box-shadow: 0 12px 32px rgba(109, 40, 217, 0.06);
}

.zh-content-draft-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.zh-content-draft-label {
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--zh-orange);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.zh-content-draft-user {
  font-size: 11.5px;
  color: var(--zh-muted);
}

.zh-content-draft-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 0 12px;
  color: var(--zh-text);
  letter-spacing: -0.03em;
}

.zh-content-draft-body {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--zh-text);
  margin: 0 0 14px;
}

.zh-content-draft-tags {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zh-purple);
  margin: 0 0 18px;
}

.zh-content-draft-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--zh-bg1);
  border: 1px dashed rgba(109, 40, 217, 0.28);
  border-radius: 12px;
}

.zh-content-draft-file-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--zh-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.zh-content-draft-file-name {
  font-weight: 700;
  font-size: 12.5px;
  color: var(--zh-text);
}

.zh-content-draft-file-meta {
  font-size: 11px;
  color: var(--zh-muted);
}

.zh-content-draft-btn {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--zh-purple), var(--zh-purple-b));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}

.zh-content-draft-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.zh-content-previews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.zh-content-preview-tile {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(109, 40, 217, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.zh-content-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(109, 40, 217, 0.06);
}

.zh-content-preview-head-left {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.zh-content-preview-ico {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.zh-content-preview-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--zh-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zh-content-preview-format {
  font-size: 10px;
  font-weight: 600;
  color: var(--zh-muted);
  padding: 2px 7px;
  border-radius: 100px;
  background: var(--zh-bg3);
  flex-shrink: 0;
}

.zh-content-preview-stage {
  padding: 12px;
  background: var(--zh-bg3);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.zh-content-preview-frame {
  position: relative;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--zc-pv, #6d28d9) 0%, #1a0a3d 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.zh-content-preview-tile--portrait .zh-content-preview-frame {
  width: 58%;
  aspect-ratio: 9 / 16;
}

.zh-content-preview-tile--landscape .zh-content-preview-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 76px;
}

.zh-content-preview-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.18), transparent 58%);
  pointer-events: none;
}

.zh-content-preview-time {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  padding: 2px 7px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.55);
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}

.zh-content-preview-cap {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: 1;
  color: #fff;
}

.zh-content-preview-cap strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.zh-content-preview-cap span {
  font-size: 9px;
  opacity: 0.85;
}

.zh-content-preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-top: 1px solid rgba(109, 40, 217, 0.06);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--zh-muted);
}

.zh-content-preview-ready {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #16a34a;
  font-weight: 700;
}

.zh-content-preview-ready .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.zh-content-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.zh-content-case-card {
  position: relative;
  padding: 28px 26px;
  background: #fff;
  border: 1px solid rgba(109, 40, 217, 0.08);
  border-radius: 18px;
  overflow: hidden;
}

.zh-content-case-blob {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--zc-case, #6d28d9);
  opacity: 0.12;
  pointer-events: none;
}

.zh-content-case-tag {
  position: relative;
  display: inline-block;
  padding: 4px 11px;
  border-radius: 100px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.zh-content-case-card h3 {
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--zh-text);
  letter-spacing: -0.03em;
}

.zh-content-case-card p {
  position: relative;
  margin: 0 0 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--zh-muted);
}

.zh-content-case-stat {
  position: relative;
  display: inline-block;
  padding: 5px 11px;
  border-radius: 100px;
  background: var(--zc-case, #6d28d9);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
}

.zh-content-safe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.zh-content-safe-col {
  padding: 28px;
  background: #fff;
  border-radius: 18px;
}

.zh-content-safe-col--ok {
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.zh-content-safe-col--ko {
  border: 1px solid rgba(239, 68, 68, 0.22);
}

.zh-content-safe-h {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.zh-content-safe-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}

.zh-content-safe-ico--ok {
  background: #22c55e;
}

.zh-content-safe-ico--ko {
  background: #ef4444;
  font-size: 16px;
}

.zh-content-safe-col h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  color: var(--zh-text);
}

.zh-content-safe-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zh-content-safe-col li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--zh-text);
}

.zh-content-safe-li-ico {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 2px;
}

.zh-content-safe-li-ico.ok {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.zh-content-safe-li-ico.ko {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  font-size: 13px;
}

.zh-content-page--v2 .zh-content-scroll-hint svg {
  animation: zh-chevronBounce 1.6s ease-in-out infinite;
}

@media (max-width: 1100px) {
  .zh-content-networks-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Page contenu v2 : 3 colonnes (≤1100px, typ. petit desktop), bloc centré. */
  .zh-content-page--v2 .zh-content-networks-grid.zh-content-channels {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

/* Tablette : section « Réseaux » en grille 2×n, centrée (page contenu v2). */
@media (min-width: 769px) and (max-width: 1024px) {
  .zh-content-page--v2 .zh-content-networks-grid.zh-content-channels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    gap: 14px;
    overflow-x: visible;
    padding-left: 0;
    padding-right: 0;
    scroll-snap-type: none;
  }
  .zh-content-page--v2 .zh-content-networks-grid.zh-content-channels .zh-content-channel-card {
    flex: none;
    max-width: none;
    width: 100%;
    scroll-snap-align: none;
  }
}

@media (max-width: 1024px) {
  .zh-content-page--v2 .zh-content-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .zh-content-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .zh-content-page--v2 .zh-content-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .zh-content-page--v2 .zh-content-hero-cta {
    justify-content: center;
  }
  .zh-content-visual--stack {
    min-height: 400px;
    margin-top: 8px;
  }
  .zh-content-editor-grid {
    grid-template-columns: 1fr;
  }
  .zh-content-draft-panel {
    position: relative;
    top: auto;
  }
  .zh-content-previews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .zh-content-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .zh-content-visual.zh-content-visual--stack {
    display: flex;
    min-height: 340px;
    margin-top: 4px;
  }
  .zh-content-phone,
  .zh-content-phone--slide {
    width: min(200px, 46vw);
    height: min(360px, 78vw);
  }
  .zh-content-networks-grid {
    grid-template-columns: none;
  }

  /* Page contenu v2 : une colonne de cartes centrée (hors carousel horizontal). */
  .zh-content-page--v2 .zh-content-networks-grid.zh-content-channels {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    max-width: min(300px, 88vw);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-x: visible;
    padding: 4px 0 12px;
    gap: 14px;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
  }
  .zh-content-page--v2 .zh-content-networks-grid.zh-content-channels .zh-content-channel-card {
    flex: none;
    max-width: none;
    width: 100%;
    scroll-snap-align: none;
  }
  .zh-content-previews-grid {
    grid-template-columns: 1fr;
  }
  .zh-content-cases-grid,
  .zh-content-safe-grid {
    grid-template-columns: 1fr;
  }
  .zh-content-page--v2 .zh-content-scroll-hint {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zh-content-orbit-ring,
  .zh-content-orbit-glow,
  .zh-content-hub,
  .zh-content-sat,
  .zh-content-sat-tag.is-live,
  .zh-content-phone,
  .zh-content-phone--slide,
  .zh-content-livestat-dot,
  .zh-content-page--v2 .zh-content-scroll-hint svg {
    animation: none !important;
  }
  .zh-content-sat-card {
    transition-duration: 0.12s;
  }
}
