  .plans-container {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  .plans-title {
    font-size: 2.2rem;
    color: #ff2aa8;
    margin-bottom: 40px;
  }
  .plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .plan-card {
    background: #1a1a1a;
    border: 2px solid #ff2aa8;
    border-radius: 16px;
    padding: 30px;
    max-width: 320px;
    flex: 1 1 300px;
    transition: transform 0.3s;
  }
  .plan-card:hover {
    transform: scale(1.03);
  }
  .plan-card.highlight {
    background: #2a002a;
  }
  .plan-card h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .plan-card .price {
    font-size: 1.3rem;
    color: #ff69b4;
    margin-bottom: 20px;
  }
  .plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }
  .plan-card ul li {
    margin: 10px 0;
  }
  .btn-subscribe {
    background: #ff2aa8;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: bold;
  }
  .btn-subscribe:hover {
    background: #ff1493;
  }
  .plan-card small {
  color: #bbb;
  font-size: 0.85em;
  font-style: italic;
  opacity: 0.8;
}

.plan-card.highlight {
  position: relative;
  background: radial-gradient(circle at center, #1a1a1a 70%, #300030 100%);
  border: 2px solid #ff2aa8;
  border-radius: 16px;
  color: #fff;
  z-index: 1;
  box-shadow: 0 0 25px rgba(255, 42, 168, 0.4);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}

.plan-card.highlight::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, #ff2aa8, #cc007a, #ff2aa8);
  border-radius: 18px;
  z-index: -1;
  background-size: 300% 300%;
  animation: borderFlow 6s linear infinite;
  opacity: 0.8;
  filter: blur(2px);
}

.plan-card.highlight .price {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 900; /* ✅ rend le prix bien plus gras */
  text-shadow:
    0 0 10px rgba(255, 42, 168, 0.9),
    0 0 20px rgba(255, 0, 100, 0.6);
  letter-spacing: 0.5px;
}
.plan-card.highlight .plan-header-highlight {
  text-align: center;
  margin-bottom: 10px;
}

.plan-card.highlight .plan-header-highlight h2 {
  font-size: 2.4rem; /* bien plus grand */
  color: #ff2aa8;
  text-shadow: 0 0 8px rgba(255, 42, 168, 0.8);
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
}

.plan-card.highlight .best-offer {
  font-size: 1rem;
  color: #fff;
  opacity: 0.9;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}