/* =========================
   CTA AVEC IMAGE
========================= */

.cta-section {
  padding: 90px 0;
  background: var(--green-dark);
}

.cta-container {
  width: 92%;
  max-width: 1100px;
  margin: auto;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */

.cta-image-wrapper {
  text-align: center;
}

.cta-image {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

/* CONTENU */

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 16px 36px;
  border-radius: 40px;

  background: white;
  color: var(--green-dark);

  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: var(--green-light);
  color: white;
  transform: translateY(-3px);
}

.cta-micro {
  margin-top: 15px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* Responsive Desktop */

@media (min-width: 992px) {
  .cta-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .cta-content {
    text-align: left;
  }
}
