header a {
  position: relative;
  transition: all 0.3s ease;
}

/* Ligne cachée au départ */
header a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #b9a5ce;
  transition: width 0.3s ease;
}

/* Hover */
header a:hover {
  color: #b9a5ce !important;
  transform: translateY(-2px);
}

/* Animation de la ligne */
header a:hover::after {
  width: 100%;
}

/* ===== STRUCTURE ===== */
.fade-scroll {
  opacity: 1; /* important : pas de JS = pas de cache total */
}

/* ===== ANIMATION AUTOMATIQUE ===== */
.fade-scroll > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

/* ===== DELAY AUTOMATIQUE ===== */
.fade-scroll > *:nth-child(1) { animation-delay: 0.1s; }
.fade-scroll > *:nth-child(2) { animation-delay: 0.2s; }
.fade-scroll > *:nth-child(3) { animation-delay: 0.3s; }
.fade-scroll > *:nth-child(4) { animation-delay: 0.4s; }
.fade-scroll > *:nth-child(5) { animation-delay: 0.5s; }
.fade-scroll > *:nth-child(6) { animation-delay: 0.6s; }
.fade-scroll > *:nth-child(7) { animation-delay: 0.7s; }

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SERVICES HOVER ===== */
.services {
  transition: all 0.3s ease;
}

.services:hover {
  transform: translateX(5px);
}

.wp-block-button__link {
  transition: all 0.3s ease;
  transform: scale(1);
}

.wp-block-button__link:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.wp-block-list {
    text-align: left !important;
}

.wp-block-list li {
    text-align: left !important;
}
.wp-block-list {
    text-align: left !important;
}

.wp-block-list li {
    text-align: left !important;
}
.service-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
}
.service-card h6 {
    margin-top: 12px;
    margin-bottom: 10px;
}

.service-card ul {
    padding-left: 18px;
}