/* CTA 6 - FLOATING SHAPES */
.cta-6 {
  position: relative;
  overflow: hidden;
  padding: 100px 5%;
  text-align: center;
  background: var(--secondary);
  font-family: var(--font-body);
}
.cta-6__shape {
  position: absolute;
  border-radius: 50%;
  background: var(--white-transparent);
  pointer-events: none;
}
.cta-6__shape--1 {
  left: 8%;
  top: 20%;
  width: 80px;
  height: 80px;
  animation: cta6FloatY 5s ease-in-out infinite;
}
.cta-6__shape--2 {
  right: 10%;
  bottom: 15%;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  animation: cta6FloatY 7s ease-in-out infinite 1.5s;
}
.cta-6__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.cta-6__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
}
.cta-6__subtitle {
  margin: 0 0 34px;
  font-size: 1rem;
  color: var(--white);
  opacity: 0.85;
}
.cta-6__btn {
  display: inline-block;
  padding: 17px 36px;
  border-radius: 30px;
  background: var(--white);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.97rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-6__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
@keyframes cta6FloatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@media (max-width: 768px) {
  .cta-6 {
    padding: 70px 6%;
  }
}

/* ── TITRES : couleur de survol explicite (CLAUDE.md §4.13) ──────────
   Le main.css des themes stylise les balises Hn, hover compris. Chaque
   titre reprend ici sa couleur de base pour neutraliser cet heritage. */
.cta-6__title:hover {
  color: var(--white);
}
