/* SERVICES 10 - ACCORDION */
.services-10 {
  padding: 80px 5%;
  background: var(--gray-light);
  font-family: var(--font-body);
}
.services-10__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.services-10__head {
  text-align: center;
  margin-bottom: 44px;
}
.services-10__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--primary);
}
.services-10__subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-dark);
}
.services-10__row {
  margin-bottom: 12px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}
.services-10__row:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.services-10__bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.services-10__bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.services-10__tag {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--secondary);
}
.services-10__name {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--primary);
}
.services-10__toggle {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--secondary) 12%, transparent);
  transition: transform 0.35s ease;
}
.services-10__toggle::before,
.services-10__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--secondary);
  transform: translate(-50%, -50%);
}
.services-10__toggle::before {
  width: 10px;
  height: 2px;
}
.services-10__toggle::after {
  width: 2px;
  height: 10px;
}
.services-10__row.is-open .services-10__toggle {
  transform: rotate(135deg);
}
.services-10__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.services-10__panel-inner {
  padding: 0 26px 22px;
}
.services-10__desc {
  margin: 4px 0 12px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-dark);
}
.services-10__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.services-10__chip {
  padding: 5px 12px;
  border-radius: 14px;
  font-size: 0.78rem;
  background: color-mix(in srgb, var(--secondary) 8%, transparent);
  color: color-mix(in srgb, var(--secondary) 80%, var(--primary));
}

/* ── TITRES : couleur de survol explicite (CLAUDE.md §4.13) ──────────
   Le main.css des themes stylise les balises Hn, hover compris. Chaque
   titre reprend ici sa couleur de base pour neutraliser cet heritage. */
.services-10__title:hover {
  color: var(--primary);
}
