/* ===============================
   CTA-Bereich mit Angebotsbox
   =============================== */

/* Wrapper zentriert Button und Banner */
.cta-wrapper {
  text-align: center;
  margin-top: 3rem;
}

/* Button: nutzt bestehende CI-Farben (#FFD516) */
.cta-button,
.btn.cta {
  background-color: #00A1FF;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.btn.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 213, 22, 0.4);
}

/* Angebotsbox unter dem Button */
.special-offer {
  margin: 2.5rem auto 0 auto;
  width: 90%;
  max-width: 700px;
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%); /* weicher als reines Schwarz */
  border: 2px solid #00A1FF;
  box-shadow: 0 0 25px rgba(255, 213, 22, 0.2); /* dezente Leuchtkante */
  border-radius: 10px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #fff;
}

/* Überschrift: kräftig, groß, CI-Gelb */
.special-offer-heading {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #00A1FF;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* Subheading: weißer Text, starke Betonung auf Preis */
.special-offer-subheading {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* Preis: noch größer und mit Farbe hervorgehoben */
.special-offer-subheading strong {
  color: #00A1FF;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
}

/* Call‑to‑Action‑Button */
.special-offer-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #00A1FF;
  color: white;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

/* Hover‑Effekt für CTA */
.special-offer:hover .special-offer-cta,
.special-offer-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px 
}

/* Responsives Feintuning */
@media (max-width: 600px) {
.classes .textInner a.btn {
    color: rgb(255, 255, 255) !important;
}
  
  .special-offer {
    padding: 1.5rem;
  }

  .special-offer-heading {
    font-size: 2.2rem;
  }

  .special-offer-subheading {
    font-size: 1.6rem;
  }

  .special-offer-subheading strong {
    font-size: 2rem;
  }
}