/* ============================================================
   Page Solutions — intégration maquette Figma
   Préfixe .sol- pour éviter tout conflit avec style.css
   ============================================================ */

.sol-page {
  --sol-red: #DC2626;
  --sol-red-soft: rgba(220, 38, 38, 0.12);
  --sol-red-border: rgba(220, 38, 38, 0.45);
  --sol-dark: #07090d;
  --sol-dark-2: #0b0e14;
  --sol-dark-3: #0c1016;
  --sol-dark-4: #111722;
  --sol-light: #f6f7f9;
  --sol-ink: #10131a;
  --sol-ink-soft: #4b5563;
  --sol-white: #f7f8fb;
  --sol-white-soft: rgba(247, 248, 251, 0.72);
  --sol-serif: 'Space Grotesk', 'Inter', sans-serif;
  --sol-sans: 'Inter', sans-serif;
  font-family: var(--sol-sans);
}

.sol-page *,
.sol-page *::before,
.sol-page *::after {
  box-sizing: border-box;
}

.sol-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Eyebrow / labels (style badge homepage) ---------- */
.sol-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(217, 58, 58, 0.55);
  background: rgba(127, 29, 29, 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  width: fit-content;
  max-width: 100%;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d93a3a;
  line-height: 1.2;
}

.sol-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #d93a3a;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(217, 58, 58, 0.18);
}

.sol-eyebrow::after {
  content: "";
  display: block;
  width: 42px;
  height: 1.5px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: #d93a3a;
}

.sol-section-light .sol-eyebrow {
  background: rgba(239, 51, 46, 0.08);
  border-color: rgba(217, 58, 58, 0.4);
}

/* ---------- HERO ---------- */
.sol-hero {
  position: relative;
  background: #05070b;
  color: var(--sol-white);
  overflow: hidden;
}

.sol-hero-bg {
  position: absolute;
  inset: 0;
  background: #000 url("../images/fond03.png?v=1") no-repeat center center;
  background-size: cover;
  opacity: 1;
}

@media (max-width: 767px) {
  .sol-hero-bg {
    background-size: cover;
    background-position: center center;
  }
}

.sol-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 11, 0.35) 0%, rgba(5, 7, 11, 0.12) 40%, rgba(5, 7, 11, 0.05) 100%);
  pointer-events: none;
}

.sol-hero-inner {
  position: relative;
  padding: 120px 0 90px;
  max-width: 760px;
}

.sol-hero h1 {
  margin: 26px 0 0;
  max-width: 740px;
  font-family: var(--sol-serif);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--sol-white);
}

.sol-hero-accent {
  color: var(--sol-red);
}

.sol-hero p.sol-hero-subtitle {
  margin: 28px 0 26px;
  max-width: 506px;
  font-family: var(--sol-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  line-height: 1.3;
  color: var(--sol-white);
}

.sol-hero p {
  margin: 0 0 18px;
  max-width: 640px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--sol-white-soft);
}

.sol-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 34px 0 0;
}

.sol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 9999px;
  font-family: var(--sol-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.sol-btn-primary {
  /* Style unifié via .pbx-nav-audit-btn dans style.css */
  background: #DC2626;
  color: #fff;
}

.sol-btn-primary:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

.sol-btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
  height: 52px;
  padding: 4px 4px 4px 28px;
  overflow: hidden;
  background: transparent;
  color: var(--sol-white);
  border: 1px solid rgba(247, 248, 251, 0.35);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sol-btn-ghost:hover {
  border-color: var(--sol-red);
  background: rgba(255, 59, 63, 0.08);
}

.sol-btn-ghost::before {
  content: "";
  position: absolute;
  top: -110%;
  left: -42%;
  width: 30%;
  height: 320%;
  background: rgba(255, 255, 255, 0.24);
  transform: rotate(24deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.sol-btn-ghost:hover::before {
  left: 124%;
}

.sol-btn-ghost .sol-btn-label,
.sol-btn-ghost .sol-btn-icon {
  position: relative;
  z-index: 1;
}

.sol-btn-ghost .sol-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #fff;
  color: #DC2626;
}

.sol-btn-ghost .sol-btn-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  transition: transform 0.3s ease;
}

.sol-btn-ghost:hover .sol-btn-icon svg {
  transform: translateX(4px);
}

.sol-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 52px;
}

.sol-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 232px;
  max-width: 100%;
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(12, 16, 24, 0.64);
  border: 1px solid rgba(247, 248, 251, 0.07);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.sol-hero-stat strong {
  font-family: var(--sol-serif);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  color: var(--sol-white);
}

.sol-hero-stat span {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: #b9c2d3;
}

/* ---------- Sections solutions ---------- */
.sol-section {
  position: relative;
  padding: 110px 0;
  scroll-margin-top: 5.5rem;
}

.sol-section-light {
  background: var(--sol-light);
  color: var(--sol-ink);
}

.sol-section-dark {
  background: linear-gradient(180deg, var(--sol-dark) 0%, var(--sol-dark-2) 100%);
  color: var(--sol-white);
}

.sol-section-dark-alt {
  background: linear-gradient(180deg, var(--sol-dark-3) 0%, var(--sol-dark-4) 100%);
  color: var(--sol-white);
}

.sol-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

/* Carte latérale (numéro + avatar) */
.sol-side {
  position: sticky;
  top: 96px;
}

.sol-side-card {
  position: relative;
  background: #0d1117;
  border: 1px solid rgba(247, 248, 251, 0.08);
  border-radius: 22px;
  padding: 30px 26px 34px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.sol-section-light .sol-side-card {
  background: linear-gradient(165deg, #f5f7fa 0%, #e8ecf2 100%);
  border: 1px solid #dde3ea;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.sol-side-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sol-red), rgba(220, 38, 38, 0.15));
}

.sol-section-light .sol-side-card::before {
  display: none;
}

.sol-side-num {
  font-family: var(--sol-serif);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(247, 248, 251, 0.1);
}

.sol-section-light .sol-side-num {
  color: rgba(16, 19, 26, 0.12);
}

.sol-side-avatar {
  width: 132px;
  height: 132px;
  margin: 18px auto 20px;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid var(--sol-red-border);
  box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.08), 0 18px 40px rgba(0, 0, 0, 0.45);
}

.sol-section-light .sol-side-avatar {
  width: 132px;
  height: 132px;
  margin: 18px auto 20px;
  border-radius: 50%;
  border: 2px solid var(--sol-red-border);
  box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.08), 0 10px 28px rgba(15, 23, 42, 0.12);
}

.sol-side-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sol-side-title {
  margin: 0;
  text-align: center;
  font-family: var(--sol-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--sol-white);
}

.sol-section-light .sol-side-title {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 10px 18px;
  border-radius: 9999px;
  background: #fff;
  color: var(--sol-ink);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  font-size: 0.92rem;
}

/* Contenu principal d'une solution */
.sol-body .sol-eyebrow {
  margin-bottom: 16px;
}

.sol-body h2 {
  margin: 0 0 18px;
  font-family: var(--sol-serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
}

.sol-section-light .sol-body h2 { color: var(--sol-ink); }
.sol-section-dark .sol-body h2,
.sol-section-dark-alt .sol-body h2 { color: var(--sol-white); }

.sol-title-accent {
  color: var(--sol-red);
  white-space: normal;
}

@media (min-width: 768px) {
  .sol-title-accent {
    white-space: nowrap;
  }
}

.sol-tagline {
  margin: 0 0 18px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--sol-red);
  line-height: 1.5;
}

.sol-intro {
  margin: 0 0 36px;
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.8;
}

.sol-section-light .sol-intro { color: var(--sol-ink-soft); }
.sol-section-dark .sol-intro,
.sol-section-dark-alt .sol-intro { color: var(--sol-white-soft); }

/* Bloc "Ce que nous faisons" / listes numérotées */
.sol-block {
  margin-bottom: 28px;
}

.sol-section-light .sol-block {
  padding: 28px 28px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e8eaee;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.05);
}

.sol-section-dark .sol-block,
.sol-section-dark-alt .sol-block {
  padding: 28px 28px 24px;
  border-radius: 22px;
  background: #0d1117;
  border: 1px solid rgba(247, 248, 251, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.sol-block-title {
  margin: 0 0 22px;
  font-family: var(--sol-sans);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sol-section-light .sol-block-title { color: #374151; }
.sol-section-dark .sol-block-title,
.sol-section-dark-alt .sol-block-title { color: var(--sol-white); }

.sol-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sol-section-light .sol-list {
  gap: 10px;
}

.sol-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.sol-section-light .sol-list li {
  background: #f3f4f6;
  border: none;
  border-radius: 12px;
  padding: 11px 14px;
  color: #4b5563;
  box-shadow: none;
  align-items: center;
}

.sol-section-light .sol-list li strong {
  color: #111827;
  font-weight: 700;
}

.sol-section-dark .sol-list li,
.sol-section-dark-alt .sol-list li {
  border-radius: 14px;
  background: rgba(247, 248, 251, 0.04);
  border: 1px solid rgba(247, 248, 251, 0.08);
  color: var(--sol-white-soft);
}

.sol-list-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  margin-top: 0;
  border-radius: 9999px;
  background: var(--sol-red);
  border: none;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.sol-list-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 9999px;
  background: var(--sol-red);
  border: none;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.sol-guarantees {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sol-guarantees li {
  border-radius: 16px;
  align-items: center;
  min-height: 72px;
}

.sol-section-dark .sol-guarantees li,
.sol-section-dark-alt .sol-guarantees li {
  background: rgba(247, 248, 251, 0.045);
  border: 1px solid rgba(247, 248, 251, 0.09);
  color: var(--sol-white);
  font-weight: 600;
}

/* Phases (process en 5 phases) */
.sol-phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.sol-phase {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(247, 248, 251, 0.04);
  border: 1px solid rgba(247, 248, 251, 0.09);
  text-align: left;
  min-height: 64px;
  box-sizing: border-box;
}

.sol-phase-label {
  display: block;
  margin-bottom: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sol-red);
}

.sol-phase-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--sol-white);
}

@media (min-width: 769px) {
  .sol-phases {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sol-phase {
    align-items: center;
    text-align: center;
    padding: 18px 14px;
  }

  .sol-phase-label {
    margin-bottom: 8px;
  }

  .sol-phase-name {
    font-size: 0.86rem;
  }
}

@media (min-width: 1025px) {
  .sol-phases {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Panneau "Résultat garanti" */
.sol-result {
  border-radius: 22px;
  padding: 28px 28px 24px;
}

.sol-section-light .sol-result {
  background: #fff;
  border: 1px solid #e8eaee;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.05);
  color: var(--sol-ink);
}

.sol-section-dark .sol-result,
.sol-section-dark-alt .sol-result {
  background: #0d1117;
  border: 1px solid rgba(247, 248, 251, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  color: var(--sol-white);
}

.sol-section-light .sol-result .sol-block-title {
  color: #374151;
}

.sol-section-dark .sol-result .sol-block-title,
.sol-section-dark-alt .sol-result .sol-block-title {
  color: var(--sol-white);
}

.sol-result p {
  margin: 0 0 22px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.sol-section-light .sol-result p {
  color: #6b7280;
}

.sol-section-dark .sol-result p,
.sol-section-dark-alt .sol-result p {
  color: rgba(247, 248, 251, 0.8);
}

.sol-result-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sol-result-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 18px;
  border-radius: 16px;
  min-height: 118px;
  justify-content: center;
}

.sol-section-light .sol-result-stat {
  background: #0d1117;
}

.sol-section-dark .sol-result-stat,
.sol-section-dark-alt .sol-result-stat {
  padding: 0;
  min-height: 0;
  background: transparent;
}

.sol-result-stat strong {
  font-family: var(--sol-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--sol-red);
  line-height: 1.1;
}

.sol-result-stat span {
  font-size: 0.82rem;
  line-height: 1.4;
}

.sol-section-light .sol-result-stat span {
  color: rgba(247, 248, 251, 0.72);
}

.sol-section-dark .sol-result-stat span,
.sol-section-dark-alt .sol-result-stat span {
  color: rgba(247, 248, 251, 0.65);
}

/* Bandeau capacité (rouge) */
.sol-capacity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 36px;
  border-radius: 18px;
  background: linear-gradient(120deg, #ef332e 0%, #c81f1b 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.3);
}

.sol-capacity p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.55;
  max-width: 560px;
}

.sol-capacity-figure {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}

.sol-capacity-figure strong {
  display: block;
  font-family: var(--sol-serif);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
}

.sol-capacity-figure span {
  display: block;
  margin-top: 4px;
  font-family: var(--sol-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  opacity: 0.95;
}

/* Solution 4 : trois colonnes */
.sol-channels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.sol-channel {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: 18px;
  background: rgba(247, 248, 251, 0.04);
  border: 1px solid rgba(247, 248, 251, 0.09);
  overflow: hidden;
}

.sol-channel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sol-red), rgba(220, 38, 38, 0.1));
}

.sol-channel h3 {
  margin: 0 0 20px;
  font-family: var(--sol-sans);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--sol-white);
}

.sol-channel .sol-list li {
  padding: 12px 14px;
  font-size: 0.9rem;
}

/* En-tête de section centré (solution 4) */
.sol-head-center {
  max-width: 780px;
}

/* ---------- Univers Visuel ---------- */
.sol-univers {
  background: #080b10;
  color: var(--sol-white);
  padding: 90px 0;
}

.sol-univers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.sol-univers-copy .sol-eyebrow {
  margin-bottom: 22px;
}

.sol-univers-copy h2 {
  margin: 0 0 22px;
  max-width: 640px;
  font-family: var(--sol-serif);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--sol-white);
}

.sol-univers-copy p {
  margin: 0;
  max-width: 640px;
  font-family: var(--sol-sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: #c5ccda;
}

.sol-univers-gallery {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.sol-univers-frame {
  width: 162px;
  height: 162px;
  padding: 6px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.sol-univers-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

/* ---------- CTA final ---------- */
.sol-cta {
  background: #080b10;
  color: var(--sol-white);
  padding: 100px 0;
  text-align: center;
}

.sol-cta .sol-eyebrow {
  justify-content: center;
  margin: 0 auto;
}

.sol-cta h2 {
  margin: 22px auto 18px;
  max-width: 720px;
  font-family: var(--sol-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--sol-white);
}

.sol-cta p {
  margin: 0 auto 36px;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--sol-white-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .sol-grid {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 36px;
  }

  .sol-channels {
    grid-template-columns: minmax(0, 1fr);
  }

  .sol-univers-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .sol-univers-gallery {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .sol-section {
    padding: 72px 0;
  }

  .sol-hero-inner {
    padding: 84px 0 64px;
  }

  .sol-hero h1 {
    font-size: 34px !important;
    line-height: 1.12 !important;
  }

  .sol-eyebrow {
    padding: 6px 12px;
    gap: 8px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .sol-eyebrow::after {
    width: 28px;
  }

  .sol-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sol-side {
    position: static;
    max-width: 320px;
  }

  .sol-phases {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .sol-phase {
    width: 100%;
  }

  .sol-hero-stats {
    gap: 10px;
  }

  .sol-hero-stat {
    width: 100%;
  }

  .sol-capacity {
    flex-direction: column;
    align-items: flex-start;
  }

  .sol-univers {
    padding: 72px 0;
  }

  .sol-univers-gallery {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
  }

  .sol-univers-frame {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    flex-shrink: 1;
  }

  .sol-result-stats {
    grid-template-columns: 1fr;
  }

  .sol-guarantees {
    grid-template-columns: 1fr;
  }

  .sol-section-light .sol-block,
  .sol-section-light .sol-result,
  .sol-section-dark .sol-block,
  .sol-section-dark-alt .sol-block,
  .sol-section-dark .sol-result,
  .sol-section-dark-alt .sol-result {
    padding: 22px 18px;
  }

  .sol-list li {
    border-radius: 12px;
  }

  /* Réduire l'espace entre la carte capacité et le CTA audit */
  #solution-5.sol-section {
    padding-bottom: 28px;
  }

  .sol-cta {
    padding: 40px 0 72px;
  }
}
