.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;
}

/* chaque carte */
.offer-card{
  background:linear-gradient(135deg,var(--green-header),var(--green-header-2));
  border:2px solid var(--yellow);
  border-radius:16px;
  padding:1.6rem 1.2rem 1.4rem;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:0.6rem;
  min-height:10px;
}

.offer-card h3{
  font-size:1.02rem;
  margin:-10px 0 40px;
  color:#fff
}

.offer-card .price{
  margin:0;
  opacity:.92;
  color:#fff;
}

.offer-card p{
  font-size:1.02rem;
  color:#fff
}

/* bouton dans la carte */
.offer-card .cta-btn{
  align-self:flex-start;
  margin-top:.4rem;
  background:var(--yellow);
  color:#000;
  font-weight:700;
  border-radius:10px;
  padding:8px 14px;
  text-decoration:none;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
  transition:transform .2s ease;
}
.offer-card .cta-btn:hover{
  transform:translateY(-2px);
}

.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; }
}