.hero{
  text-align:center;
  margin-bottom:2.6rem;
}
.hero h1{
  background:var(--yellow);
  color:#1b1b1b;
  display:inline-block;
  padding:10px 16px;
  border-radius:12px;
  box-shadow:var(--shadow);
  font-size:clamp(22px,3.5vw,38px);
  font-weight:800;
}

.hero p {
  font-size: 20px;
}

.hero-sub{
  display:inline-block;
  margin-top:1.2rem;
  background:rgba(0,0,0,0.08);
  color:#fff;
  padding:6px 14px;
  border-radius:999px;
  font-weight:50px;
}

/* ------- Grille des 3 offres ------- */
.offer-grid{
  display:grid;
  gap:1.4rem;
  /* 3 colonnes mais qui passent en 2 puis 1 en petit écran */
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom:2.5rem;
}

/* ====== Cartes Fidal Conseils ====== */
.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(155deg, var(--green-header), var(--green-header-2));
  border: 1.5px solid var(--yellow);   /* ✅ liseré jaune fin */
  border-radius: 12px;
  padding: 20px 18px;
  min-height: 360px;
  box-shadow: var(--shadow);
  color: #fff;
  transition: all 0.3s ease;
}

/* Effet léger au survol (subtil et pro) */
.offer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ====== Listes ====== */
.offer-card ul {
  list-style-position: inside;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
  padding-left: 0.4rem;
}

.offer-card li {
  color: #fff !important;
  line-height: 1.3;
  margin-bottom: 0.35rem;
  opacity: 0.95;
}

/* ====== Bloc du prix ====== */
.offer-card .price {
  margin-top: 0.8rem;
  font-weight: 600;
  opacity: 0.95;
  color: #fff;
}

/* ====== Bouton ====== */
.offer-card .btn-container {
  display: flex;
  gap: 10px;              /* espace entre les deux boutons */
  margin-top: 1rem;
  flex-wrap: wrap;        /* pour que ça reste propre sur mobile */
}

.offer-card .cta-btn {
  flex: 1;                /* les deux boutons prennent la même largeur */
  text-align: center;
  white-space: nowrap;
  background: var(--yellow);
  color: #1b1b1b;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
} 

.feedback-block {
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 1.1rem 1rem 1.4rem;
  margin: 2rem auto 3rem;
  text-align: center;
  max-width: 650px;
  color: #fff;
  width: 100%;
  grid-column: 1 / -1; /* ← ça force le bloc à prendre toute la ligne sous les cartes */
}

.feedback-title {
  margin-bottom: .8rem;
  font-weight: 500;
  font-size: 1.1rem;
  color: #fff;
}

.feedback-form {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.feedback-form .cta-link {
  background: var(--yellow);
  color: #0d5d2c;
  border: none;
  border-radius: 8px;
  padding: .55rem 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
}

.feedback-form .cta-link:hover {
  background: #ffe060;
  transform: translateY(-2px);
}

.feedback-form span {
  color: #fff;
  opacity: 0.9;
  font-size: 1rem;
}

/* petit ajustement mobile */
@media (max-width: 540px){
  .hero h1{ font-size:1.6rem; }
  .offer-card{ text-align:left; }
}