.elementor-16 .elementor-element.elementor-element-dc5667a{margin-top:-20px;margin-bottom:0px;}.elementor-16 .elementor-element.elementor-element-99cd983 > .elementor-widget-container{margin:-40px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-99cd983 *//* POLICE */
body {
  font-family: 'Inria Sans', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

/* HERO TARIFS */
.hero-tarifs {
  background: linear-gradient(135deg, #1A1A49, #3A3A8C);
  color: #fff;
  padding: 120px 20px 80px;
  text-align: center;
  border-radius: 15px; /* bords arrondis */
  max-width: 1100px;   /* respecter la largeur globale de la page */
  margin: 40px auto 60px auto; /* centré horizontalement avec marges supérieures et inférieures */
  box-sizing: border-box; /* pour que le padding ne dépasse pas la largeur */
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: #FFD457;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

/* TARIFS CARDS */
.tarifs {
  padding: 80px 20px;
}

.tarifs-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-items: stretch; /* cartes prennent toute la largeur disponible */
}

.tarif-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.tarif-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.tarif-level {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1A1A49;
}

.tarif-rhythm,
.tarif-objective,
.tarif-price,
.tarif-mode {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
}

.tarif-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A49;
}

/* CENTRER LE 4ÈME BLOC (TERMINALE) */
.tarif-terminal {
  margin: 0 auto; /* centre horizontalement */
  max-width: 400px; /* largeur du bloc */
}

/* CTA FINALE */
.tarif-cta {
  margin-top: 60px;
  text-align: center;
}

.tarif-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 500;
  color: #1A1A49;
}

.btn-primary {
  background: #1A1A49;
  color: #FFD457;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #33336B;
  transform: scale(1.05);
}/* End custom CSS */