@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --primary: #0b3b5c;
  --primary-light: #1e5a7d;
  --accent: #2a9d8f;
  --accent-light: #48b5a8;
  --text-dark: #1e1e2a;
  --text-light: #4a4a5a;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 20px rgba(0,0,0,0.06);
  --radius: 12px;
  --transition: all 0.25s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
h2 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 2rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3rem 0;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-weight: 500;
  text-align: center;
  cursor: poDM Sans;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: white;
}

.btn--full {
  width: 100%;
}

.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 992px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .grid--4, .grid--3 { grid-template-columns: 1fr; }
}

.header {
  padding: 1rem 0;
  background: var(--bg-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo img {
  border-radius: 8px;
  object-fit: cover;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--primary);
}
.logo-line:first-child {
  font-size: 1.6rem;
}
.logo-line:last-child {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-top: -2px;
}

.nav__list {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav__link {
  font-weight: 500;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--accent); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: poDM Sans;
  padding: 0;
}
.burger__line {
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 4px;
  transition: var(--transition);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 1rem 0;
}
.hero__title { margin-bottom: 1.5rem; }
.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.hero__features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(42,157,143,0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-weight: 500;
}
.hero__image img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-md);
}

.vorteil-card {
  background: var(--bg-white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.vorteil-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vorteil-card__icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.module-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.module-card:hover { box-shadow: var(--shadow-md); }
.module-card__header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}
.module-card__number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}
.module-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
.module-card__meta i {
  margin-right: 0.4rem;
  color: var(--primary);
}
.module-card__desc {
  margin-bottom: 1rem;
}
.module-card__topics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.module-card__topics li {
  background: var(--bg-light);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.faq-accordion {
  margin-top: 2rem;
}
.faq-accordion__title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.accordion-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
}
.accordion-summary {
  padding: 1.2rem 1.8rem;
  font-weight: 600;
  cursor: poDM Sans;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-summary::-webkit-details-marker { display: none; }
.accordion-summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  transition: transform 0.2s;
}
details[open] .accordion-summary::after {
  transform: rotate(180deg);
}
.accordion-item p {
  padding: 0 1.8rem 1.5rem 1.8rem;
  color: var(--text-light);
}

.philosophie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.philo-card {
  background: linear-gradient(145deg, var(--bg-white), var(--bg-light));
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.8);
  transition: var(--transition);
}
.philo-card:hover { transform: translateY(-6px); }
.philo-card__icon {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.philo-card--about .philo-card__icon { color: #1e5a7d; }
.philo-card--mission .philo-card__icon { color: #2a9d8f; }
.philo-card--vision .philo-card__icon { color: #0b3b5c; }

.testimonial-swiper {
  padding-bottom: 3rem;
}
.testimonial {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.testimonial__text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial__author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial__author strong { display: block; }

.preis-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
}
.preis-card--popular {
  border: 2px solid var(--accent);
  transform: scale(1.02);
}
.preis-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.3rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}
.preis-card__price {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  color: var(--primary);
  margin: 1rem 0;
}
.preis-card__features {
  list-style: none;
  margin: 2rem 0;
}
.preis-card__features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.preis-card .btn { margin-top: 1rem; }

.anmeldung__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.anmeldung__highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.anmeldung__highlights div i {
  color: var(--accent);
  margin-right: 0.75rem;
}
.form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.2);
}
.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-group--checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  accent-color: var(--accent);
}

.footer {
  margin-top: auto;
  background: #0a1e2c;
  color: #e0e7ef;
  padding: 2.5rem 0 1rem;
  font-size: 0.95rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem 3rem;
}
.footer__logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__logo .logo-text {
  color: white;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.footer__legal a {
  color: var(--accent-light);
  text-decoration: underline;
  font-weight: 500;
  font-size: 0.9rem;
}
.footer__contact {
  grid-column: 1 / -1;
}
.footer__contact p { margin-bottom: 0.3rem; }
.footer__disclaimer {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #b0c0ce;
}
.disclaimer-title { font-weight: 600; margin-bottom: 0.5rem; color: white; }
.footer__copyright {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #8a9fb0;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: poDM Sans;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .module-grid { grid-template-columns: 1fr; }
  .philosophie-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.2rem; }
  .section { padding: 2.5rem 0; }
  .nav { display: none; }
  .nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }
  .nav.active .nav__list { flex-direction: column; gap: 1rem; }
  .burger { display: flex; }
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__features { justify-content: center; }
  .anmeldung__container { grid-template-columns: 1fr; padding: 1.5rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer__logo a { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .hero__features { flex-wrap: wrap; }
}
.docs {
  word-break: break-word;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 40px;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs ul {
  padding-left: 20px;
}
.docs li,
.docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--first-color);
}
.docs a:hover {
  color: var(--second-color);
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 100px 0px 50px;
  }
}