/* ============================================================
   PAGES/SOLUTIONS.CSS — Page "Nos Solutions"
   ============================================================ */

/* ---- Intro ---- */
.solutions-intro {
  background: white;
  text-align: center;
}

.solutions-intro .section-subtitle { margin: 0 auto 0; }

/* ---- Sections de service détaillées ---- */
.solution-detail {
  padding: var(--section-padding) 0;
}

.solution-detail:nth-child(even) {
  background: var(--bg-light);
}

.solution-detail:nth-child(odd) {
  background: white;
}

.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.solution-detail:nth-child(even) .solution-layout {
  direction: rtl;
}

.solution-detail:nth-child(even) .solution-text,
.solution-detail:nth-child(even) .solution-visual {
  direction: ltr;
}

.solution-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.08);
  line-height: 1;
  margin-bottom: -16px;
  font-variant-numeric: tabular-nums;
}

.solution-text .section-label { margin-bottom: 8px; }
.solution-text h2 { margin-bottom: 20px; }
.solution-text p  { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.solution-feature svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Exemple client */
.solution-example {
  background: rgba(37, 99, 235, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px;
  margin-top: 24px;
}

.solution-example .example-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}

.solution-example p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

/* Visuel illustratif */
.solution-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-light);
  box-shadow: var(--shadow-lg);
}

.solution-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.solution-visual:hover img { transform: scale(1.02); }

/* Responsive */
@media (max-width: 900px) {
  .solution-layout { grid-template-columns: 1fr; gap: 40px; }
  .solution-detail:nth-child(even) .solution-layout { direction: ltr; }
  .solution-visual {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}
