/* ############## */
/* BANNIERE INFO */
/* ############ */

.adhesion-info-banner {
  display: flex;
  gap: 16px;
  background: #E1F5EE;
  border: 1px solid #1D9E75;
  border-radius: 10px;
  padding: 16px 20px;
  align-items: flex-start;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-text p {
  font-size: 13px;
  color: #0F6E56;
  line-height: 1.6;
}

/* ── TARIFS ── */

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.tarif-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  transition: border-color 0.15s;
}

.tarif-card:hover {
  border-color: #1D9E75;
}

.tarif-card.highlighted {
  border-color: #1D9E75;
  box-shadow: 0 2px 12px rgba(29,158,117,0.15);
}

.tarif-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #1D9E75;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.tarif-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tarif-price {
  font-size: 32px;
  font-weight: 700;
  color: #0F6E56;
  margin-bottom: 8px;
}

.tarif-desc {
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.4;
}

.tarif-note {
  font-size: 11px;
  color: #aaa;
  font-style: italic;
}

.tarif-bonus {
  font-size: 13px;
  color: #0F6E56;
  text-align: center;
  margin-top: 8px;
}

/* ################## */
/* GRILLE PRINCIPALE */
/* ################ */

.adhesion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.adhesion-section-title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
}

/* ######### */
/* PAIEMENT */
/* ####### */

.paiement-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.paiement-card {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 14px 16px;
  align-items: flex-start;
  transition: border-color 0.15s;
}

.paiement-card {
  cursor: pointer;
}

.paiement-card:hover {
  border-color: #1D9E75;
}

.paiement-card.selected {
  border-color: #1D9E75;
  background: #f7fdf9;
  box-shadow: 0 0 0 2px #1D9E75;
}

.paiement-card.highlighted-card {
  border-color: #1D9E75;
  background: #f7fdf9;
}

.paiement-title {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.paiement-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.iban-box {
  margin-top: 10px;
  background: #f7f7f5;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.iban-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #555;
  gap: 12px;
}

.iban-row span:first-child {
  color: #888;
  flex-shrink: 0;
}

.iban-row span:last-child {
  font-family: monospace;
  font-size: 12px;
  color: #111;
  text-align: right;
}

.tresorier-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 16px;
  margin-top: 4px;
}

.tresorier-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #555;
}

.tresorier-info a {
  color: #0F6E56;
  text-decoration: none;
}

.tresorier-info a:hover {
  text-decoration: underline;
}

.tresorier-adresse {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  background: #f7f7f5;
  padding: 8px 12px;
  border-radius: 6px;
}

/* ########## */
/* PROCEDURE */
/* ######## */

.procedure-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1D9E75;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  padding-top: 2px;
}

.step-title {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.step-desc a {
  color: #0F6E56;
  text-decoration: none;
}

.step-desc a:hover {
  text-decoration: underline;
}

.adhesion-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}