/* sections.css — styles propres à chaque section */

/* ============ SERVICES (grid-asym LAY-6) ============ */
.services-section { background: var(--bg-alt); }
.svc-asym {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(14px, 2vw, 20px);
}
.svc-asym__card { grid-column: span 2; }
.svc-asym__card--wide { grid-column: span 3; }
.svc-asym__card--lead { grid-column: span 4; }

/* Séparateur section */
.section-sep {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px 0 0;
  display: block;
}

/* ============ RÉALISATIONS ============ */
.realisations-section { background: var(--bg); }
.realisations-section .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.realisations-section .section-header__left {}
.realisations-section .section-header__right {
  flex-shrink: 0;
}

/* ============ STATS ============ */
/* (dans components.css) */

/* ============ FAQ ============ */
.faq-section { background: var(--surface); }
.faq-section .container {
  max-width: 780px;
}

/* ============ CONTACT ============ */
.contact-section {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 5%, transparent);
  pointer-events: none;
}

/* Zone d'intervention */
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.zone-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
}

/* ============ HERO — sous fond ============ */
.hero-section { background: var(--bg); }

/* ============ AVIS ============ */
.avis-section { background: var(--surface); }

/* Badge note globale en tête de section avis */
.avis-global-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-radius: var(--r-md);
  padding: 10px 18px;
  margin-bottom: 32px;
}
.avis-global-badge__note {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.avis-global-badge__stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.avis-global-badge__count {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.4;
}
.avis-global-badge__count strong { color: var(--text); display: block; font-weight: 600; }
