:root {
  --navy: #08265f;
  --blue: #123a7a;
  --orange: #f26b21;
  --green: #69a536;
  --yellow: #f6b51b;
  --purple: #7256a3;
  --light: #f5f8fc;
  --text: #1d3157;
  --muted: #5d6c84;
}

html { scroll-behavior: smooth; }
body { color: var(--text); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
section, header, footer { scroll-margin-top: 90px; }
.site-logo { width: 145px; height: auto; }
.navbar .nav-link { color: var(--navy); font-weight: 600; font-size: .96rem; }
.navbar .nav-link:hover, .navbar .nav-link:focus { color: var(--orange); }
.navbar-toggler { border-color: #d6deeb; }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(8,38,95,.12); }

.btn-primary { background: var(--navy); border-color: var(--navy); }
.btn-primary:hover, .btn-primary:focus { background: #051b48; border-color: #051b48; }
.btn-outline-primary { color: var(--navy); border-color: var(--navy); }
.btn-outline-primary:hover { background: var(--navy); border-color: var(--navy); }

.hero-section { background: #f6f9fc; }
.hero-copy { padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 5vw, 5rem); }
.hero-inner { max-width: 660px; margin-inline: auto; }
.small-label { color: var(--navy); font-weight: 800; letter-spacing: .02em; margin-bottom: .5rem; }
h1 { color: var(--navy); font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.02; font-weight: 800; letter-spacing: -.04em; margin-bottom: 1.4rem; }
.hero-lead { font-size: 1.16rem; }
.hero-emphasis { font-weight: 700; color: var(--navy); }
.hero-image-wrap { min-height: 500px; }
.hero-image { width: 100%; height: 100%; min-height: 500px; object-fit: cover; object-position: center; }

.section-padding { padding: clamp(3.5rem, 7vw, 6rem) 0; }
h2 { color: var(--navy); font-weight: 800; letter-spacing: -.02em; }
#lernzirkel h2 span { color: var(--green); }
.quote-box { background: var(--light); border-radius: 1rem; padding: 1.5rem 2rem; font-size: 1.2rem; border-left: 5px solid var(--green); }
.quote-box span { color: var(--green); }

.course-card { border: 1px solid #dbe3ee; border-radius: 1rem; overflow: hidden; background: white; position: sticky; top: 105px; }
.course-card-head { background: linear-gradient(135deg, #f0eafa, #f8f3fc); padding: 1.4rem; min-height: 170px; position: relative; }
.course-icon { color: var(--purple); font-size: 5rem; line-height: 1; text-align: center; margin-top: 1.2rem; }
.course-facts li { margin-bottom: .45rem; }
.price { color: var(--navy); font-weight: 800; font-size: 1.7rem; white-space: nowrap; }

.section-light { background: var(--light); }
.content-card { background: #fff; border: 1px solid #e0e7f0; border-radius: 1rem; padding: clamp(1.5rem, 3vw, 2.3rem); }
.advantage { display: flex; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid #edf0f5; }
.advantage:last-child { border-bottom: 0; }
.adv-icon { flex: 0 0 35px; font-size: 1.2rem; }
.adv-icon.green { color: var(--green); }
.adv-icon.orange { color: var(--orange); }
.adv-icon.yellow { color: var(--yellow); }
.adv-icon.purple { color: var(--purple); }

.provider-card { background: #f7fbf3; border: 1px solid #dbe8d0; border-radius: 1.2rem; padding: clamp(1.5rem, 4vw, 3rem); }
.provider-card h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.provider-list { padding-left: 1.2rem; margin-bottom: 0; }
.provider-list li { margin-bottom: .65rem; }
.provider-list li::marker { color: var(--green); }

.site-footer { background: var(--navy); color: #dce7fa; }
.footer-logo { width: 105px; height: auto; background: white; border-radius: .4rem; padding: .2rem; }
.footer-brand-row { display: flex; align-items: center; gap: 1.5rem; }
.footer-rule { border-color: rgba(255,255,255,.2); }
.footer-links { display: flex; gap: .7rem; }
.footer-links a { color: white; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

@media (max-width: 991.98px) {
  .hero-image-wrap, .hero-image { min-height: 420px; }
  .course-card { position: static; }
  .navbar-collapse { padding-top: .75rem; }
}
@media (max-width: 575.98px) {
  .site-logo { width: 125px; }
  .hero-copy { padding: 2.5rem 1.25rem; }
  .hero-image-wrap, .hero-image { min-height: 250px; }
  .footer-brand-row { align-items: flex-start; flex-direction: column; }
  .price { font-size: 1.4rem; }
  .course-card .d-flex { align-items: flex-start !important; flex-direction: column; }
}

.course-facts li {
	margin: 0px !important;
}

/* Über mich */
.about-photo-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  background: #e5ebf3;
  border: 2px dashed #b8c4d6;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 600;
}

.about-photo-placeholder span {
  padding: .5rem 1rem;
  border-radius: .5rem;
  background: rgba(255, 255, 255, .7);
}