/* Amélioration du style des boutons du groupe de la modale d'accueil */
.welcome-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.welcome-btn-group .welcome-load-btn,
.welcome-btn-group #welcome-start-btn {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(76,175,80,0.12);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.welcome-btn-group .welcome-load-btn:hover,
.welcome-btn-group #welcome-start-btn:hover {
  background: linear-gradient(135deg, #388e3c 0%, #2e7d32 100%);
  box-shadow: 0 4px 16px rgba(76,175,80,0.18);
  transform: translateY(-2px) scale(1.03);
}

.welcome-btn-group .welcome-load-btn:active,
.welcome-btn-group #welcome-start-btn:active {
  background: linear-gradient(135deg, #43a047 0%, #388e3c 100%);
  box-shadow: 0 2px 8px rgba(76,175,80,0.10);
  transform: scale(0.98);
}
body {
  background: #f7fafd;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.subscription-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(40,44,59,0.08);
  padding: 32px;
}
.subscription-left {
  flex: 1 1 340px;
  min-width: 300px;
  padding-right: 32px;
  border-right: 1.5px solid #e0e6f2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.subscription-right {
  flex: 0 1 320px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding-left: 32px;
}
.plan-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 8px;
  color: #2366d1;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.plan-features li {
  margin-bottom: 8px;
  font-size: 1.08em;
  color: #282c3b;
  display: flex;
  align-items: center;
}
.plan-features li::before {
  content: '✔';
  color: #2366d1;
  font-size: 1em;
  margin-right: 8px;
}
.plan-features .disabled {
  color: #b3c6e0;
  text-decoration: line-through;
  opacity: 0.7;
}
.billing-box {
  background: #f7fafd;
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px 0 rgba(40,44,59,0.04);
  margin-bottom: 8px;
}
.billing-box label {
  font-weight: 500;
  color: #2366d1;
  margin-bottom: 6px;
  display: block;
}
.billing-box input {
 
  padding: 8px;
  border-radius: 8px;
  border: 1.5px solid #b3c6e0;
  margin-bottom: 10px;
  font-size: 1em;
}
.cgv-link {
  color: #2366d1;
  text-decoration: underline;
  font-size: 0.98em;
  margin-top: 8px;
  display: inline-block;
}
.price-big {
  font-size: 2.6em;
  font-weight: bold;
  color: #2366d1;
  margin-bottom: 8px;
  text-align: center;
}
.pay-btn {
  background: #2366d1;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 1.2em;
  font-weight: bold;
  padding: 16px 40px;
  margin-top: 12px;
  box-shadow: 0 2px 12px 0 rgba(40,44,59,0.08);
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.pay-btn:hover {
  background: #174a9c;
}
.reassurance {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  justify-content: center;
  font-size: 0.98em;
  color: #2366d1;
}
.reassurance span {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 900px) {
  .subscription-main {
    flex-direction: column;
    padding: 18px;
  }
  .subscription-left, .subscription-right {
    padding: 0;
    border: none;
  }
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    margin: 0;

    color: #333;
  }
  
  .subscription-page {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  
  .subscription-page h1 {
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .subscription-cards {
    margin-top: 50px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .card {
    background: white;
    box-shadow: 0 6px 15px rgb(0 0 0 / 0.1);
    border-radius: 12px;
    width: 280px;
    padding: 30px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.15);
  }
  
  .card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #444;
  }
  
.price {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2366d1; /* bleu rassurant par défaut */
  }
  
  .features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
  }
  
  .features li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #666;
    padding-left: 20px;
    position: relative;
  }
  
  .features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0078d7;
    font-weight: bold;
  }
  .features li.disabled::before {
    content: '✕';
    color: #e74c3c; /* rouge */
  }
  
.btn {
    background: #282c3b;
    border: none;
    color: white;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.btn:hover {
    background: #3a4a6b;
}
.btn[data-plan="buisness"] {
    background: #ccc;
    color : #888;
    cursor : not-allowed;
}
.btn[data-plan="buisness"]:hover {
    background: #ccc;
    color : #888;
    cursor : not-allowed;
}
  /* Couleurs différentes selon le type */
.card.basic .price {
    color: #4a90e2; /* bleu doux, rassurant */
}
.card.premium .price {
    color: #2366d1; /* bleu premium */
}
.card.pro .price {
    color: #8e44ad; /* violet pro, sérieux mais pas agressif */
}
      body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    main.subscription-page {
      flex: 1;
    }
    .dashboard-footer {
      margin-top: auto;
    }