/* ══════════════════════════════════════════════════════════
   wizard-cta — bloc de convergence B2B vers /etude-solaire-entreprise/
   Panneau navy premium. DA navy #1E2D3F / orange #F5A624. Fraunces + IBM Plex.
   Spécificité volontairement élevée (.wzcta …) pour battre les règles
   ".XX-pilier a" des piliers (sinon le texte du bouton hérite de l'orange).
   ══════════════════════════════════════════════════════════ */
.wzcta {
  position: relative;
  display: grid; grid-template-columns: minmax(0,1fr) 300px; align-items: center; gap: 36px;
  padding: 46px 48px; border-radius: 22px; overflow: hidden;
  background: linear-gradient(152deg, #26394f 0%, #1E2D3F 58%);
  box-shadow: 0 28px 70px rgba(30,45,63,.22), inset 0 1px 0 rgba(255,255,255,.05);
  isolation: isolate;
}
.wzcta::before { /* halo orange ambiant */
  content: ""; position: absolute; z-index: -1; top: -120px; right: -90px; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(245,166,36,.22), transparent 68%); pointer-events: none;
}
.wzcta a { text-decoration: none; }

.wzcta-body { min-width: 0; }
.wzcta-eyebrow {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 15px;
  font-family: var(--ff-body, 'IBM Plex Sans', sans-serif);
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  color: var(--c-orange, #F5A624);
}
.wzcta-eyebrow svg { color: var(--c-orange, #F5A624); }
.wzcta-title {
  font-family: var(--ff-body, 'IBM Plex Sans', sans-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; line-height: 1.18;
  letter-spacing: -.03em; color: #fff; margin: 0 0 12px; max-width: 22ch; text-wrap: balance;
}
.wzcta-sub {
  font-family: var(--ff-body, 'IBM Plex Sans', sans-serif);
  font-size: 15px; line-height: 1.58; color: rgba(255,255,255,.74); margin: 0 0 22px; max-width: 54ch;
}

.wzcta-points { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.wzcta-points li {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--ff-body, 'IBM Plex Sans', sans-serif);
  font-size: 14px; font-weight: 500; line-height: 1.4; color: rgba(255,255,255,.86);
}
.wzcta-chk { flex: none; color: var(--c-orange, #F5A624); }

.wzcta-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 22px; }
.wzcta .wzcta-btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 17px 32px;
  font-family: var(--ff-body, 'IBM Plex Sans', sans-serif); font-size: 16px; font-weight: 700; line-height: 1;
  color: var(--c-navy, #1E2D3F); background: var(--c-orange, #F5A624); border-radius: 13px;
  box-shadow: 0 10px 26px rgba(245,166,36,.28);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease, color .18s ease;
}
.wzcta .wzcta-btn svg { color: currentColor; transition: transform .2s ease; }
.wzcta .wzcta-btn:hover { background: var(--c-orange-hover, #FF7A00); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,122,0,.34); }
.wzcta .wzcta-btn:hover svg { transform: translateX(4px); }
.wzcta .wzcta-btn:focus-visible { outline: 3px solid rgba(255,255,255,.7); outline-offset: 3px; }
.wzcta .wzcta-btn:active { transform: translateY(0); }

.wzcta .wzcta-tel {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-body, 'IBM Plex Sans', sans-serif); font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,.72); transition: color .18s ease;
}
.wzcta .wzcta-tel svg { color: var(--c-orange, #F5A624); }
.wzcta .wzcta-tel:hover { color: #fff; }
.wzcta .wzcta-tel:focus-visible { outline: 2px solid var(--c-orange, #F5A624); outline-offset: 3px; border-radius: 4px; }

.wzcta-trust {
  display: flex; align-items: center; gap: 8px; margin: 22px 0 0;
  font-family: var(--ff-body, 'IBM Plex Sans', sans-serif);
  font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.64);
}
.wzcta-trust svg { flex: none; color: var(--c-orange, #F5A624); }

.wzcta-viz { justify-self: center; align-self: center; width: 300px; }
.wzcta-viz-img { display: block; width: 100%; height: auto; max-height: 240px; object-fit: contain; }
@media (prefers-reduced-motion: no-preference) {
  .wzcta-viz-img { animation: wzcta-float 6s ease-in-out infinite; will-change: transform; }
  @keyframes wzcta-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
}

/* ── Responsive ── */
@media (max-width: 880px) {
  .wzcta { grid-template-columns: 1fr; gap: 4px; padding: 34px 26px; border-radius: 18px; }
  .wzcta-viz { display: none; }
  .wzcta-actions { gap: 12px 18px; }
  .wzcta .wzcta-btn { width: 100%; justify-content: center; }
  .wzcta .wzcta-tel { width: 100%; justify-content: center; }
}
@media (max-width: 380px) {
  .wzcta-title { font-size: 1.45rem; }
}
