.mv-section {
  background: #fff;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.mv-section::before {
  /* content: ''; */
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  /* background: linear-gradient(90deg, #055475, #0896c8, transparent); */
}

.mv-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #055475;
  margin-bottom: 0.75rem;
}

.mv-eyebrow::before,
.mv-eyebrow::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: #055475;
}

.mv-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d1f2d;
}

/* Mission & Vision */
.mv-top, .mv-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mv-top { margin-bottom: 3rem; }

.mv-card {
  position: relative;
  background: #f4f1ec;
  padding: 2.5rem;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: #055475;
}

.mv-card__icon {
  width: 48px; height: 48px;
  background: rgba(5,84,117,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

.mv-card__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #055475;
  margin-bottom: 0.5rem;
  display: block;
}

.mv-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d1f2d;
  margin-bottom: 1rem;
}

.mv-card__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

.mv-card__deco {
  position: absolute;
  bottom: -20px; right: -10px;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(5,84,117,0.05);
  pointer-events: none;
}

/* Objectifs */
.mv-block__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d1f2d;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-block__title::after {
  content: '';
  flex: 1; height: 1px;
  background: #e0d8ce;
}

.mv-objectifs {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mv-objectifs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  padding: 0.75rem 1rem;
  background: #f9f7f4;
  border-left: 3px solid #055475;
}

.mv-objectifs li .num {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #055475;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Valeurs */
.mv-valeurs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mv-valeur {
  padding: 1.25rem;
  border: 1px solid #e8e2d8;
  background: #fdfcfb;
  transition: border-color 0.2s, background 0.2s;
}

.mv-valeur:hover {
  border-color: #055475;
  background: rgba(5,84,117,0.03);
}

.mv-valeur__icon { font-size: 1.4rem; margin-bottom: 0.5rem; display: block; }

.mv-valeur__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #055475;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.35rem;
}

.mv-valeur__desc { font-size: 0.82rem; color: #777; line-height: 1.5; }

/* Responsive */
@media (max-width: 768px) {
  .mv-top, .mv-bottom { grid-template-columns: 1fr; }
  .mv-valeurs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .mv-valeurs { grid-template-columns: 1fr; }
}
