/* Buttons */
.btn-primary {
  background: var(--amber);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: scale(1.05);
}

.hero-btns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 24px;
}

.hero-btns
.btn-primary {
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.hero-btns .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.contact-form .btn-primary {
  /* margin-top: 24px; */
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.contact-form .btn-primary a {
  color: var(--teal-dark);
  text-decoration: none;
}

.final-cta .btn-primary {
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.final-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

/* Box Styling */
.box {
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s ease;
  width: 90%;
  max-width: 1000px;
}

.background-dark,
.background-brand {
  background: linear-gradient(135deg, var(--ink-deep) 0%, var(--panel-end) 100%);
}

/* Zusätzlicher Glow-Akzent für die breiten, flachen Content-Wrapper-Dark-Panels
   (Kontrast-/Anspruch-/Erfahrungs-/Abschluss-Sektion) – der lineare Verlauf allein
   wirkte hier weniger sichtbar als bei Footer/Kontakt-Karte; Farb-Akzente wie bei
   .contact-card::before sorgen für mehr wahrnehmbare Farbvariation über die Fläche.
   Bewusst über .content-wrapper skopiert, damit die (bereits helle) .FAQ-item
   trotz gemeinsamer .background-dark-Klasse unberührt bleibt. */
.content-wrapper.background-dark,
.content-wrapper.background-brand {
  position: relative;
  overflow: hidden;
}

.content-wrapper.background-dark::before,
.content-wrapper.background-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 340px at 12% 0%, rgba(255, 122, 69, 0.22), transparent 60%),
    radial-gradient(640px 340px at 88% 100%, rgba(95, 216, 206, 0.24), transparent 60%);
  pointer-events: none;
}

.content-wrapper.background-dark > .container,
.content-wrapper.background-brand > .container {
  position: relative;
}

.background-light {
  background: white;
  box-shadow: var(--shadow-sm);
}

.box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

/* Info Block */
.info-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.info-block .generic-p {
  padding: 20px;
  background: var(--amber-soft);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

/* Testimonials */
.testimonial {
  border-left: 4px solid var(--amber);
  position: relative;
  padding-left: 40px;
}

.testimonial .generic-p {
  font-style: italic;
  color: var(--muted);
}

/* Pricing Grid (Struktur/Stil aus Homepage_Design übernommen) */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.active {
  border: 2px solid var(--amber);
  box-shadow: var(--shadow-active);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--muted);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: none;
}

.price-card.active .price-badge {
  background: var(--amber);
  color: var(--white);
  border: none;
}

.price-class {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}

/* Kurzbeschreibung der Klassenstufe (neue Angebots-Inhalte aus new_mockup.html) */
.price-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

/* Zahlungshinweis direkt unter dem Preis (zieht an den Preiswert heran) */
.price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: -12px 0 20px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex-grow: 1;
}

.price-features li {
  font-size: 0.9rem;
  color: var(--ink);
  padding: 9px 0;
  border-top: 1px solid var(--paper-soft);
  display: flex;
  gap: 8px;
}

.price-features li:first-child {
  border-top: none;
}

.price-features li::before {
  content: '✓';
  color: var(--teal-dark);
  font-weight: 700;
}

.price-btn {
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--paper-soft);
  color: var(--muted);
  text-decoration: none;
  display: block;
  transition: transform 0.2s;
}

.price-card.active .price-btn {
  background: var(--amber);
  color: var(--white);
}

.price-card.active .price-btn:hover {
  transform: scale(1.05);
}

/* FAQ Section */
.FAQ-section {
  margin-bottom: var(--space-20);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.FAQ-item {
  border-left: 4px solid var(--amber);
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Mockup-Look: helle Karte statt Dark-Panel; überschreibt .background-dark gezielt nur hier */
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.FAQ-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.FAQ-item .title-light {
  color: var(--ink);
}

.FAQ-question {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.FAQ-question::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--amber);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.FAQ-question[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.FAQ-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.FAQ-item.open .FAQ-answer {
  grid-template-rows: 1fr;
}

.FAQ-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.FAQ-answer-inner .generic-p {
  text-align: left;
  padding-top: 12px;
  /* rückt den Antworttext unter den Fragetext ein (Icon-Breite 24px + Gap 12px),
     statt unter dem Plus-Icon zu beginnen */
  padding-left: 36px;
}

.about-the-course:last-child {
  margin-bottom: 0;
}

/* Content Wrapper */

.content-wrapper {
  padding: var(--space-20) 0;
}

/* Utility Classes */
#pricing .about-the-course {
  text-align: center;
  margin-top: 40px;
}
