/* Design 3 – "Warme Klarheit" – luftig, weiche Cards, freundlich professionell */

:root {
  --blau: #1E3C5C;
  --rot: #820B0B;
  --grau: #F5F5F5;
  --text: #333333;
  --weiss: #ffffff;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

/* Bewegung reduzieren fuer Nutzer:innen, die das in ihrem Betriebssystem
   eingestellt haben (z.B. bei Reizueberempfindlichkeit/Schwindel). Aendert
   nichts am Erscheinungsbild fuer alle anderen. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: Calibri, "Trebuchet MS", sans-serif;
  color: var(--text);
  background: var(--grau);
  line-height: 1.7;
}

/* Sichtbarer Fokus-Rahmen bei Tastatur-Navigation (nicht bei Mausklick,
   dank :focus-visible). Gilt fuer alle Links, Buttons und Formularfelder. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--rot);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--blau);
  color: var(--weiss);
  padding: 14px 24px;
  border-radius: 0 0 10px 0;
  font-weight: bold;
}

.skip-link:focus {
  left: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
header {
  background: var(--weiss);
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 18px rgba(30,60,92,0.06);
}

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

.logo-wortmarke {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 21px;
  font-weight: bold;
  color: var(--blau);
}

.logo-bild {
  height: 44px;
  width: auto;
}

.logo-wortmarke span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: var(--rot);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--blau);
  border-radius: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
}

nav a {
  color: var(--blau);
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 30px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

nav a:hover { background: var(--grau); color: var(--rot); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--weiss);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(30,60,92,0.16);
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover { background: var(--grau); }

/* Hero */
.hero {
  background: var(--weiss);
  padding: 90px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rot);
  background: transparent;
  border: 1.5px solid rgba(130,11,11,0.35);
  padding: 9px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: bold;
  color: var(--blau);
  line-height: 1.15;
  margin-bottom: 26px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rot);
}

.hero p {
  font-size: 18px;
  color: #555;
  max-width: 500px;
  margin-bottom: 36px;
}

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: bold;
  background: var(--rot);
  color: var(--weiss);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(130,11,11,0.25); }

.btn-outline {
  background: transparent;
  color: var(--blau);
  border: 2px solid var(--blau);
  padding: 14px 30px;
}

.btn-outline:hover { background: var(--blau); color: var(--weiss); box-shadow: none; }

.btn-outline-rot:hover { background: var(--rot); border-color: var(--rot); color: var(--weiss); }

.hero-bild {
  max-width: 320px;
  margin-left: 0;
  margin-right: auto;
}

.hero-bild img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(30,60,92,0.18);
}

/* Sections */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  font-size: 14px;
  color: var(--rot);
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.2vw, 40px);
  color: var(--blau);
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.25;
}

.section-intro { color: #555; font-size: 17px; }

/* Angebote cards */
.angebote { padding: 100px 0; }

.karten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.karten-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.karten-grid-2 .karte img {
  height: 280px;
}

@media (max-width: 900px) {
  .karten-grid-2 { grid-template-columns: 1fr; }
}

.karte {
  display: block;
  background: var(--weiss);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(30,60,92,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: inherit;
  text-decoration: none;
}

.karte:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(30,60,92,0.14);
}

.karte img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.karte-inhalt { padding: 32px; }

.karte-inhalt h2, .karte-inhalt h3 {
  font-size: 21px;
  color: var(--blau);
  margin-bottom: 10px;
  line-height: 1.3;
}

.karte-preis {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  color: var(--rot);
  background: rgba(130,11,11,0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.karte-inhalt p {
  font-size: 15.5px;
  color: #555;
  margin-bottom: 22px;
}

.karte-link {
  color: var(--rot);
  font-size: 14.5px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.karte-link::after {
  content: "→";
}

.karte:hover .karte-link {
  gap: 10px;
}

/* Promo-Box (aktueller Kurs, auf Startseite + unter jedem Blogartikel) */
.promo-box { padding: 20px 0 60px; }

.promo-karte {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, var(--rot), var(--blau));
  border-radius: 28px;
  padding: 36px 44px;
  overflow: hidden;
}

.promo-bild {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.promo-inhalt { flex: 1; }

.promo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: var(--weiss);
  font-size: 12.5px;
  font-weight: bold;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.promo-inhalt h2 {
  color: var(--weiss);
  font-size: 26px;
  margin-bottom: 12px;
}

.promo-inhalt p {
  color: rgba(255,255,255,0.92);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.promo-btn {
  display: inline-block;
  background: var(--weiss);
  color: var(--rot);
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 30px;
  transition: transform 0.2s ease;
}

.promo-btn:hover { transform: translateY(-2px); }

@media (max-width: 700px) {
  .promo-karte { flex-direction: column; text-align: center; padding: 30px 26px; }
  .promo-bild { width: 100%; max-width: 260px; height: 200px; }
}

/* Über mich */
.ueber { padding: 40px 0 110px; }

.ablauf-band {
  background: #EDF0F4;
  padding: 70px 0 100px;
}

.ueber-card {
  background: var(--weiss);
  border-radius: 32px;
  padding: 70px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(30,60,92,0.08);
}

.ueber-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.info-karte {
  background: var(--weiss);
  border-radius: 24px;
  padding: 40px 44px;
  box-shadow: 0 12px 40px rgba(30,60,92,0.08);
  max-width: 720px;
  margin: 36px auto;
}

.info-karte h2, .info-karte h3 {
  color: var(--blau);
  font-size: 22px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--rot);
  display: inline-block;
}

.info-karte p {
  color: #555;
  font-size: 16.5px;
  margin-bottom: 16px;
}

.info-karte p:last-child { margin-bottom: 0; }

.wenn-liste {
  margin: 18px 0 0 20px;
  padding: 0;
}

.wenn-liste li {
  color: #555;
  font-size: 16.5px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.wenn-liste li::marker { color: var(--rot); font-weight: bold; }

.wenn-liste li:last-child { margin-bottom: 0; }

.inhalte-nummern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.inhalte-nummer-karte {
  background: var(--weiss);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(30,60,92,0.08);
}

.inhalte-nummer-karte h2, .inhalte-nummer-karte h3 {
  color: var(--blau);
  font-size: 19px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--rot);
  display: inline-block;
}

.inhalte-nummer-karte p {
  color: #555;
  font-size: 15.5px;
  margin: 0;
}

.inhalte-liste {
  margin: 0 0 0 18px;
  padding: 0;
}

.inhalte-liste li {
  color: #555;
  font-size: 15.5px;
  margin-bottom: 6px;
}

.inhalte-liste li::marker { color: var(--rot); }

@media (max-width: 900px) {
  .inhalte-nummern-grid { grid-template-columns: 1fr; }
}

.gespraech-karte {
  background: rgba(30,60,92,0.08);
  border-radius: 24px;
  padding: 48px;
  margin: 50px 0;
}

.gespraech-karte h2, .gespraech-karte h3 {
  color: var(--blau);
  font-size: clamp(24px, 2.6vw, 28px);
  margin-bottom: 20px;
}

.gespraech-karte p {
  color: #444;
  font-size: 17px;
  margin-bottom: 14px;
}

.gespraech-karte p:last-of-type { margin-bottom: 0; }

.gespraech-karte .kontakt-zeile {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.gespraech-karte .kontakt-zeile a {
  color: var(--rot);
  font-weight: bold;
  font-size: 17px;
}

.lern-liste {
  display: flex;
  flex-direction: column;
}

.lern-zeile {
  display: flex;
  gap: 26px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(30,60,92,0.1);
}

.lern-zeile:last-child { border-bottom: none; }

.lern-nummer {
  font-size: 20px;
  font-weight: bold;
  color: var(--rot);
  min-width: 40px;
  flex-shrink: 0;
}

.lern-inhalt h3, .lern-inhalt h4 {
  color: var(--blau);
  font-size: 18px;
  margin-bottom: 6px;
}

.lern-inhalt p {
  color: #555;
  font-size: 15.5px;
  margin: 0;
}

.lern-kacheln {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.kachel {
  background: var(--weiss);
  border-left: 3px solid var(--rot);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 6px 20px rgba(30,60,92,0.07);
}

.kachel h3, .kachel h4 {
  color: var(--blau);
  font-size: 15px;
  margin-bottom: 6px;
  line-height: 1.3;
}

.kachel p {
  color: #666;
  font-size: 13.5px;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .lern-kacheln { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .lern-zeile { flex-direction: column; gap: 6px; }
  .gespraech-karte { padding: 32px 26px; }
}

.zitat {
  border-left: 4px solid var(--rot);
  padding: 6px 0 6px 26px;
  margin: 26px 0;
  font-style: italic;
  font-size: 19px;
  color: var(--blau);
  line-height: 1.6;
}

.merkmale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.merkmale-reihe {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 36px;
  margin: 56px 0;
  text-align: center;
}

.merkmale-reihe .punkt {
  flex: 1;
  max-width: 240px;
}

.merkmale-reihe .punkt h3, .merkmale-reihe .punkt h4 {
  color: var(--blau);
  font-size: 18px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--rot);
  display: inline-block;
}

.merkmale-reihe .punkt p {
  color: #555;
  font-size: 15px;
}

.merkmale-trenner {
  width: 1px;
  background: rgba(30,60,92,0.15);
}

@media (max-width: 900px) {
  .merkmale-reihe { flex-direction: column; align-items: center; }
  .merkmale-trenner { width: 60px; height: 1px; }
}

.merkmal {
  background: var(--weiss);
  border-radius: 20px;
  padding: 34px 28px;
  box-shadow: 0 10px 30px rgba(30,60,92,0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.merkmal::before {
  content: attr(data-nr);
  position: absolute;
  top: -18px;
  right: 4px;
  font-size: 80px;
  font-weight: bold;
  color: rgba(30,60,92,0.06);
  line-height: 1;
}

.merkmal h3, .merkmal h4 {
  color: var(--blau);
  font-size: 18px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--rot);
  display: inline-block;
  position: relative;
}

.merkmal p {
  color: #555;
  font-size: 15px;
  position: relative;
}

.preis-tabelle {
  background: var(--weiss);
  border-radius: 20px;
  padding: 30px 34px;
  box-shadow: 0 10px 30px rgba(30,60,92,0.06);
  margin-top: 30px;
}

.preis-zeile {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(30,60,92,0.08);
}

.preis-zeile:last-child { border-bottom: none; }

.preis-zeile span:first-child { color: var(--text); }
.preis-zeile span:last-child { color: var(--rot); font-weight: bold; }

@media (max-width: 900px) {
  .merkmale-grid { grid-template-columns: 1fr; }
}

.ueber-text h2 {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--blau);
  font-weight: bold;
  margin-bottom: 22px;
}

.ueber-text p {
  font-size: 17px;
  color: #555;
  margin-bottom: 20px;
}

.artikel-text h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  color: var(--blau);
  font-weight: bold;
  margin: 34px 0 14px;
}

.artikel-text h2:first-child { margin-top: 0; }

.artikel-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

.artikel-text ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.artikel-text ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.5;
  color: #555;
}

.artikel-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rot);
}

.artikel-text strong { color: var(--blau); }

/* Kundenstimmen */
.stimmen { padding: 0 0 110px; }

.stimmen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.stimme {
  background: var(--weiss);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(30,60,92,0.06);
}

.stimme p {
  font-style: italic;
  color: #555;
  margin-bottom: 18px;
  font-size: 15.5px;
}

.stimme span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--blau);
  font-weight: bold;
}

/* Kontakt */
footer {
  background: var(--grau);
  padding: 30px 0 0;
}

.footer-welle-band {
  background: var(--blau);
  margin-top: 10px;
}

.welle-oben {
  height: 70px;
  background: var(--grau);
  border-radius: 0 0 100% 100% / 0 0 200% 200%;
  margin-bottom: 36px;
}

.footer-cta-card {
  background: var(--blau);
  color: var(--weiss);
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 56px 50px;
  border-radius: 32px;
  box-shadow: 0 24px 50px rgba(30,60,92,0.18);
}

.cta-foto {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 22px;
  border: 3px solid rgba(255,255,255,0.85);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

footer h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin-bottom: 18px;
  line-height: 1.25;
}

footer .footer-cta-card p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  margin-bottom: 30px;
}

.footer-cta-card .btn { background: var(--rot); color: var(--weiss); }

.footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(30,60,92,0.12);
  margin-bottom: 24px;
}

.footer-info a {
  color: var(--blau);
  font-size: 15.5px;
  font-weight: bold;
}

.trenner-strich {
  display: inline-block;
  width: 2px;
  height: 16px;
  background: var(--rot);
}

.footer-tagline {
  text-align: center;
  margin-bottom: 22px;
}

.footer-tagline-badge {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--weiss);
  background: var(--rot);
  border: 1.5px solid var(--rot);
  padding: 9px 20px;
  border-radius: 30px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-bottom: 40px;
}

.footer-bottom a { color: rgba(255,255,255,0.6); }

.footer-bottom a:hover { color: var(--weiss); }

/* Kurskalender */
.kalender-intro {
  background: var(--weiss);
  padding: 70px 0 50px;
}

.kalender-intro h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--blau);
  font-weight: bold;
  margin-bottom: 18px;
  line-height: 1.2;
}

.kalender-intro p {
  font-size: 17px;
  color: #555;
  max-width: 640px;
}

.hinweis-box {
  background: rgba(30,60,92,0.06);
  border-left: 4px solid var(--blau);
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 15px;
  color: #444;
  margin-top: 26px;
  max-width: 640px;
}

.kalender-liste { padding: 60px 0 110px; }

.monat-block { margin-bottom: 50px; }

.monat-titel {
  font-size: 20px;
  color: var(--blau);
  font-weight: bold;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(30,60,92,0.1);
}

.kurs-zeile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--weiss);
  border-radius: 16px;
  padding: 20px 26px;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(30,60,92,0.06);
  flex-wrap: wrap;
}

.kurs-datum {
  font-size: 14px;
  font-weight: bold;
  color: var(--rot);
  min-width: 150px;
}

.kurs-titel {
  font-size: 16px;
  color: var(--text);
  flex: 1;
  min-width: 200px;
}

.kurs-info {
  background: transparent;
  color: var(--blau);
  border: 1.5px solid var(--blau);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.kurs-info:hover { background: var(--blau); color: var(--weiss); }

.kurs-anmelden {
  background: var(--rot);
  color: var(--weiss);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.kurs-anmelden:hover { background: #6a0909; }

.anmelde-form {
  background: var(--weiss);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 12px 40px rgba(30,60,92,0.08);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: var(--blau);
  margin-bottom: 7px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background: var(--weiss);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blau);
}

.form-row textarea { resize: vertical; min-height: 120px; }

.form-row .hinweis { font-size: 13px; color: #888; margin-top: 6px; }

.anmelde-form > .hinweis {
  font-size: 13px;
  color: #888;
  margin-top: 14px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: bold;
  color: var(--blau);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--rot);
  flex-shrink: 0;
}

.form-row .hinweis a { color: var(--rot); font-weight: bold; }

.falsches-angebot-hinweis {
  font-size: 12px;
  color: #d19a9a;
  text-align: center;
  margin-top: 20px;
}

.falsches-angebot-hinweis a { color: #d19a9a; font-weight: bold; }

.kurs-fixed-box {
  background: var(--grau);
  border-left: 4px solid var(--rot);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: bold;
  color: var(--blau);
}

.kurs-fixed-preis {
  color: var(--rot);
  margin-top: 6px;
}

.anmelde-form button.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-top: 6px;
}

.willkommen-kacheln {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.termine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.termine-grid .info-karte { max-width: none; }

.termine-grid .info-karte a.btn {
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 700px) {
  .termine-grid { grid-template-columns: 1fr; }
}

.willkommen-kachel { max-width: none; }

.willkommen-kachel h2, .willkommen-kachel h3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.willkommen-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.willkommen-kachel p { text-align: left; }

@media (max-width: 700px) {
  .form-grid-2 { grid-template-columns: 1fr; }
  .anmelde-form { padding: 30px 24px; }
  .willkommen-kacheln { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-bild { max-width: 280px; margin: 0 auto; }
  .hero-bild img { height: 300px; }
  .karten-grid { grid-template-columns: 1fr; }
  .ueber-card { grid-template-columns: 1fr; padding: 40px; text-align: center; }
  .ueber-card img { max-width: 220px; margin: 0 auto; }
  .stimmen-grid { grid-template-columns: 1fr; }
  .kurs-zeile { flex-direction: column; align-items: flex-start; }
  .logo-bild { display: none; }
}

/* Mobile-Navigation: Hamburger-Menue statt der vollen Nav-Zeile.
   Breakpoint bewusst hoeher als 900px, weil Logo + alle 8 Menuepunkte
   schon ab ca. 1150px eng werden. */
@media (max-width: 1150px) {
  .nav-toggle { display: flex; }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--weiss);
    box-shadow: 0 16px 30px rgba(30,60,92,0.12);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.25s ease, visibility 0.25s ease;
  }

  nav.nav-open {
    max-height: 80vh;
    overflow-y: auto;
    visibility: visible;
  }

  header .container { position: relative; }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
  }

  nav ul li { width: 100%; }

  nav a {
    display: block;
    padding: 14px 6px;
    border-radius: 0;
    border-bottom: 1px solid var(--grau);
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 16px;
    min-width: 0;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .nav-dropdown-menu a { border-bottom: 1px solid var(--grau); }
}
