/* ── Hero À propos ── */
.about-hero {
  padding-top: 140px;
  padding-bottom: 80px;
}

.about-hero .photo-wrap img {
  border-radius: 4px;
  width: 100%;
  max-width: 420px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(107, 144, 128, 0.15);
}

.badge-role {
  display: inline-block;
  background-color: var(--bs-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 1.2rem;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  max-width: 540px;
}

/* ── Stats ── */
.stats-band {
  background-color: var(--bs-primary);
  padding: 48px 0;
}

.stats-band .stat-item { text-align: center; color: #fff; }

.stats-band .stat-number {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  display: block;
}

.stats-band .stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 6px;
  display: block;
}

/* ── Approche ── */
.approach-card {
  border: 1px solid rgba(167, 196, 160, 0.35);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  background: #fff;
}

.approach-card:hover {
  box-shadow: 0 8px 30px rgba(107, 144, 128, 0.12);
  transform: translateY(-4px);
}

.approach-card .approach-icon {
  width: 44px;
  height: 44px;
  color: var(--bs-primary);
  margin-bottom: 1.2rem;
}

.approach-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #212529;
}

.approach-card p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ── Compétences ── */
.skills-section { background-color: var(--bs-secondary); }

.skill-tag {
  display: inline-block;
  background: #fff;
  border: 1px solid rgba(167, 196, 160, 0.5);
  color: #4a4a4a;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 18px;
  margin: 5px 4px;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
}

.skill-tag:hover {
  background: var(--bs-primary);
  color: #fff;
  border-color: var(--bs-primary);
}

.skills-category-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bs-primary-dark);
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(167, 196, 160, 0.4);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bs-primary);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--bs-primary);
}

.timeline-item .timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: 4px;
}

.timeline-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* ── CTA final ── */
.cta-about { background-color: var(--bs-primary); }
.cta-about h2 { color: #fff !important; }
.cta-about p { color: rgba(255,255,255,0.88); }
