/* =========================================================================
   accueil-v2.css — Refonte page d'accueil (test, namespace .accv2-*)
   Page test : /accueil-v2. Ne touche pas à index.php.
   Charte Yoyolo : #f78e3d orange. Compatible Bootstrap 5.0.0 et theme Dashly.
   ========================================================================= */

:root {
  --accv2-orange: #f78e3d;
  --accv2-orange-strong: #e67528;
  --accv2-orange-soft: rgba(247, 142, 61, 0.1);
  --accv2-orange-border: rgba(247, 142, 61, 0.25);
  --accv2-ink: #1b2e4b;
  --accv2-ink-soft: #4a5568;
  --accv2-muted: #8a8f9d;
  --accv2-line: #e6e8ee;
  --accv2-bg: #ffffff;
  --accv2-bg-soft: #fafbfc;
  --accv2-bg-darker: #0f1419;
  --accv2-success: #10b981;
  --accv2-radius: 12px;
  --accv2-radius-sm: 8px;
  --accv2-shadow-sm: 0 1px 3px rgba(15, 20, 25, 0.06), 0 1px 2px rgba(15, 20, 25, 0.04);
  --accv2-shadow-md: 0 4px 16px rgba(15, 20, 25, 0.08), 0 2px 4px rgba(15, 20, 25, 0.04);
  --accv2-shadow-lg: 0 12px 40px rgba(15, 20, 25, 0.10), 0 4px 12px rgba(15, 20, 25, 0.06);
  --accv2-trans: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --accv2-ink: #f1f3f7;
  --accv2-ink-soft: #c8cad6;
  --accv2-muted: #7a7d8c;
  --accv2-line: #2a2d3a;
  --accv2-bg: #0f1419;
  --accv2-bg-soft: #1a1d29;
}

/* =========================================================================
   HERO
   ========================================================================= */

.accv2-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1000px 600px at 20% 0%, var(--accv2-orange-soft) 0%, transparent 60%),
    radial-gradient(ellipse 800px 500px at 90% 30%, rgba(56, 189, 248, 0.07) 0%, transparent 55%),
    var(--accv2-bg);
}

@media (min-width: 992px) {
  .accv2-hero {
    padding: 100px 0 80px;
  }
}

.accv2-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .accv2-hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
  }
}

.accv2-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accv2-orange-soft);
  border: 1px solid var(--accv2-orange-border);
  color: var(--accv2-orange);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.accv2-hero-kicker .accv2-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accv2-orange);
  animation: accv2Pulse 2.4s ease-in-out infinite;
}
@keyframes accv2Pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.accv2-hero-h1 {
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--accv2-ink);
  margin: 0 0 20px;
}
.accv2-hero-h1 .accv2-h1-accent {
  background: linear-gradient(135deg, var(--accv2-orange) 0%, var(--accv2-orange-strong) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accv2-orange); /* fallback */
}
@media (min-width: 768px) {
  .accv2-hero-h1 { font-size: 52px; }
}
@media (min-width: 1200px) {
  .accv2-hero-h1 { font-size: 60px; }
}

.accv2-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--accv2-ink-soft);
  margin: 0 0 32px;
  max-width: 540px;
}

.accv2-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.accv2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--accv2-radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.2;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--accv2-trans), box-shadow var(--accv2-trans), background var(--accv2-trans);
  white-space: nowrap;
}
.accv2-btn-primary {
  background: var(--accv2-orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(247, 142, 61, 0.25);
}
.accv2-btn-primary:hover {
  background: var(--accv2-orange-strong);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(247, 142, 61, 0.35);
}
.accv2-btn-secondary {
  background: transparent;
  color: var(--accv2-ink);
  border-color: var(--accv2-line);
}
.accv2-btn-secondary:hover {
  background: var(--accv2-bg-soft);
  color: var(--accv2-ink);
  border-color: var(--accv2-orange-border);
}
.accv2-btn svg { flex-shrink: 0; }

/* Trust signals (chiffres clés) */
.accv2-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--accv2-line);
}
.accv2-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.accv2-trust-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--accv2-ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.accv2-trust-label {
  font-size: 12.5px;
  color: var(--accv2-muted);
  font-weight: 500;
}

/* Mockup à droite (facture/dashboard fake) */
.accv2-hero-mockup {
  position: relative;
  perspective: 1200px;
}
.accv2-mockup-card {
  background: var(--accv2-bg);
  border-radius: 14px;
  box-shadow: var(--accv2-shadow-lg);
  border: 1px solid var(--accv2-line);
  overflow: hidden;
  transform: rotate(-1deg);
  transition: transform var(--accv2-trans);
}
.accv2-mockup-card:hover {
  transform: rotate(0deg) translateY(-4px);
}
.accv2-mockup-head {
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--accv2-orange) 0%, var(--accv2-orange-strong) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accv2-mockup-head-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.accv2-mockup-head-num {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  font-variant-numeric: tabular-nums;
}
.accv2-mockup-body {
  padding: 24px 22px 18px;
}
.accv2-mockup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--accv2-line);
  font-size: 13.5px;
}
.accv2-mockup-row:last-child { border-bottom: 0; }
.accv2-mockup-row-label { color: var(--accv2-ink-soft); }
.accv2-mockup-row-value {
  font-weight: 600;
  color: var(--accv2-ink);
  font-variant-numeric: tabular-nums;
}
.accv2-mockup-total {
  background: var(--accv2-bg-soft);
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--accv2-orange);
}
.accv2-mockup-total-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accv2-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.accv2-mockup-total-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--accv2-ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.accv2-mockup-footer {
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--accv2-muted);
  border-top: 1px solid var(--accv2-line);
}
.accv2-mockup-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accv2-success);
  font-size: 11.5px;
  font-weight: 600;
}
.accv2-mockup-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accv2-success);
}

/* Petite card flottante décorative */
.accv2-mockup-floater {
  position: absolute;
  bottom: -24px;
  left: -32px;
  background: var(--accv2-bg);
  border: 1px solid var(--accv2-line);
  border-radius: var(--accv2-radius-sm);
  box-shadow: var(--accv2-shadow-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(-3deg);
  z-index: 2;
}
@media (max-width: 768px) {
  .accv2-mockup-floater { display: none; }
}
.accv2-floater-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accv2-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.accv2-floater-text {
  font-size: 12.5px;
  color: var(--accv2-ink);
  line-height: 1.3;
}
.accv2-floater-text strong {
  display: block;
  font-weight: 700;
  font-size: 13px;
}

/* =========================================================================
   LOGO WALL
   ========================================================================= */
.accv2-logowall {
  padding: 50px 0;
  background: var(--accv2-bg);
  border-top: 1px solid var(--accv2-line);
  border-bottom: 1px solid var(--accv2-line);
}
.accv2-logowall-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accv2-muted);
  text-align: center;
  font-weight: 600;
  margin-bottom: 26px;
}
.accv2-logowall-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  align-items: center;
}
@media (min-width: 576px) { .accv2-logowall-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .accv2-logowall-grid { grid-template-columns: repeat(6, 1fr); } }
.accv2-logowall-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter var(--accv2-trans), opacity var(--accv2-trans);
}
.accv2-logowall-item:hover {
  filter: grayscale(0);
  opacity: 1;
}
.accv2-logowall-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =========================================================================
   MODULES (4 cartes)
   ========================================================================= */
.accv2-modules {
  padding: 80px 0;
  background: var(--accv2-bg-soft);
}
.accv2-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.accv2-section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accv2-orange);
  margin-bottom: 14px;
}
.accv2-section-h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 800;
  color: var(--accv2-ink);
  margin: 0 0 14px;
}
@media (min-width: 768px) {
  .accv2-section-h2 { font-size: 40px; }
}
.accv2-section-sub {
  font-size: 17px;
  color: var(--accv2-ink-soft);
  line-height: 1.55;
  margin: 0;
}
.accv2-modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .accv2-modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .accv2-modules-grid { grid-template-columns: repeat(4, 1fr); } }

.accv2-module {
  background: var(--accv2-bg);
  border: 1px solid var(--accv2-line);
  border-radius: var(--accv2-radius);
  padding: 28px 24px;
  transition: transform var(--accv2-trans), border-color var(--accv2-trans), box-shadow var(--accv2-trans);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.accv2-module:hover {
  transform: translateY(-4px);
  border-color: var(--accv2-orange-border);
  box-shadow: var(--accv2-shadow-md);
}
.accv2-module-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accv2-orange) 0%, var(--accv2-orange-strong) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(247, 142, 61, 0.2);
}
.accv2-module-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--accv2-ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.accv2-module-desc {
  font-size: 14px;
  color: var(--accv2-ink-soft);
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
}
.accv2-module-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accv2-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--accv2-trans);
}
.accv2-module-link:hover {
  color: var(--accv2-orange-strong);
  gap: 10px;
}

/* Bouton expand "+" — remplace l'ancien lien "En savoir plus" */
.accv2-module-toggle {
  background: transparent;
  border: 1px solid var(--accv2-line);
  border-radius: 999px;
  color: var(--accv2-ink-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px 7px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--accv2-trans);
  font-family: inherit;
  align-self: flex-start;
}
.accv2-module-toggle:hover {
  border-color: var(--accv2-module-accent, var(--accv2-orange));
  color: var(--accv2-module-accent, var(--accv2-orange));
  background: var(--accv2-module-accent-soft, var(--accv2-orange-soft));
}
.accv2-module-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accv2-module-accent, var(--accv2-orange));
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--accv2-trans);
}
.accv2-module.is-expanded .accv2-module-toggle-icon {
  transform: rotate(45deg); /* "+" devient "x" */
}
.accv2-module.is-expanded .accv2-module-toggle {
  border-color: var(--accv2-module-accent, var(--accv2-orange));
  color: var(--accv2-module-accent, var(--accv2-orange));
  background: var(--accv2-module-accent-soft, var(--accv2-orange-soft));
}

/* Bloc détail (collapsé par défaut) */
.accv2-module-detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--accv2-line);
  animation: accv2ModuleReveal 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.accv2-module-detail[hidden] {
  display: none;
}
@keyframes accv2ModuleReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.accv2-module-detail-intro {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accv2-ink);
  margin: 0 0 12px;
}
.accv2-module-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.accv2-module-detail li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--accv2-ink-soft);
}
.accv2-module-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accv2-module-accent-soft, var(--accv2-orange-soft));
  border: 2px solid var(--accv2-module-accent, var(--accv2-orange));
}
.accv2-module-detail strong {
  color: var(--accv2-ink);
  font-weight: 700;
}
.accv2-module-detail em {
  font-style: italic;
  color: var(--accv2-module-accent, var(--accv2-orange));
}

/* =========================================================================
   COULEURS PAR MODULE — icône colorée selon la planète correspondante.
   Les cartes restent sombres pour cohérence visuelle, seul l'icône change
   et l'accent (bordure toggle, puce des bullets, etc.) suit la planète.
   ========================================================================= */
.accv2-module-facturation {
  --accv2-module-accent: #f78e3d;
  --accv2-module-accent-soft: rgba(247, 142, 61, 0.12);
}
.accv2-module-facturation .accv2-module-icon {
  background: linear-gradient(135deg, #ffb074 0%, #f78e3d 100%);
  box-shadow: 0 4px 12px rgba(247, 142, 61, 0.25);
}

.accv2-module-site {
  --accv2-module-accent: #06b6d4;
  --accv2-module-accent-soft: rgba(6, 182, 212, 0.12);
}
.accv2-module-site .accv2-module-icon {
  background: linear-gradient(135deg, #67e8f9 0%, #06b6d4 100%);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

.accv2-module-paiement {
  --accv2-module-accent: #10b981;
  --accv2-module-accent-soft: rgba(16, 185, 129, 0.12);
}
.accv2-module-paiement .accv2-module-icon {
  background: linear-gradient(135deg, #6ee7b7 0%, #10b981 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.accv2-module-rdv {
  --accv2-module-accent: #8b5cf6;
  --accv2-module-accent-soft: rgba(139, 92, 246, 0.12);
}
.accv2-module-rdv .accv2-module-icon {
  background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 100%);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

/* Au hover de la carte, la bordure adopte la couleur du module */
.accv2-module.accv2-module-facturation:hover,
.accv2-module.accv2-module-site:hover,
.accv2-module.accv2-module-paiement:hover,
.accv2-module.accv2-module-rdv:hover {
  border-color: var(--accv2-module-accent);
}
.accv2-module.is-expanded {
  border-color: var(--accv2-module-accent);
  box-shadow: var(--accv2-shadow-md);
}

/* =========================================================================
   FAQ (avec FAQPage schema en JSON-LD)
   ========================================================================= */
.accv2-faq {
  padding: 80px 0;
  background: var(--accv2-bg);
}
.accv2-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.accv2-faq-item {
  border-bottom: 1px solid var(--accv2-line);
}
.accv2-faq-item:first-child { border-top: 1px solid var(--accv2-line); }
.accv2-faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--accv2-ink);
  transition: color var(--accv2-trans);
}
.accv2-faq-question:hover { color: var(--accv2-orange); }
.accv2-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accv2-orange-soft);
  color: var(--accv2-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--accv2-trans);
}
.accv2-faq-item.is-open .accv2-faq-icon { transform: rotate(45deg); }
.accv2-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--accv2-trans), padding var(--accv2-trans);
  font-size: 15px;
  color: var(--accv2-ink-soft);
  line-height: 1.65;
}
.accv2-faq-item.is-open .accv2-faq-answer {
  max-height: 600px;
  padding: 0 0 22px;
}
.accv2-faq-answer a { color: var(--accv2-orange); text-decoration: underline; }

/* =========================================================================
   FINAL CTA
   ========================================================================= */
.accv2-final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accv2-orange) 0%, var(--accv2-orange-strong) 100%);
  color: #fff;
  text-align: center;
}
.accv2-final-cta h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: #fff;
}
.accv2-final-cta p {
  font-size: 18px;
  opacity: 0.95;
  max-width: 580px;
  margin: 0 auto 30px;
  line-height: 1.55;
}
.accv2-final-cta .accv2-btn-primary {
  background: #fff;
  color: var(--accv2-orange);
  font-weight: 700;
  padding: 15px 32px;
  font-size: 16px;
}
.accv2-final-cta .accv2-btn-primary:hover {
  background: #fff;
  color: var(--accv2-orange-strong);
}

/* =========================================================================
   MOBILE STICKY CTA
   ========================================================================= */
.accv2-mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1030;
  background: var(--accv2-orange);
  color: #fff;
  text-align: center;
  padding: 14px 18px;
  border: 0;
  border-radius: var(--accv2-radius-sm);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(247, 142, 61, 0.4);
}
.accv2-mobile-cta:hover {
  background: var(--accv2-orange-strong);
  color: #fff;
}
@media (max-width: 767.98px) {
  .accv2-mobile-cta { display: block; }
  body { padding-bottom: 72px; }
}

/* =========================================================================
   PLANETARY SYSTEM — système solaire Yoyolo (hero right column)
   Soleil au centre = Yoyolo. 4 planètes colorées = les 4 modules.
   Astéroïdes en arrière-plan pour la profondeur.

   Toutes les animations utilisent transform (GPU) + animation CSS
   keyframes pour rester performant. Aucun DOM bloat : ~20 éléments
   au total au lieu de 240+ spans de la home actuelle.
   ========================================================================= */

.accv2-orbits {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  margin: 0 auto;
  /* Donne un cadre cosmique subtil */
  background:
    radial-gradient(circle at center, rgba(247, 142, 61, 0.04) 0%, transparent 65%),
    radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
}

/* Soleil central = Yoyolo (cliquable, sa propre carte info) */
.accv2-sun {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb074 0%, #f78e3d 50%, #e67528 100%);
  box-shadow:
    0 0 0 6px rgba(247, 142, 61, 0.08),
    0 0 0 16px rgba(247, 142, 61, 0.04),
    0 0 60px rgba(247, 142, 61, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  /* Reset bouton natif (le soleil est un <button>) */
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  /* Pulse subtil au repos */
  animation: accv2SunPulse 4s ease-in-out infinite;
  /* Transition pour les états is-focused / is-dimmed */
  transition: transform var(--accv2-trans), box-shadow var(--accv2-trans), opacity var(--accv2-trans), filter var(--accv2-trans);
}
.accv2-sun:focus-visible {
  outline: 3px solid rgba(247, 142, 61, 0.5);
  outline-offset: 4px;
}
/* État focused (hover/tap) : glow renforcé, scale subtil */
.accv2-sun.is-focused {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 0 0 10px rgba(247, 142, 61, 0.15),
    0 0 0 24px rgba(247, 142, 61, 0.08),
    0 0 80px rgba(247, 142, 61, 0.55);
  z-index: 25;
}
/* État dim : opacity + grayscale comme les planètes */
.accv2-sun.is-dimmed {
  opacity: 0.35;
  filter: grayscale(0.55);
}
.accv2-sun img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: brightness(0) invert(1); /* logo en blanc sur fond orange */
  opacity: 0.95;
}
@keyframes accv2SunPulse {
  0%, 100% {
    box-shadow:
      0 0 0 6px rgba(247, 142, 61, 0.08),
      0 0 0 16px rgba(247, 142, 61, 0.04),
      0 0 60px rgba(247, 142, 61, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(247, 142, 61, 0.12),
      0 0 0 22px rgba(247, 142, 61, 0.06),
      0 0 80px rgba(247, 142, 61, 0.45);
  }
}

/* Orbites : conteneurs circulaires qui tournent.
   Chacun a une planète accrochée en haut (top: 0) qui tourne avec.
   Une animation "counter-rotate" sur la planète garde le label droit.
   IMPORTANT pointer-events:none — sans cela, le container carré
   invisible de l'orbite 4 (la plus large) capture tous les hover et
   masque les planètes des orbites 1-3 qu'il chevauche. La planète
   elle-même réactive pointer-events: auto. */
.accv2-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(247, 142, 61, 0.2);
  pointer-events: none;
  /* Centrage du cercle + rotation au centre */
  animation: accv2OrbitRotate var(--orbit-speed, 30s) linear infinite;
  /* Le translate va dans la définition de l'animation pour
     pouvoir combiner avec rotate sans conflit. */
}

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

/* 4 orbites : rayons croissants, vitesses différentes, sens alternés. */
.accv2-orbit-1 {
  width: 200px; height: 200px;
  --orbit-speed: 18s;
}
.accv2-orbit-2 {
  width: 280px; height: 280px;
  --orbit-speed: 28s;
  animation-direction: reverse;
}
.accv2-orbit-3 {
  width: 360px; height: 360px;
  --orbit-speed: 38s;
}
.accv2-orbit-4 {
  width: 440px; height: 440px;
  --orbit-speed: 50s;
  animation-direction: reverse;
}

/* Planètes : positionnées en haut de leur orbite */
.accv2-planet {
  position: absolute;
  top: -22px;       /* moitié de la hauteur planète au-dessus du cercle */
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  /* Réactive le pointeur (override du parent .accv2-orbit qui est en none) */
  pointer-events: auto;
  cursor: pointer;
  /* Reset du bouton natif (les planetes sont des <button>) */
  border: 0;
  padding: 0;
  font: inherit;
  /* Garde le label droit malgré la rotation du parent */
  animation: accv2PlanetCounter var(--orbit-speed, 30s) linear infinite;
}
.accv2-orbit-2 .accv2-planet,
.accv2-orbit-4 .accv2-planet {
  /* Quand l'orbite tourne en sens inverse, la counter-rotation aussi */
  animation-direction: reverse;
}

@keyframes accv2PlanetCounter {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(-360deg); }
}

/* Couleurs par planète (les 4 modules) */
.accv2-planet-facturation {
  background: linear-gradient(135deg, #ffb074 0%, #f78e3d 100%);
  box-shadow: 0 4px 16px rgba(247, 142, 61, 0.4), inset 0 -3px 6px rgba(0, 0, 0, 0.15);
}
.accv2-planet-site {
  background: linear-gradient(135deg, #67e8f9 0%, #06b6d4 100%);
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.4), inset 0 -3px 6px rgba(0, 0, 0, 0.15);
}
.accv2-planet-paiement {
  background: linear-gradient(135deg, #6ee7b7 0%, #10b981 100%);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4), inset 0 -3px 6px rgba(0, 0, 0, 0.15);
}
.accv2-planet-rdv {
  background: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 100%);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4), inset 0 -3px 6px rgba(0, 0, 0, 0.15);
}

/* Émoji icône dans la planète */
.accv2-planet-emoji {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  transition: transform var(--accv2-trans);
}

/* =========================================================================
   INTERACTIONS HOVER : planète survolée s'agrandit + brille,
   autres planètes se fanent, orbites se figent (via .is-paused sur le
   conteneur parent géré par JS).
   ========================================================================= */

.accv2-orbits.is-paused .accv2-orbit {
  animation-play-state: paused;
}
.accv2-orbits.is-paused .accv2-planet {
  animation-play-state: paused;
}

/* État dim : appliqué aux planètes non survolées quand une autre l'est */
.accv2-planet.is-dimmed {
  opacity: 0.3;
  filter: grayscale(0.6);
  transition: opacity var(--accv2-trans), filter var(--accv2-trans);
}

/* État focused : planète survolée — scale + glow renforcé */
.accv2-planet.is-focused {
  transform: translateX(-50%) scale(1.5);
  z-index: 20;
  transition: transform var(--accv2-trans), box-shadow var(--accv2-trans);
}
.accv2-planet.is-focused.accv2-planet-facturation {
  box-shadow: 0 6px 24px rgba(247, 142, 61, 0.6), 0 0 0 8px rgba(247, 142, 61, 0.15), inset 0 -3px 6px rgba(0, 0, 0, 0.15);
}
.accv2-planet.is-focused.accv2-planet-site {
  box-shadow: 0 6px 24px rgba(6, 182, 212, 0.6), 0 0 0 8px rgba(6, 182, 212, 0.15), inset 0 -3px 6px rgba(0, 0, 0, 0.15);
}
.accv2-planet.is-focused.accv2-planet-paiement {
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.6), 0 0 0 8px rgba(16, 185, 129, 0.15), inset 0 -3px 6px rgba(0, 0, 0, 0.15);
}
.accv2-planet.is-focused.accv2-planet-rdv {
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.6), 0 0 0 8px rgba(139, 92, 246, 0.15), inset 0 -3px 6px rgba(0, 0, 0, 0.15);
}
.accv2-planet.is-focused .accv2-planet-emoji {
  transform: scale(1.1);
}

/* =========================================================================
   CARTE INFO : pop-in depuis le bas du conteneur orbits quand une planète
   est focused. Source unique de vérité via data-* sur la planète.
   ========================================================================= */
.accv2-orbit-info {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%) translateY(20px);
  width: 88%;
  max-width: 360px;
  background: var(--accv2-bg);
  border: 1px solid var(--accv2-line);
  border-radius: var(--accv2-radius);
  box-shadow: var(--accv2-shadow-lg);
  padding: 16px 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease, transform 240ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 15;
}
.accv2-orbit-info.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.accv2-orbit-info-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.accv2-orbit-info-emoji {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  /* Le fond change en fonction du module focused (via data-color JS) */
  background: var(--accv2-orbit-info-bg, var(--accv2-orange-soft));
  color: var(--accv2-orbit-info-fg, var(--accv2-orange));
  transition: background var(--accv2-trans), color var(--accv2-trans);
}
.accv2-orbit-info-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--accv2-ink);
  line-height: 1.2;
  margin: 0;
}
.accv2-orbit-info-desc {
  font-size: 13px;
  color: var(--accv2-ink-soft);
  line-height: 1.5;
  margin: 0 0 10px;
}
.accv2-orbit-info-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  color: var(--accv2-orbit-info-fg, var(--accv2-orange));
  transition: gap var(--accv2-trans);
}
.accv2-orbit-info-link:hover {
  gap: 9px;
}

/* Couleurs de la carte info selon le module focused (data-active sur orbits) */
.accv2-orbits[data-active="yoyolo"] {
  --accv2-orbit-info-bg: rgba(247, 142, 61, 0.18);
  --accv2-orbit-info-fg: #d96b1c;
}
.accv2-orbits[data-active="facturation"] {
  --accv2-orbit-info-bg: rgba(247, 142, 61, 0.12);
  --accv2-orbit-info-fg: #d96b1c;
}
.accv2-orbits[data-active="site"] {
  --accv2-orbit-info-bg: rgba(6, 182, 212, 0.12);
  --accv2-orbit-info-fg: #0e8da7;
}
.accv2-orbits[data-active="paiement"] {
  --accv2-orbit-info-bg: rgba(16, 185, 129, 0.12);
  --accv2-orbit-info-fg: #0e9466;
}
.accv2-orbits[data-active="rdv"] {
  --accv2-orbit-info-bg: rgba(139, 92, 246, 0.12);
  --accv2-orbit-info-fg: #6d3ee0;
}

/* Hint initial — disparaît dès le 1er hover (la classe is-discovered est
   ajoutée par le JS au 1er mouseenter sur une planète) */
.accv2-orbits-hint {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11.5px;
  color: var(--accv2-muted);
  background: var(--accv2-bg);
  border: 1px solid var(--accv2-line);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  animation: accv2HintFade 0.6s ease 0.8s forwards;
  transition: opacity 300ms ease;
  z-index: 12;
}
.accv2-orbits.is-discovered .accv2-orbits-hint {
  opacity: 0 !important;
  animation: none;
}
@keyframes accv2HintFade {
  to { opacity: 1; }
}

/* =========================================================================
   ASTÉROÏDES — petits points scintillants en arrière-plan.
   Positionnement absolu, animation twinkle douce, zéro DOM bloat (15 max).
   ========================================================================= */
.accv2-asteroid {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accv2-orange);
  opacity: 0.5;
  animation: accv2AstTwinkle 3s ease-in-out infinite;
  pointer-events: none;
}
.accv2-asteroid.is-big { width: 5px; height: 5px; }
.accv2-asteroid.is-blue { background: #06b6d4; }
.accv2-asteroid.is-green { background: #10b981; }
.accv2-asteroid.is-purple { background: #8b5cf6; }

@keyframes accv2AstTwinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8); }
  50%      { opacity: 0.7;  transform: scale(1.2); }
}

/* Position des 15 astéroïdes, répartis dans le cadre 480x480 */
.accv2-asteroid:nth-child(1)  { top: 8%;  left: 12%; animation-delay: 0s; }
.accv2-asteroid:nth-child(2)  { top: 22%; left: 88%; animation-delay: 0.4s; }
.accv2-asteroid:nth-child(3)  { top: 45%; left: 6%;  animation-delay: 0.8s; }
.accv2-asteroid:nth-child(4)  { top: 78%; left: 18%; animation-delay: 1.2s; }
.accv2-asteroid:nth-child(5)  { top: 90%; left: 75%; animation-delay: 1.6s; }
.accv2-asteroid:nth-child(6)  { top: 15%; left: 55%; animation-delay: 2.0s; }
.accv2-asteroid:nth-child(7)  { top: 62%; left: 92%; animation-delay: 0.2s; }
.accv2-asteroid:nth-child(8)  { top: 35%; left: 95%; animation-delay: 1.4s; }
.accv2-asteroid:nth-child(9)  { top: 85%; left: 50%; animation-delay: 0.6s; }
.accv2-asteroid:nth-child(10) { top: 5%;  left: 38%; animation-delay: 1.0s; }
.accv2-asteroid:nth-child(11) { top: 50%; left: 82%; animation-delay: 1.8s; }
.accv2-asteroid:nth-child(12) { top: 70%; left: 8%;  animation-delay: 0.3s; }
.accv2-asteroid:nth-child(13) { top: 28%; left: 28%; animation-delay: 2.2s; }
.accv2-asteroid:nth-child(14) { top: 95%; left: 30%; animation-delay: 0.7s; }
.accv2-asteroid:nth-child(15) { top: 12%; left: 78%; animation-delay: 1.5s; }

/* =========================================================================
   Responsive — orbites plus petites sur mobile
   ========================================================================= */
@media (max-width: 991.98px) {
  .accv2-orbits { max-width: 380px; }
  .accv2-sun { width: 84px; height: 84px; }
  .accv2-orbit-1 { width: 170px; height: 170px; }
  .accv2-orbit-2 { width: 230px; height: 230px; }
  .accv2-orbit-3 { width: 290px; height: 290px; }
  .accv2-orbit-4 { width: 350px; height: 350px; }
  .accv2-planet { width: 38px; height: 38px; font-size: 16px; top: -19px; }
}

@media (max-width: 575.98px) {
  .accv2-orbits { max-width: 320px; }
  .accv2-sun { width: 70px; height: 70px; }
  .accv2-orbit-1 { width: 140px; height: 140px; }
  .accv2-orbit-2 { width: 195px; height: 195px; }
  .accv2-orbit-3 { width: 250px; height: 250px; }
  .accv2-orbit-4 { width: 305px; height: 305px; }
  .accv2-planet { width: 32px; height: 32px; font-size: 14px; top: -16px; }
}

/* Respect des préférences utilisateur : pas de movement si reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .accv2-orbit,
  .accv2-planet,
  .accv2-sun,
  .accv2-asteroid {
    animation: none !important;
  }
}

/* =========================================================================
   FORFAITS v2 — section tarifs refonte (namespace .frfv2-*)
   Hiérarchie visuelle claire : Premium bleu discret, Pro orange recommandé
   (mis en avant), Évolution violet premium.
   ========================================================================= */

.frfv2-section {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse 1200px 600px at 50% 0%, rgba(247, 142, 61, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 800px 400px at 90% 100%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    #0b1019;
}

.frfv2-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.frfv2-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accv2-orange);
  margin-bottom: 14px;
}
.frfv2-h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px;
}
@media (min-width: 768px) {
  .frfv2-h2 { font-size: 40px; }
}
.frfv2-sub {
  font-size: 16px;
  color: rgba(226, 232, 240, 0.75);
  line-height: 1.55;
  margin: 0;
}

/* Grille — 1 col mobile, 3 cols desktop */
.frfv2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 992px) {
  .frfv2-grid {
    grid-template-columns: 1fr 1.05fr 1fr;
    gap: 20px;
    align-items: center;
  }
}

/* Carte de base (Premium = couleur défaut bleue) */
.frfv2-card {
  --frfv2-accent: #60a5fa;
  --frfv2-accent-soft: rgba(96, 165, 250, 0.12);
  --frfv2-accent-strong: #3b82f6;

  position: relative;
  background: linear-gradient(180deg, #1a1f2e 0%, #14182a 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 240ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.frfv2-card:hover {
  transform: translateY(-4px);
  border-color: var(--frfv2-accent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--frfv2-accent-soft);
}

/* Pro : mis en avant (orange + scale légèrement plus grand) */
.frfv2-card-pro {
  --frfv2-accent: #f78e3d;
  --frfv2-accent-soft: rgba(247, 142, 61, 0.15);
  --frfv2-accent-strong: #e67528;
}
.frfv2-card-featured {
  background: linear-gradient(180deg, #1f1a14 0%, #1a1612 100%);
  border-color: rgba(247, 142, 61, 0.4);
  box-shadow: 0 16px 48px rgba(247, 142, 61, 0.15), 0 0 0 1px rgba(247, 142, 61, 0.2);
}
@media (min-width: 992px) {
  .frfv2-card-featured {
    transform: scale(1.04);
  }
  .frfv2-card-featured:hover {
    transform: scale(1.04) translateY(-4px);
  }
}

/* Évolution : violet premium */
.frfv2-card-evolution {
  --frfv2-accent: #a78bfa;
  --frfv2-accent-soft: rgba(167, 139, 250, 0.12);
  --frfv2-accent-strong: #8b5cf6;
}

/* Badge "Le plus choisi" — sort en haut de la card */
.frfv2-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f78e3d 0%, #e67528 100%);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(247, 142, 61, 0.45);
  white-space: nowrap;
  z-index: 2;
}

.frfv2-card-head {
  margin-bottom: 20px;
}
.frfv2-card-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--frfv2-accent);
  margin-bottom: 6px;
}
.frfv2-card-tagline {
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

/* Bloc prix : gros chiffre + décimale en plus petit + €/mois en dessous */
.frfv2-card-price {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 4px;
}
.frfv2-card-amount {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.frfv2-card-amount-decimal {
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-left: -4px;
}
.frfv2-card-currency-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
}
.frfv2-card-currency {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
}
.frfv2-card-period {
  font-size: 11.5px;
  color: rgba(226, 232, 240, 0.6);
  line-height: 1;
}
.frfv2-card-engagement {
  font-size: 12px;
  color: rgba(226, 232, 240, 0.5);
  margin-bottom: 22px;
}

/* Highlight commission — LE différentiateur entre plans */
.frfv2-card-highlight {
  background: var(--frfv2-accent-soft);
  border: 1px solid var(--frfv2-accent-soft);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.frfv2-card-highlight-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}
.frfv2-card-highlight-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--frfv2-accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}
.frfv2-card-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 4px;
}

/* Liste features */
.frfv2-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.frfv2-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.85);
}
.frfv2-card-features strong {
  color: #ffffff;
  font-weight: 700;
}
.frfv2-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--frfv2-accent-soft);
  position: relative;
  margin-top: 1px;
}
.frfv2-check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--frfv2-accent);
  border-bottom: 2px solid var(--frfv2-accent);
  transform: translate(-50%, -65%) rotate(-45deg);
}

/* CTA — outline pour Premium/Évolution, plein pour Pro */
.frfv2-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 18px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 12px;
}
.frfv2-cta-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
}
.frfv2-cta-outline:hover {
  background: var(--frfv2-accent-soft);
  border-color: var(--frfv2-accent);
  color: var(--frfv2-accent);
}
.frfv2-cta-filled {
  background: linear-gradient(135deg, var(--frfv2-accent) 0%, var(--frfv2-accent-strong) 100%);
  color: #ffffff;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 14px rgba(247, 142, 61, 0.35);
}
.frfv2-cta-filled:hover {
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(247, 142, 61, 0.5);
  transform: translateY(-1px);
}

.frfv2-card-footnote {
  font-size: 12px;
  text-align: center;
  color: rgba(226, 232, 240, 0.5);
  margin: 0;
  line-height: 1.4;
}

/* Trust signals en pied de section */
.frfv2-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 36px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.frfv2-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(226, 232, 240, 0.7);
}
.frfv2-trust-item svg {
  color: #10b981;
}

/* =========================================================================
   FONCTIONNALITÉS v2 — 6 cartes avec numérotation 01–06, icônes colorées
   par catégorie, hover effects (namespace .fnv2-*)
   ========================================================================= */

.fnv2-section {
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(ellipse 1000px 500px at 0% 100%, rgba(247, 142, 61, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 900px 500px at 100% 0%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
    #0b1019;
}

.fnv2-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.fnv2-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accv2-orange);
  margin-bottom: 14px;
}
.fnv2-h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px;
}
@media (min-width: 768px) {
  .fnv2-h2 { font-size: 40px; }
}
.fnv2-sub {
  font-size: 16px;
  color: rgba(226, 232, 240, 0.75);
  line-height: 1.55;
  margin: 0;
}

/* Grille — 1 / 2 / 3 colonnes selon viewport */
.fnv2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .fnv2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .fnv2-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Carte fonctionnalité (4 variantes couleur) */
.fnv2-card {
  --fnv2-accent: #f78e3d;
  --fnv2-accent-soft: rgba(247, 142, 61, 0.12);
  --fnv2-accent-glow: rgba(247, 142, 61, 0.2);

  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 26px;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 240ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 240ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.fnv2-card::before {
  /* halo discret en haut à gauche, prend la couleur du card-accent */
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--fnv2-accent-glow) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 240ms ease, transform 240ms ease;
}
.fnv2-card:hover {
  transform: translateY(-4px);
  border-color: var(--fnv2-accent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--fnv2-accent-soft);
}
.fnv2-card:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

/* Variantes couleur — écho aux planètes du hero */
.fnv2-card-orange {
  --fnv2-accent: #f78e3d;
  --fnv2-accent-soft: rgba(247, 142, 61, 0.12);
  --fnv2-accent-glow: rgba(247, 142, 61, 0.18);
}
.fnv2-card-cyan {
  --fnv2-accent: #06b6d4;
  --fnv2-accent-soft: rgba(6, 182, 212, 0.12);
  --fnv2-accent-glow: rgba(6, 182, 212, 0.18);
}
.fnv2-card-green {
  --fnv2-accent: #10b981;
  --fnv2-accent-soft: rgba(16, 185, 129, 0.12);
  --fnv2-accent-glow: rgba(16, 185, 129, 0.18);
}
.fnv2-card-purple {
  --fnv2-accent: #8b5cf6;
  --fnv2-accent-soft: rgba(139, 92, 246, 0.12);
  --fnv2-accent-glow: rgba(139, 92, 246, 0.18);
}

.fnv2-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.fnv2-card-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  font-variant-numeric: tabular-nums;
}
.fnv2-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--fnv2-accent-soft);
  color: var(--fnv2-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--accv2-trans), transform var(--accv2-trans);
}
.fnv2-card:hover .fnv2-card-icon {
  background: var(--fnv2-accent);
  color: #fff;
  transform: scale(1.08);
}

.fnv2-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
}
.fnv2-card-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--fnv2-accent);
  margin: 0 0 14px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.fnv2-card-body {
  font-size: 14px;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* =========================================================================
   DÉCOUVERTE v2 — sections établissements / produits / missions
   Style dark unifié, code couleur par sous-section (namespace .dcv2-*)
   ========================================================================= */

.dcv2-section {
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(ellipse 1000px 500px at 0% 30%, rgba(6, 182, 212, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 900px 500px at 100% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 50%),
    #0b1019;
}

.dcv2-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.dcv2-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accv2-orange);
  margin-bottom: 14px;
}
.dcv2-h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px;
}
@media (min-width: 768px) {
  .dcv2-h2 { font-size: 40px; }
}
.dcv2-sub {
  font-size: 16px;
  color: rgba(226, 232, 240, 0.75);
  line-height: 1.55;
  margin: 0;
}

/* Sous-section (établissements / produits / missions) */
.dcv2-sub-section {
  --dcv2-accent: #06b6d4;
  --dcv2-accent-soft: rgba(6, 182, 212, 0.12);
  --dcv2-accent-glow: rgba(6, 182, 212, 0.2);

  margin-bottom: 56px;
}
.dcv2-sub-section:last-child { margin-bottom: 0; }

.dcv2-accent-cyan {
  --dcv2-accent: #06b6d4;
  --dcv2-accent-soft: rgba(6, 182, 212, 0.12);
  --dcv2-accent-glow: rgba(6, 182, 212, 0.2);
}
.dcv2-accent-green {
  --dcv2-accent: #10b981;
  --dcv2-accent-soft: rgba(16, 185, 129, 0.12);
  --dcv2-accent-glow: rgba(16, 185, 129, 0.2);
}
.dcv2-accent-purple {
  --dcv2-accent: #8b5cf6;
  --dcv2-accent-soft: rgba(139, 92, 246, 0.12);
  --dcv2-accent-glow: rgba(139, 92, 246, 0.2);
}

.dcv2-sub-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.dcv2-sub-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.dcv2-sub-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dcv2-accent);
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 0 4px var(--dcv2-accent-soft);
}
.dcv2-sub-tagline {
  font-size: 13.5px;
  color: rgba(226, 232, 240, 0.6);
  margin: 0;
  line-height: 1.45;
}
.dcv2-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dcv2-accent);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--dcv2-accent-soft);
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--accv2-trans);
  white-space: nowrap;
}
.dcv2-sub-link:hover {
  background: var(--dcv2-accent-soft);
  border-color: var(--dcv2-accent);
  color: var(--dcv2-accent);
  gap: 10px;
}

/* Grille cards */
.dcv2-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 576px) { .dcv2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .dcv2-grid { grid-template-columns: repeat(4, 1fr); } }

/* Carte item (établissement, produit, mission) */
.dcv2-card {
  position: relative;
  height: 100%;
}
.dcv2-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 240ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.dcv2-card-link:hover {
  transform: translateY(-4px);
  border-color: var(--dcv2-accent);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--dcv2-accent-soft);
  color: inherit;
}

.dcv2-card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dcv2-accent-soft);
  position: relative;
}
.dcv2-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}
.dcv2-card-link:hover .dcv2-card-img-wrap img {
  transform: scale(1.04);
}

.dcv2-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.dcv2-card-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--dcv2-accent-soft);
  color: var(--dcv2-accent);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.dcv2-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  /* Tronque à 2 lignes pour homogénéité */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dcv2-card-meta,
.dcv2-card-price {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.65);
  line-height: 1.4;
}
.dcv2-card-price {
  color: var(--dcv2-accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.dcv2-card-cta {
  margin-top: auto;
  padding-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dcv2-accent);
  transition: gap var(--accv2-trans);
}
.dcv2-card-link:hover .dcv2-card-cta {
  gap: 9px;
}

/* =========================================================================
   ARTICLES BLOG — override des styles .blog-article (depuis blog-articles.php)
   pour s'intégrer au theme dark sans modifier le contenu source.
   ========================================================================= */

.accv2-articles {
  padding: 60px 0 80px;
  background: #0b1019;
}
.accv2-articles-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.accv2-articles-head .accv2-section-kicker {
  margin-bottom: 14px;
}

/* Grille articles — minmax(0, 1fr) pour éviter que les colonnes ne soient
   gonflées par le contenu (width: 33% de Bootstrap .col-xl-4 par exemple) */
.accv2-articles #articles-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .accv2-articles #articles-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .accv2-articles #articles-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Cards blog-article en dark, override total des classes Bootstrap héritées
   (col-xl-4 → flex/width %, p-6 → padding 6) */
.accv2-articles .blog-article {
  /* Reset complet des classes Bootstrap */
  flex: unset !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  /* Card styling dark */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 240ms cubic-bezier(0.4, 0, 0.2, 1),
              border-color 240ms cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 240ms cubic-bezier(0.4, 0, 0.2, 1);
}
.accv2-articles .blog-article:hover {
  transform: translateY(-4px);
  border-color: var(--accv2-orange);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(247, 142, 61, 0.15);
}

/* Image : 180px de haut fixe, cropping object-fit cover, override total
   de .img-fluid + style inline max-height pré-existant */
.accv2-articles .blog-article img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 180px !important;
  max-height: 180px !important;
  min-height: 180px !important;
  object-fit: cover !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: transform 360ms ease;
}
.accv2-articles .blog-article:hover img {
  transform: scale(1.04);
}

.accv2-articles .blog-article h4 {
  font-size: 17px !important;
  font-weight: 700;
  line-height: 1.3;
  margin: 16px 18px 8px !important;
  /* Tronque à 2 lignes */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.accv2-articles .blog-article h4 a {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--accv2-trans);
}
.accv2-articles .blog-article h4 a:hover {
  color: var(--accv2-orange);
}
.accv2-articles .blog-article p {
  font-size: 13.5px !important;
  color: rgba(226, 232, 240, 0.7) !important;
  line-height: 1.55;
  margin: 0 18px 18px !important;
  text-align: left !important;
  /* Tronque à 3 lignes */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.accv2-articles .blog-article p a {
  color: var(--accv2-orange);
  text-decoration: none;
}
