/* ════════════════════════════════════════════════════════════════════════
   acc.css — Styles spécifiques aux pages ACC de Phénix Solar
   Hérite de style.css (variables, navbar, footer, typography)
   Charte : bleu #0D4584 · orange #EFA906 · police Ubuntu
   ════════════════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
  --acc-blue:       #0D4584;
  --acc-blue-light: #1560b8;
  --acc-orange:     #EFA906;
  --acc-orange-dark:#c98f00;
  --acc-white:      #ffffff;
  --acc-grey-bg:    #f4f6f9;
  --acc-text:       #1a1a2e;
  --acc-text-muted: #5a6480;
  --acc-radius:     10px;
  --acc-shadow:     0 6px 28px rgba(13,69,132,0.10);
  --acc-transition: 0.25s ease;
}

/* ── Réinitialisation / base ────────────────────────────────────────────── */
.acc-section {
  padding: 80px 0;
}

.acc-section-light  { background: #ffffff; }
.acc-section-grey   { background: var(--acc-grey-bg); }
.acc-section-dark   { background: var(--acc-blue); }

/* ── Hero — bouton CTA principal ─────────────────────────────────────────── */
.acc-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--acc-orange);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background var(--acc-transition), transform var(--acc-transition), box-shadow var(--acc-transition);
  box-shadow: 0 4px 20px rgba(239,169,6,0.35);
  animation: hero-pulse 2.2s ease-in-out infinite;
  position: relative;
  z-index: 10;
}
.acc-hero-btn:hover {
  background: var(--acc-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(239,169,6,0.45);
  color: #fff;
  text-decoration: none;
}

/* ── Tags de section ─────────────────────────────────────────────────────── */
.acc-section-tag {
  display: inline-block;
  background: rgba(13,69,132,0.08);
  color: var(--acc-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.acc-tag-light {
  background: rgba(255,255,255,0.15);
  color: var(--acc-orange);
}

/* ── Titres de section ───────────────────────────────────────────────────── */
.acc-section-title {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--acc-blue);
  margin-bottom: 12px;
  line-height: 1.2;
}
.acc-title-white { color: #fff !important; }

/* ── Séparateur ──────────────────────────────────────────────────────────── */
.acc-separator {
  width: 55px;
  height: 4px;
  background: var(--acc-orange);
  border-radius: 2px;
  margin-bottom: 28px;
}
.acc-sep-orange { background: var(--acc-orange); }

/* ── Texte courant ───────────────────────────────────────────────────────── */
.acc-lead {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--acc-text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.acc-body {
  font-size: 0.97rem;
  color: var(--acc-text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.acc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--acc-blue);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 2px solid var(--acc-orange);
  padding-bottom: 2px;
  transition: color var(--acc-transition), gap var(--acc-transition);
}
.acc-link:hover { color: var(--acc-orange); gap: 14px; text-decoration: none; }

/* ══ LAYOUT DEUX COLONNES ══════════════════════════════════════════════════ */
.acc-two-col {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}
.acc-two-col-reverse { flex-direction: row-reverse; }
.acc-text-col   { flex: 1 1 340px; }
.acc-visual-col { flex: 1 1 340px; }

/* ══ SCHÉMA ILLUSTRATIF ════════════════════════════════════════════════════ */
.acc-schema {
  background: var(--acc-grey-bg);
  border-radius: var(--acc-radius);
  padding: 40px 30px 30px;
  text-align: center;
  box-shadow: var(--acc-shadow);
  position: relative;
}
.acc-schema-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.acc-schema-sun {
  width: 70px;
  height: 70px;
  background: var(--acc-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--acc-orange);
  box-shadow: 0 4px 16px rgba(13,69,132,0.25);
  margin-bottom: 8px;
}
.acc-schema-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--acc-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}
.acc-schema-arrows {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 16px;
}
.acc-schema-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.acc-arrow-line {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, var(--acc-orange), var(--acc-blue));
}
.acc-bolt {
  font-size: 1rem;
  color: var(--acc-orange);
}
.acc-schema-consumers {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.acc-consumer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.acc-consumer-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 2px solid var(--acc-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--acc-blue);
  box-shadow: 0 2px 8px rgba(13,69,132,0.12);
}
.acc-consumer p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--acc-text-muted);
  margin: 0;
}
.acc-schema-network {
  font-size: 0.78rem;
  color: var(--acc-text-muted);
  background: #fff;
  border-radius: 20px;
  padding: 6px 16px;
  display: inline-block;
  border: 1px dashed #b0bac9;
}

/* ══ ÉTAPES (COMMENT ÇA MARCHE) ═══════════════════════════════════════════ */
.acc-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.acc-step {
  flex: 1 1 200px;
  max-width: 240px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--acc-radius);
  padding: 30px 22px 26px;
  text-align: center;
  position: relative;
  transition: background var(--acc-transition), transform var(--acc-transition),
              border-color var(--acc-transition), box-shadow var(--acc-transition);
}
.acc-step:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(239,169,6,0.55);
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.30), 0 0 0 1px rgba(239,169,6,0.12);
}
.acc-step:hover .acc-step-icon {
  animation: acc-icon-sonar 1.5s ease-out infinite;
}
@keyframes acc-icon-sonar {
  0%   { box-shadow: 0 0 0 0px  rgba(239,169,6,0.50), 0 4px 16px rgba(239,169,6,0.35); }
  70%  { box-shadow: 0 0 0 14px rgba(239,169,6,0),    0 4px 22px rgba(239,169,6,0.45); }
  100% { box-shadow: 0 0 0 0px  rgba(239,169,6,0),    0 4px 16px rgba(239,169,6,0.35); }
}
.acc-step-num {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(239,169,6,0.11);
  line-height: 1;
  font-family: 'Ubuntu', sans-serif;
  pointer-events: none;
  user-select: none;
}
.acc-step-icon {
  width: 54px;
  height: 54px;
  background: var(--acc-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(239,169,6,0.35);
}
.acc-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.acc-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.acc-step-connector {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 20px;
  padding-top: 57px;
  align-self: flex-start;
}
.acc-step-connector::after {
  content: '';
  display: block;
  width: 100%;
  border-top: 2px dashed rgba(239,169,6,0.30);
}

/* ── Animation étapes ────────────────────────────────────────────────────── */
@keyframes acc-step-in {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.acc-steps-animated .acc-step {
  animation: acc-step-in 0.85s ease both;
}
.acc-steps-animated .acc-step:nth-child(1) { animation-delay: 0s;    }
.acc-steps-animated .acc-step:nth-child(3) { animation-delay: 0.10s; }
.acc-steps-animated .acc-step:nth-child(5) { animation-delay: 0.20s; }
.acc-steps-animated .acc-step:nth-child(7) { animation-delay: 0.30s; }

/* ══ GRILLE AVANTAGES ══════════════════════════════════════════════════════ */
.acc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.acc-benefit-card {
  background: #fff;
  border-radius: var(--acc-radius);
  padding: 32px 26px;
  box-shadow: var(--acc-shadow);
  border-top: 4px solid transparent;
  transition: transform var(--acc-transition), box-shadow var(--acc-transition), border-color var(--acc-transition);
}
.acc-benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 52px rgba(13,69,132,0.16);
  border-top-color: var(--acc-orange);
}
.acc-benefit-card:hover .acc-benefit-icon {
  transform: scale(1.13) translateY(-2px);
  border-radius: 50%;
}
.acc-benefit-card:hover .acc-icon-blue {
  box-shadow: 0 8px 24px rgba(13,69,132,0.32);
}
.acc-benefit-card:hover .acc-icon-orange {
  box-shadow: 0 8px 24px rgba(239,169,6,0.40);
}

/* ── Animation entrée avantages ─────────────────────────────────────────── */
@keyframes acc-benefit-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.acc-benefits-animated .acc-benefit-card {
  animation: acc-benefit-in 0.85s ease both;
}
.acc-benefits-animated .acc-benefit-card:nth-child(1) { animation-delay: 0s;    }
.acc-benefits-animated .acc-benefit-card:nth-child(2) { animation-delay: 0.07s; }
.acc-benefits-animated .acc-benefit-card:nth-child(3) { animation-delay: 0.14s; }
.acc-benefits-animated .acc-benefit-card:nth-child(4) { animation-delay: 0.21s; }
.acc-benefits-animated .acc-benefit-card:nth-child(5) { animation-delay: 0.28s; }
.acc-benefits-animated .acc-benefit-card:nth-child(6) { animation-delay: 0.35s; }

.acc-benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 18px;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-radius 0.32s ease;
}
.acc-icon-blue   { background: var(--acc-blue); }
.acc-icon-orange { background: var(--acc-orange); }
.acc-benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--acc-blue);
  margin-bottom: 10px;
}
.acc-benefit-card p {
  font-size: 0.9rem;
  color: var(--acc-text-muted);
  line-height: 1.75;
}

/* ══ FAQ ACCORDÉON ═════════════════════════════════════════════════════════ */
.acc-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.acc-faq-item {
  border-bottom: 1px solid #dce4ef;
  overflow: hidden;
}
.acc-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--acc-blue);
  transition: color var(--acc-transition);
}
.acc-faq-question:hover { color: var(--acc-orange); }
.acc-faq-icon {
  font-size: 0.9rem;
  color: var(--acc-orange);
  flex-shrink: 0;
  transition: transform var(--acc-transition);
}
.acc-faq-item.open .acc-faq-icon { transform: rotate(45deg); }
.acc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.acc-faq-answer p {
  padding: 0 6px 20px;
  font-size: 0.95rem;
  color: var(--acc-text-muted);
  line-height: 1.8;
}

/* ══ CTA SECTION ═══════════════════════════════════════════════════════════ */
.acc-section-cta {
  background: linear-gradient(135deg, var(--acc-blue) 0%, #1560b8 100%);
  position: relative;
  overflow: hidden;
}
.acc-section-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(239,169,6,0.08);
  border-radius: 50%;
}
.acc-cta-block {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.acc-cta-text {
  flex: 1 1 340px;
}
.acc-cta-text h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.acc-cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 20px;
}
.acc-cta-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acc-cta-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.acc-cta-checklist .fa-check-circle { color: var(--acc-orange); font-size: 1rem; }

.acc-cta-action { flex: 0 0 auto; text-align: center; }
.acc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--acc-orange);
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 18px 34px;
  border-radius: 4px;
  text-decoration: none;
  transition: background var(--acc-transition), transform var(--acc-transition), box-shadow var(--acc-transition);
  box-shadow: 0 6px 24px rgba(239,169,6,0.40);
  white-space: nowrap;
}
.acc-cta-btn:hover {
  background: var(--acc-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(239,169,6,0.50);
  color: #fff;
  text-decoration: none;
}
.acc-cta-sub {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

/* ══ STATS GRID ════════════════════════════════════════════════════════════ */
.acc-stats-col { display: flex; align-items: center; justify-content: center; }
.acc-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: 360px;
}
.acc-stat {
  background: var(--acc-grey-bg);
  border-radius: var(--acc-radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--acc-shadow);
  border: 1px solid transparent;
  transition: transform var(--acc-transition), box-shadow var(--acc-transition), border-color var(--acc-transition);
}
.acc-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(239,169,6,0.55);
  box-shadow: 0 16px 40px rgba(13,69,132,0.16);
}
.acc-stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--acc-blue);
  font-family: 'Ubuntu', sans-serif;
  line-height: 1;
  margin-bottom: 6px;
}
.acc-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--acc-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* ══ EN-TÊTE DE SECTION CENTRÉE ═══════════════════════════════════════════ */
.acc-section-head {
  text-align: center;
  margin-bottom: 52px;
}
.acc-section-cream { background: #F7F4EE; }

/* ══ POUR QUI ══════════════════════════════════════════════════════════════ */
.acc-forwho-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.acc-fw {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.acc-fw-producer {
  background: linear-gradient(155deg, #0D4584 0%, #1560b8 100%);
}
.acc-fw-consumer {
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(13,69,132,0.08);
}
.acc-fw-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.acc-fw-producer .acc-fw-tag {
  background: rgba(239,169,6,0.20);
  color: #efa906;
}
.acc-fw-tag-blue {
  background: rgba(13,69,132,0.08);
  color: var(--acc-blue);
}
.acc-fw h3 {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  margin-bottom: 14px;
  line-height: 1.25;
}
.acc-fw-producer h3 { color: #fff; }
.acc-fw-consumer h3 { color: var(--acc-blue); }
.acc-fw > p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.acc-fw-producer > p { color: rgba(255,255,255,0.80); }
.acc-fw-consumer > p { color: var(--acc-text-muted); }
.acc-fw-list {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.acc-fw-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.acc-fw-list .fa-check-circle { flex-shrink: 0; margin-top: 2px; font-size: 1rem; }
.acc-fw-producer .acc-fw-list li { color: rgba(255,255,255,0.88); }
.acc-fw-producer .acc-fw-list .fa-check-circle { color: #efa906; }
.acc-fw-list-dark li { color: var(--acc-text); }
.acc-fw-list-dark .fa-check-circle { color: var(--acc-blue); }

/* ── Hover bulles "Pour qui" ─────────────────────────────────────────────── */
.acc-fw-producer:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1.5px rgba(239,169,6,0.55), 0 22px 52px rgba(13,69,132,0.32);
}
.acc-fw-consumer:hover {
  transform: translateY(-6px);
  border-color: rgba(239,169,6,0.55);
  box-shadow: 0 22px 52px rgba(13,69,132,0.18);
}
.acc-fw-list li {
  transition: transform 0.28s ease, color 0.25s ease;
}
.acc-fw:hover .acc-fw-list li             { transform: translateX(5px); }
.acc-fw:hover .acc-fw-list li:nth-child(1) { transition-delay: 0s;     }
.acc-fw:hover .acc-fw-list li:nth-child(2) { transition-delay: 0.05s;  }
.acc-fw:hover .acc-fw-list li:nth-child(3) { transition-delay: 0.10s;  }
.acc-fw:hover .acc-fw-list li:nth-child(4) { transition-delay: 0.15s;  }
.acc-fw-list .fa-check-circle {
  transition: transform 0.25s ease, color 0.25s ease;
}
.acc-fw-producer:hover .acc-fw-list .fa-check-circle    { transform: scale(1.2); }
.acc-fw-consumer:hover .acc-fw-list-dark li              { color: var(--acc-blue); }
.acc-fw-consumer:hover .acc-fw-list-dark .fa-check-circle {
  color: var(--acc-orange);
  transform: scale(1.2);
}

/* ══ CHIFFRES CLÉS ═════════════════════════════════════════════════════════ */
.acc-nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dce4ef;
  border-bottom: 1px solid #dce4ef;
  margin-bottom: 20px;
}
.acc-nums-item {
  padding: 48px 28px;
  border-right: 1px solid #dce4ef;
}
.acc-nums-item:last-child { border-right: none; }
.acc-nums-val {
  font-family: 'Ubuntu', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--acc-blue);
  line-height: 1;
  margin-bottom: 14px;
}
.acc-nums-unit {
  font-size: 1.8rem;
  color: var(--acc-orange);
  font-weight: 700;
}
.acc-nums-lbl {
  font-size: 0.88rem;
  color: var(--acc-text-muted);
  line-height: 1.5;
}
.acc-nums-source {
  font-size: 0.75rem;
  color: var(--acc-text-muted);
  text-align: right;
}

/* ══ TÉMOIGNAGES ═══════════════════════════════════════════════════════════ */
.acc-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.acc-testi {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(13,69,132,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--acc-transition), box-shadow var(--acc-transition), border-color var(--acc-transition);
}
.acc-testi:hover {
  transform: translateY(-6px);
  border-color: rgba(239,169,6,0.55);
  box-shadow: 0 20px 48px rgba(13,69,132,0.14);
}

/* ── Animation entrée témoignages ────────────────────────────────────────── */
@keyframes acc-testi-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.acc-testi-animated .acc-testi {
  animation: acc-testi-in 0.85s ease both;
}
.acc-testi-animated .acc-testi:nth-child(1) { animation-delay: 0s;    }
.acc-testi-animated .acc-testi:nth-child(2) { animation-delay: 0.12s; }
.acc-testi-animated .acc-testi:nth-child(3) { animation-delay: 0.24s; }
.acc-testi-text {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--acc-text);
  margin: 0;
  flex: 1;
}
.acc-testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  margin-top: auto;
}
.acc-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acc-orange), var(--acc-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  font-family: 'Ubuntu', sans-serif;
  flex-shrink: 0;
}
.acc-testi-who {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--acc-text);
}
.acc-testi-role {
  color: var(--acc-text-muted);
  font-size: 0.76rem;
  margin-top: 2px;
  line-height: 1.4;
}

/* ══ RESPONSIVE ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .acc-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-steps { gap: 16px; }
  .acc-step-connector { display: none; }
  .acc-nums-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-nums-item { border-bottom: 1px solid #dce4ef; }
  .acc-nums-item:nth-child(odd) { border-right: 1px solid #dce4ef; }
  .acc-nums-item:nth-child(even) { border-right: none; }
}

@media (max-width: 768px) {
  .acc-section { padding: 56px 0; }
  .acc-section-title { font-size: 1.6rem; }
  .acc-two-col,
  .acc-two-col-reverse { flex-direction: column; gap: 40px; }
  .acc-benefits-grid { grid-template-columns: 1fr; }
  .acc-steps { flex-direction: column; align-items: center; gap: 0; }
  .acc-step { max-width: 100%; width: 100%; }
  .acc-step-connector {
    display: flex;
    justify-content: center;
    align-items: stretch;
    align-self: auto;
    padding-top: 0;
    flex: none;
    width: 100%;
    min-width: unset;
    height: 28px;
  }
  .acc-step-connector::after {
    width: 0;
    height: auto;
    border-top: none;
    border-left: 2px dashed rgba(239,169,6,0.35);
  }
  .acc-cta-block { flex-direction: column; gap: 36px; text-align: center; }
  .acc-cta-checklist { align-items: center; }
  .acc-cta-btn { width: 100%; justify-content: center; }
  .acc-stats-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .acc-forwho-grid { grid-template-columns: 1fr; }
  .acc-fw { min-height: auto; }
  .acc-testi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .acc-hero-btn { font-size: 0.88rem; padding: 13px 20px; }
  .acc-cta-text h2 { font-size: 1.5rem; }
  .acc-schema { padding: 28px 16px 22px; }
  .acc-fw { padding: 28px 22px; }
  .acc-nums-grid { grid-template-columns: 1fr; }
  .acc-nums-item { border-right: none !important; }
  .acc-nums-val { font-size: 3rem; }
}

@media (hover: none) {
  .acc-step:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    transform: none;
    box-shadow: none;
  }
  .acc-step:hover .acc-step-icon { animation: none; }
  .acc-benefit-card:hover {
    transform: none;
    box-shadow: var(--acc-shadow);
    border-top-color: transparent;
  }
  .acc-benefit-card:hover .acc-benefit-icon {
    transform: none;
    border-radius: 12px;
    box-shadow: none;
  }
  .acc-fw-producer:hover {
    transform: none;
    box-shadow: none;
  }
  .acc-fw-consumer:hover {
    transform: none;
    border-color: #e2e8f0;
    box-shadow: 0 8px 32px rgba(13,69,132,0.08);
  }
  .acc-fw:hover .acc-fw-list li          { transform: none; }
  .acc-fw:hover .acc-fw-list .fa-check-circle { transform: none; color: inherit; }
  .acc-fw-producer:hover .acc-fw-list .fa-check-circle { color: #efa906; }
  .acc-fw-consumer:hover .acc-fw-list-dark .fa-check-circle { color: var(--acc-blue); }
  .acc-testi:hover {
    transform: none;
    border-color: #e2e8f0;
    box-shadow: 0 4px 20px rgba(13,69,132,0.06);
  }
}

/* ── LIGHTBOX SCHÉMA ACC ──────────────────────────────────────────────────── */
.acc-schema-img {
  cursor: zoom-in;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.acc-schema-img:hover { opacity: 0.88; transform: scale(1.01); }

#acc-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.82);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: lbFadeIn 0.22s ease;
}
#acc-lightbox.is-open { display: flex; }

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.acc-lb-inner {
  position: relative;
  max-width: 88vw;
  max-height: 88vh;
  animation: lbZoomIn 0.25s ease;
}

@keyframes lbZoomIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.acc-lb-inner img {
  max-width: 88vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  display: block;
}

.acc-lb-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  background: #EFA906;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 1;
}
.acc-lb-close:hover { background: #c98f00; transform: scale(1.1); }
