/* ABS Fahrschule Theme — Page Sections */

/* ═══ HOME V2 — Full Image Hero ═══ */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 130px;
  overflow: hidden;
}

.hero-v2-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  background-size: cover;
  background-position: center;
}

.hero-v2-content {
  position: relative;
  z-index: 2;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-v2-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-v2-avatars {
  display: flex;
}

.hero-v2-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,34,0.4);
  margin-right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
}

.hero-v2-avatars span:nth-child(1) { background: var(--blue); }
.hero-v2-avatars span:nth-child(2) { background: var(--accent); }
.hero-v2-avatars span:nth-child(3) { background: #00c864; }

.hero-v2-proof-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.hero-claim {
  font-family: 'Obviously Narrow', 'Arial Narrow', Impact, sans-serif;
  font-size: clamp(52px, 9vw, 140px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
  max-width: 900px;
}

/* Default-Span im Claim (z.B. wenn keine Klasse gesetzt ist) */
.hero-claim span {
  color: var(--blue);
}
/* Spezifische Brand-Hervorhebungen — A in Blau, S in Accent-Orange */
.hero-claim .claim-a { color: var(--blue); }
.hero-claim .claim-s { color: var(--accent); }

.hero-v2 h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-v2 h1 a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
  text-underline-offset: 3px;
}

.hero-v2-checks {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-v2-check {
  font-family: 'Open Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.hero-v2-check-icon {
  color: var(--blue);
  font-size: 16px;
}

.hero-v2-google {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-v2-stars { color: #f5a623; letter-spacing: 1px; }

/* Large screens: push hero content ~10% higher */
@media (min-width: 1800px) {
  .hero-v2 {
    padding-bottom: calc(130px + 8vh);
  }
}

/* ═══ HOME V2 — Kurse Section ═══ */
.v2-kurse {
  background: var(--navy);
  padding: clamp(60px, 8vw, 120px) 0 0;
}

/* Standalone page variant (Führerscheinklassen page) — needs extra top padding below nav */
.v2-kurse--page {
  padding-top: 0;
}

.v2-kurse-header {
  display: flex;
  flex-direction: column;
  gap: 12px; /* einheitlich mit global .section-h2 { margin-bottom: 12px } */
  margin-bottom: clamp(32px, 5vw, 64px);
}

/* v2-kurse-header h2: nutzt globale .section-h2 Größe, nur Farbe overriden */
.v2-kurse-header h2 {
  color: var(--white);
}

.v2-kurse-header p {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  color: var(--text-on-dark);
  line-height: 1.7;
  max-width: 680px;
  padding-top: 12px;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(32px, 5vw, 64px) 0;
  margin-top: clamp(48px, 8vw, 96px);
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.stat-number {
  font-family: 'Obviously Narrow', 'Arial Narrow', Impact, sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.stat-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text-on-dark);
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.3;
}

/* ═══ PAGE: KLASSE B DETAIL ═══ */
.detail-hero {
  background: var(--navy);
  padding: 140px 0 clamp(64px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
}

.detail-breadcrumb {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--text-on-dark);
  margin-bottom: clamp(24px, 4vw, 40px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
}

.detail-breadcrumb a:hover { text-decoration: underline; }

.detail-hero h1 {
  font-family: 'Obviously Narrow', 'Arial Narrow', Impact, sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: clamp(16px, 2vw, 24px);
}

.detail-hero h1 span { color: var(--blue); }

.detail-hero .detail-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  color: var(--text-on-dark);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}

.detail-hero .detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}

.detail-fact {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.detail-fact strong {
  color: var(--white);
  font-weight: 700;
}

.detail-hero .detail-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Hero Theme: LIGHT (weißer Hintergrund, dunkelblaue Schrift) ─── */
.detail-hero--light {
  background: var(--white);
}
.detail-hero--light .detail-breadcrumb { color: var(--text-muted); }
.detail-hero--light .detail-breadcrumb a { color: var(--blue); }
.detail-hero--light h1 { color: var(--navy); }
.detail-hero--light h1 span { color: var(--blue); }
.detail-hero--light .detail-subtitle { color: var(--text); opacity: 0.7; }
.detail-hero--light .detail-fact { color: rgba(0,0,34,0.5); }
.detail-hero--light .detail-fact strong { color: var(--navy); }
.detail-hero--light .btn-ghost {
  color: var(--navy);
  border-color: rgba(0,0,34,0.2);
}
.detail-hero--light .btn-ghost:hover {
  background: rgba(0,0,34,0.05);
  border-color: var(--navy);
}

/* ─── Hero Theme: LIGHT-ACCENT (weiß mit blauem Titel) ─── */
.detail-hero--light-accent {
  background: var(--white);
}
.detail-hero--light-accent .detail-breadcrumb { color: var(--text-muted); }
.detail-hero--light-accent .detail-breadcrumb a { color: var(--blue); }
.detail-hero--light-accent h1 { color: var(--blue); }
.detail-hero--light-accent h1 span { color: var(--navy); }
.detail-hero--light-accent .detail-subtitle { color: var(--text); opacity: 0.7; }
.detail-hero--light-accent .detail-fact { color: rgba(0,0,34,0.5); }
.detail-hero--light-accent .detail-fact strong { color: var(--navy); }

/* BLUE — hellblauer Hintergrund, weiße Schrift (Klasse B, C/CE) */
.detail-hero--blue {
  background: var(--blue);
}
.detail-hero--blue .detail-breadcrumb { color: rgba(255,255,255,0.7); }
.detail-hero--blue .detail-breadcrumb a { color: var(--white); }
.detail-hero--blue .detail-breadcrumb a:hover { color: var(--navy); }
.detail-hero--blue h1 { color: var(--white); }
.detail-hero--blue h1 span { color: var(--navy); }
.detail-hero--blue .detail-subtitle { color: rgba(255,255,255,0.9); }
.detail-hero--blue .detail-fact { color: rgba(255,255,255,0.7); }
.detail-hero--blue .detail-fact strong { color: var(--white); }
/* Primärer CTA wird orange auf blauem Hero — sonst nicht lesbar */
.detail-hero--blue .btn-hero-cta {
  background: var(--accent);
  box-shadow: 0 4px 20px rgba(255,87,59,0.35);
  animation: none;
}
.detail-hero--blue .btn-hero-cta:hover {
  background: var(--navy);
  box-shadow: 0 8px 32px rgba(0,0,34,0.4);
}
.detail-hero--blue .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.detail-hero--blue .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ACCENT — oranger Hintergrund, weiße Schrift (Klasse AM) */
.detail-hero--accent {
  background: var(--accent);
}
.detail-hero--accent .detail-breadcrumb { color: rgba(255,255,255,0.75); }
.detail-hero--accent .detail-breadcrumb a { color: var(--white); }
.detail-hero--accent .detail-breadcrumb a:hover { color: var(--navy); }
.detail-hero--accent h1 { color: var(--white); }
.detail-hero--accent h1 span { color: var(--navy); }
.detail-hero--accent .detail-subtitle { color: rgba(255,255,255,0.9); }
.detail-hero--accent .detail-fact { color: rgba(255,255,255,0.75); }
.detail-hero--accent .detail-fact strong { color: var(--white); }
.detail-hero--accent .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.detail-hero--accent .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.detail-hero--light-accent .btn-ghost {
  color: var(--navy);
  border-color: rgba(0,0,34,0.2);
}
.detail-hero--light-accent .btn-ghost:hover {
  background: rgba(0,0,34,0.05);
  border-color: var(--navy);
}

/* Detail Sections */
.detail-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--white);
}

.detail-section.alt { background: var(--offwhite); }
.detail-section.dark { background: var(--navy); }

.detail-section .section-h2 {
  margin-bottom: 12px;
  color: var(--navy);
}

.detail-section.dark .section-h2 { color: var(--white); }

.detail-section .section-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.detail-section.dark .section-sub { color: var(--text-on-dark); }

/* ═══ WEG ZUM FUEHRERSCHEIN — Scroll Band ═══ */
.weg-section {
  background: var(--navy);
  padding: clamp(100px, 12vw, 180px) 0 140px;
  position: relative;
  overflow: clip;
}

.weg-header {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.weg-header .section-eyebrow {
  margin-bottom: 24px;
}

/* weg-section H2: große Hero-Variante in beiden Bereichen (Ausnahme für Marketing-Claim) */
.weg-header .section-h2,
.weg-bottom-h2 {
  color: var(--white);
  font-size: clamp(48px, 8vw, 120px);
}
.weg-header .section-h2 { margin-bottom: 0; }
.weg-bottom-h2 { margin-bottom: 32px; }

.weg-wrap {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
}

/* The SVG band — full height behind content */
.weg-svg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.weg-svg {
  width: 100%;
  height: 100%;
}

.weg-band-draw {
  fill: none;
  stroke: var(--blue);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.weg-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 12vw, 280px);
  padding: 48px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
}

.weg-row.row-reverse {
  flex-direction: row-reverse;
}

/* Dark card — Quoti proportions: square, big text */
.weg-card {
  background: #111122;
  border-radius: 28px;
  padding: 44px;
  width: 520px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.weg-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0,102,255,0.15);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
}

.weg-card h3 {
  font-family: 'Obviously Narrow', 'Arial Narrow', Impact, sans-serif;
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: auto;
  text-transform: uppercase;
}

.weg-card h3 span {
  color: var(--blue);
}

.weg-card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 340px;
}

/* Phone mockup — Quoti-style */
.weg-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.weg-phone-frame {
  width: 360px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.weg-phone-screen {
  background: var(--white);
  border-radius: 28px;
  padding: 28px 24px;
  min-height: 400px;
}

.weg-phone-header {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,34,0.06);
}

.weg-phone-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(0,0,34,0.02);
  transition: all 0.2s;
}

.weg-phone-item.active {
  background: rgba(0,102,255,0.06);
  border: 1.5px solid rgba(0,102,255,0.15);
}

.weg-phone-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.weg-phone-item span {
  font-size: 11px;
  color: var(--text-muted);
}

.weg-phone-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,34,0.1);
  margin-top: 4px;
  flex-shrink: 0;
}

.weg-phone-dot.blue {
  background: var(--blue);
}

.weg-phone-btn {
  margin-top: 16px;
  background: var(--blue);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}

.weg-phone-progress {
  height: 6px;
  background: rgba(0,0,34,0.06);
  border-radius: 3px;
  overflow: hidden;
  margin: 8px 0;
}

.weg-phone-progress-bar {
  height: 100%;
  background: var(--blue);
  border-radius: 3px;
}

.weg-phone-stat {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
}

.weg-phone-appointment {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(0,102,255,0.04);
  border-radius: 14px;
  border: 1.5px solid rgba(0,102,255,0.1);
}

.weg-phone-cal {
  width: 48px;
  height: 52px;
  background: var(--blue);
  color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  flex-shrink: 0;
}

.weg-phone-cal strong {
  font-size: 20px;
  font-weight: 800;
}

.weg-phone-appointment strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.weg-phone-appointment span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.screen-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.weg-phone-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 36px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 28px rgba(0,102,255,0.3);
}

.weg-phone-success-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.weg-phone-success-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 220px;
}

/* Final pill */
.weg-final {
  text-align: center;
  padding: 64px 48px 0;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
}

/* Hide mobile phone clone on desktop */
.weg-card .weg-phone-mobile { display: none; }

/* ═══ FOOTER ═══ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 4vw, 48px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(40px, 6vw, 64px);
}
.footer-brand {
  max-width: 320px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo span {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-on-dark);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col strong {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-col a,
.footer-col span {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

/* Sub-Header innerhalb einer Spalte (## Prefix) */
.footer-col .footer-subheader {
  margin-top: 14px;
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
}
.footer-col .footer-subheader:first-child { margin-top: 0; }

/* Leerzeilen-Spacer */
.footer-col .footer-spacer {
  display: block;
  height: 8px;
}
/* "Made by Lab7"-Signatur im Footer-Bottom */
.footer-made-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--text-on-dark);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.footer-made-by:hover,
.footer-made-by:hover .footer-made-by-text,
.footer-made-by:hover .footer-made-by-label,
.footer-made-by:hover .footer-made-by-brand {
  opacity: 1;
  color: var(--blue) !important;
}
.footer-made-by-text {
  /* "Made by" – Standardgewicht */
  font-weight: 400;
}
/* Logo + "Lab7" als enger zusammengehörige Brand-Einheit */
.footer-made-by-brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-made-by-logo {
  display: inline-flex;
  width: 22px;
  height: 12px;
  color: currentColor;
}
.footer-made-by-logo svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: stroke 0.3s ease;
}
.footer-made-by-logo svg path {
  stroke: currentColor;
  transition: stroke 0.3s ease;
}
.footer-made-by:hover .footer-made-by-logo svg path {
  stroke: var(--blue);
}
/* Hover-Choreografie: Logo skaliert minimal hoch, Texte rücken seitlich weg.
   Stroke des SVGs nutzt currentColor → wechselt automatisch auf --blue. */
.footer-made-by-logo,
.footer-made-by-text,
.footer-made-by-label {
  transition: transform 0.3s ease;
}
.footer-made-by:hover .footer-made-by-logo {
  transform: scale(1.1);
}
.footer-made-by:hover .footer-made-by-text {
  transform: translateX(-2px);
}
.footer-made-by:hover .footer-made-by-label {
  transform: translateX(2px);
}
.footer-made-by-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(24px, 4vw, 40px);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom span {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text-on-dark);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }

/* ═══ KURS-TERMINE LIVE — Navy Hintergrund, wie kurs-liste (kursuebersicht) ═══ */
.kurs-termine-live {
  background: var(--navy);
  color: var(--white);
  padding: clamp(60px, 8vw, 120px) 0;
}
.ktl-header {
  margin: 0 0 48px;
  text-align: left;
}
.ktl-header .section-h2 { color: var(--white); }
.ktl-header p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text-on-dark);
  margin-top: 12px;
  line-height: 1.5;
}
.ktl-empty {
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  padding: 40px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  color: var(--white);
}
.ktl-empty a { color: var(--blue); text-decoration: none; }

/* List — ein zusammenhängender Block mit thin dividers zwischen Items */
.kurs-termine-live .ktl-list {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  overflow: hidden;
}
.kurs-termine-live .ktl-item {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.kurs-termine-live .ktl-item:first-child {
  border-top: none;
}
.kurs-termine-live .ktl-item:hover {
  background: rgba(255,255,255,0.04);
}
.kurs-termine-live .ktl-item.is-open {
  background: rgba(255,255,255,0.06);
}

/* Row: das sichtbare Summary wie kurs-liste-item */
.kurs-termine-live .ktl-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
}
.kurs-termine-live .ktl-item-info {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  flex: 1;
}

/* Badge auf Navy Hintergrund */
.kurs-termine-live .kurs-liste-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
}
.kurs-termine-live .kurs-liste-badge.badge-b,
.kurs-termine-live .kurs-liste-badge.badge-c {
  background: var(--blue);
  color: var(--white);
}
.kurs-termine-live .kurs-liste-badge.badge-l17 {
  background: rgba(255,255,255,0.92);
  color: var(--navy);
}
.kurs-termine-live .kurs-liste-badge.badge-am {
  background: var(--accent);
  color: var(--white);
}
.kurs-termine-live .kurs-liste-badge.badge-a {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.kurs-termine-live .kurs-liste-badge.badge-be,
.kurs-termine-live .kurs-liste-badge.badge-f,
.kurs-termine-live .kurs-liste-badge.badge-c95 {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.15);
}

.kurs-termine-live .ktl-item-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kurs-termine-live .ktl-item-text strong {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.kurs-termine-live .ktl-item-text span {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: var(--text-on-dark);
  line-height: 1.4;
}
.kurs-termine-live .ktl-sep {
  margin: 0 6px;
  opacity: 0.5;
}

/* Actions rechts */
.kurs-termine-live .ktl-item-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Anmeldung CTA mit Preis darunter (gestackt) */
.anmeldung-cta {
  margin-top: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.anmeldung-preis {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'Open Sans', sans-serif;
  line-height: 1;
  padding-left: 16px;
}
.anmeldung-preis::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 18px;
  background: var(--blue);
  border-radius: 1px;
}
.anmeldung-preis-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.anmeldung-preis-value {
  font-family: 'Obviously Narrow', 'Arial Narrow', Impact, sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.01em;
}
.anmeldung-preis-note {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .anmeldung-preis-value { font-size: 24px; }
}
.kurs-termine-live .ktl-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: transparent;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: color 0.2s;
}
.kurs-termine-live .ktl-toggle-btn:hover { color: var(--white); }
.kurs-termine-live .ktl-item.is-open .ktl-toggle-btn { color: var(--blue); }
.kurs-termine-live .ktl-toggle-icon {
  transition: transform 0.25s ease;
}
.kurs-termine-live .ktl-item.is-open .ktl-toggle-icon {
  transform: rotate(180deg);
}
.kurs-termine-live .ktl-item.is-open .ktl-toggle-text::after {
  content: 'Schließen';
}
.kurs-termine-live .ktl-item.is-open .ktl-toggle-text {
  font-size: 0;
}
.kurs-termine-live .ktl-item.is-open .ktl-toggle-text::after {
  font-size: 13px;
}

/* Details (Abend-Liste) — Table-Stil, kein padding auf Zeilen, horizontal nebeneinander */
.kurs-termine-live .ktl-item-details {
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.kurs-termine-live .ktl-item-details[hidden] {
  display: none;
}
.kurs-termine-live .ktl-lessons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.kurs-termine-live .ktl-lesson {
  display: grid;
  grid-template-columns: 28px 86px 110px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 32px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
}
.kurs-termine-live .ktl-lesson:last-child {
  border-bottom: none;
}
.kurs-termine-live .ktl-lesson-num {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
}
.kurs-termine-live .ktl-lesson-date {
  color: var(--white);
}
.kurs-termine-live .ktl-lesson-date strong {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  margin-right: 4px;
}
.kurs-termine-live .ktl-lesson-time {
  color: var(--text-on-dark);
  font-variant-numeric: tabular-nums;
}
.kurs-termine-live .ktl-lesson-topic {
  font-weight: 600;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kurs-termine-live .ktl-lesson-ue {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(45,156,255,0.15);
  padding: 2px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

@media (max-width: 780px) {
  .kurs-termine-live .ktl-item-row {
    flex-wrap: wrap;
    padding: 16px;
    gap: 14px;
  }
  .kurs-termine-live .ktl-item-info {
    flex: 1 1 100%;
    gap: 14px;
  }
  .kurs-termine-live .ktl-item-text strong { font-size: 18px; }
  .kurs-termine-live .ktl-item-text span { font-size: 13px; }
  .kurs-termine-live .ktl-item-actions {
    width: 100%;
    justify-content: space-between;
  }
  .kurs-termine-live .ktl-item-details { padding: 0 16px 20px; }
  .kurs-termine-live .ktl-lesson {
    grid-template-columns: 24px 1fr auto;
    grid-template-areas:
      "num topic ue"
      "num meta  meta";
    row-gap: 4px;
    column-gap: 12px;
  }
  .kurs-termine-live .ktl-lesson-num { grid-area: num; }
  .kurs-termine-live .ktl-lesson-topic { grid-area: topic; white-space: normal; }
  .kurs-termine-live .ktl-lesson-date { grid-area: meta; display: inline; color: var(--text-muted); }
  .kurs-termine-live .ktl-lesson-time { grid-area: meta; display: inline; margin-left: 8px; }
  .kurs-termine-live .ktl-lesson-ue { grid-area: ue; }
}

/* ═══ PRÜFUNGSTERMINE (PC + Praktisch) — Stil wie kurs-termine-live ═══ */
.pruefungen-section {
  background: var(--navy);
  color: var(--white);
  padding: clamp(60px, 8vw, 120px) 0;
}
.pruefungen-header {
  margin: 0 0 76px;
}
/* pruefungen-header section-h1 — nutzt globale section-h1 Größe (clamp 40-72px) */
.pruefungen-header .section-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  color: var(--text-on-dark);
  margin-top: 20px;
  max-width: 680px;
}
/* Lead-Hinweis direkt unter H1 — blauer Strich + hellblauer Text */
.pruefungen-lead-hinweis {
  position: relative;
  margin-top: 28px;
  padding-left: 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  max-width: 720px;
  line-height: 1.55;
}
.pruefungen-lead-hinweis strong {
  font-weight: 700;
}
.pruefungen-lead-hinweis::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--blue);
  border-radius: 1px;
}
/* H2 "Prüfungstermine" übergeordnet */
.pruefungen-h2 {
  color: var(--white);
  margin: 0 0 32px;
}

/* Container: 2-spaltig Desktop, 1-spaltig Mobile */
.pruefungen-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.pruefungen-block { min-width: 0; }
/* pruefungen-col-title: nur Farbe + Abstand, Typo kommt von .section-h2 */
.pruefungen-col-title {
  color: var(--white);
  margin: 0 0 32px;
}
/* Die Liste selbst nutzt die bestehenden .ktl-list / .ktl-item Styles
   aus der kurs-termine-live Section — volle Konsistenz. */
.pruefungen-block .kurs-termine-live { padding: 0; background: transparent; }

.pruefungen-empty {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-on-dark);
  font-size: 14px;
  margin: 0;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
}

/* Badges für PC + PP — gleiches Muster wie Klassen-Badges */
.kurs-liste-badge.badge-pc {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.kurs-liste-badge.badge-pp {
  background: var(--blue);
  color: var(--white);
}

/* Hinweise — weiß auf navy, ohne Boxen */
.pruefungen-hinweise {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
}
.pruefungen-hinweis {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.pruefungen-hinweis p { margin: 0; }
.pruefungen-hinweis--accent {
  font-weight: 600;
  color: var(--white);
  font-size: 15px;
}

@media (max-width: 780px) {
  .pruefungen-blocks { grid-template-columns: 1fr; gap: 32px; }
}
