/**
 * Styles pour les pages institutionnelles
 */

.hero-section--inner {
  text-align: left;
  padding: 70px 0;
}

.hero-section--inner .hero-content {
  max-width: 980px;
}

.hero-section--inner .hero-ctas {
  justify-content: flex-start;
}

.hero-section--inner .hero-title {
  margin-bottom: 1rem;
}

.hero-section--inner .hero-subtitle {
  margin-bottom: 2rem;
}

.section-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-top: 0.75rem;
}

.two-col-section {
  padding: 80px 0;
  background: #ffffff;
}

.two-col-section.alt {
  background: rgba(132, 11, 85, 0.02);
}

#savoir-faire .two-col-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

#savoir-faire .two-col-grid {
  align-items: flex-start;
}

#savoir-faire .two-col-content > p {
  margin-top: 0;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.two-col-media .carousel-slide img {
  height: 100%;
  object-fit: cover;
  display: block;
}

 .quality-section {
   margin: 50px 0;
 }

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0 0;
}

.checklist li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.certification-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.certification-card img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

.certification-badge {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-family: var(--font-secondary);
  font-weight: 600;
  margin-bottom: 10px;
}

.certification-card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.78);
}

.simple-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.simple-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.simple-card--switch {
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

#savoir-faire .simple-card--switch:not(.is-active)::after {
  content: '→';
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 1.1rem;
  color: rgba(15, 23, 42, 0.55);
  transition: transform 0.2s ease, color 0.2s ease;
}

#savoir-faire .simple-card--switch:not(.is-active):hover::after {
  transform: translateX(2px);
  color: rgba(132, 11, 85, 0.75);
}

.simple-card--switch:hover {
  border-color: rgba(132, 11, 85, 0.28);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.simple-card--switch.is-active {
  border-color: rgba(132, 11, 85, 0.55);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
}

.simple-card h3 {
  margin-bottom: 0.75rem;
}

.simple-card p {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .simple-cards {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
  }
}

/* Touch point (CTA épuré) */

.touchpoint-section {
  padding: 56px 0;
}

.touchpoint-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.touchpoint-link:hover {
  text-decoration: none;
}
