/* Section Plan / Pricing */
.plan {
 /* Variables CSS */
  --_fg-plan: var(--fg-plan, #000000);
  --_fg-price: var(--fg-price, #00bfa0);
  --_bg-btn: var(--bg-btn, #ff9800);
  margin-top: 2rem;
  margin-bottom: 3rem;
}

/* Titre principal */
.plan-title {
  text-align: center;
  font-size: 1.5rem;
}

/* Texte descriptif */
.plan-text {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Carte plan 1 */
.card1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
  margin-right: 1rem;
  border: solid 2px #ffffff;
  width: 20rem;
  height: 25rem;
  margin-left: 4.5rem;
  border: solid 2px #CCCCCC;
  border-radius: 10px;
  margin-bottom: 2rem;
}

/* Prix + durée */
.price-time {
  display: flex;
  margin-bottom: 1.5rem;
}

/* Prix */
.price {
  color: var(--_fg-price);
  font-size: 1.5rem;
}

/* Durée (mois / an) */
.time {
  padding-top: 0.7rem;
}

/* Sous-texte de la carte */
.card-sub {
  padding: 0;
  margin-bottom: 2rem;
  text-align: center;
}

/* Bouton de carte */
.card-btn {
  border: solid 2px var(--_fg-price);
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  background-color: var(--_fg-price);
  color: #ffffff;
  cursor: pointer;
}

/* État actif carte 1 */
.card1:active {
  background: #e0fcf1;
  border: 2px solid #00bfa6;
}

/* Carte plan 2 */
.card2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
  margin-right: 1rem;
  border: solid 2px #ffffff;
  width: 20rem;
  height: 25rem;
  margin-left: 4.5rem;
  border: solid 2px #cccc;
  border-radius: 10px;
  margin-bottom: 2rem;
}

/* Badge "Best value" */
.card-value {
  border: solid 2px var(--_bg-btn);
  border-radius: 10px;
  padding: 0.25rem 0.25rem;
  background-color: var(--_bg-btn);
  color: #ffffff;
  font-size: 0.75rem;
}

/* État actif carte 2 */
.card2:active {
  background: #e0fcf1;
  border: 2px solid #00bfa6;
}

/* Carte plan 3 */
.card3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
  margin-right: 1rem;
  border: solid 2px #ffffff;
  width: 20rem;
  height: 25rem;
  margin-left: 4.5rem;
  border: solid 2px #CCCCCC;
  border-radius: 10px;
  margin-bottom: 2rem;
}

/* État actif carte 3 */
.card3:active {
  background: #e0fcf1;
  border: 2px solid #00bfa6;
}

/* Sous-titre / nom du plan */
.subtitle {
  font-size: 2rem;
  color: var(--_fg-price);
  margin-bottom: 1rem;
}

/* Responsive : affichage sur écrans larges */
@media (width > 40rem) {
  .cards-plan {
    display: flex;
    flex-direction: row;
    justify-content: center;
    
  }

  .cards-plan{
    width: 95%;
   }
}
