/**
 * CTA-Section: modern, clean – "Bereit? Jetzt starten."
 */
.bc-cta-section {
  padding: 48px 12px 56px;
}

@media (min-width: 768px) {
  .bc-cta-section {
    padding: 64px 16px 80px;
  }
}

@media (min-width: 1024px) {
  .bc-cta-section {
    padding: 80px 24px 100px;
  }
}

.bc-cta-section__container {
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .bc-cta-section__container {
    max-width: 900px;
  }
}

.bc-cta-section__card {
  background: linear-gradient(135deg, rgba(166, 115, 238, 0.08) 0%, rgba(10, 101, 252, 0.06) 100%);
  border: 1px solid rgba(10, 101, 252, 0.12);
  border-radius: 20px;
  padding: 36px 24px;
  box-shadow: 0 4px 24px rgba(6, 18, 87, 0.06);
}

.dark .bc-cta-section__card,
@media (prefers-color-scheme: dark) {
  .bc-cta-section__card {
    background: linear-gradient(135deg, rgba(166, 115, 238, 0.12) 0%, rgba(10, 101, 252, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 768px) {
  .bc-cta-section__card {
    padding: 48px 40px;
  }
}

.bc-cta-section__inner {
  text-align: center;
}

.bc-cta-section__headline {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-black, #061257);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.dark .bc-cta-section__headline,
@media (prefers-color-scheme: dark) {
  .bc-cta-section__headline {
    color: #ffffff;
  }
}

@media (min-width: 768px) {
  .bc-cta-section__headline {
    font-size: 28px;
    margin-bottom: 16px;
  }
}

@media (min-width: 1024px) {
  .bc-cta-section__headline {
    font-size: 32px;
  }
}

.bc-cta-section__subheadline {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-paragraph, #384179);
  margin: 0 0 24px 0;
}

.dark .bc-cta-section__subheadline,
@media (prefers-color-scheme: dark) {
  .bc-cta-section__subheadline {
    color: rgba(255, 255, 255, 0.9);
  }
}

@media (min-width: 768px) {
  .bc-cta-section__subheadline {
    font-size: 16px;
    margin-bottom: 28px;
  }
}

.bc-cta-section__note {
  font-size: 14px;
  color: var(--color-paragraph, #384179);
  opacity: 0.9;
  margin: 0 0 20px 0;
}

.dark .bc-cta-section__note,
@media (prefers-color-scheme: dark) {
  .bc-cta-section__note {
    color: rgba(255, 255, 255, 0.8);
  }
}

.bc-cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
}

.bc-cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}

.bc-cta-section__btn--primary {
  background: var(--color-purple, #A673EE);
  color: #ffffff;
}

.bc-cta-section__btn--primary:hover {
  background: var(--color-blue, #0A65FC);
  color: #ffffff;
  transform: translateY(-1px);
}

.bc-cta-section__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-blue, #0A65FC);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.bc-cta-section__link:hover {
  color: var(--color-black-pearl, #080D27);
  text-decoration: underline;
}

.dark .bc-cta-section__link,
@media (prefers-color-scheme: dark) {
  .bc-cta-section__link {
    color: #D4EDFF;
  }
  .bc-cta-section__link:hover {
    color: #ffffff;
  }
}
