/* Page /qui-sommes-nous — styles spécifiques (écosystème produit + services),
   en complément de landing.css (navbar, hero, obs-*, footer). */

/* Écosystème produit — cartes capture + description */
.eco-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.eco-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 1.25rem;
  align-items: center;
}

.eco-card:nth-child(even) {
  grid-template-columns: 1fr 300px;
}

.eco-card:nth-child(even) .eco-shot {
  order: 2;
}

.eco-shot {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.eco-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.eco-shot--phone {
  border: none;
  overflow: visible;
  background: transparent;
  max-width: 230px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

/* Carte suite entreprises : 3 captures empilées + texte */
.eco-card--suite {
  grid-template-columns: 1.15fr 1fr;
  align-items: start;
}

.eco-shot-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eco-shot-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.eco-shot-caption {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 0.35rem;
  text-align: center;
}

.eco-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.eco-body p {
  font-size: 0.92rem;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
}

.eco-body ul {
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.eco-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-light);
  background: rgba(139, 92, 246, 0.15);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

/* Services */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.svc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 14px;
  padding: 1.25rem;
}

.svc-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.svc-card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  margin-bottom: 0.4rem;
}

.svc-card a {
  font-size: 0.85rem;
}

/* Boutons dans une .landing-section : `.landing-section a` (landing.css) a une
   spécificité supérieure à `.btn-primary` — on la contre explicitement. */
.landing-section a.btn-primary {
  color: var(--white);
}

.landing-section a.btn-secondary {
  color: var(--white);
}

@media (max-width: 720px) {
  .eco-card,
  .eco-card:nth-child(even),
  .eco-card--suite {
    grid-template-columns: 1fr;
  }

  .eco-card:nth-child(even) .eco-shot {
    order: 0;
  }
}
