/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --color-primary:     #352e52;      /* Tiefes Lavendel-Dunkel */
  --color-accent:      #8b7cd4;      /* Lavendel */
  --color-accent-dark: #7060bf;      /* Lavendel dunkel (hover) */
  --color-bg:          #ffffff;
  --color-bg-subtle:   #f5f3fb;      /* Sehr helles Lavendel-Grau */
  --color-text:        #2a2540;
  --color-text-muted:  #7a7490;      /* Grau-Lavendel */
  --color-border:      #e4dff5;
  --radius:            0.75rem;
  --shadow-sm:         0 1px 3px rgba(53,46,82,.08);
  --shadow-md:         0 4px 16px rgba(53,46,82,.12);
}

/* ============================================================
   Base
   ============================================================ */
body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

#page-wrapper {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--color-text);
}

a {
  color: var(--color-accent);
}

a:hover {
  color: var(--color-accent-dark);
}

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
  background-color: var(--color-bg) !important;
  border-bottom: 1px solid var(--color-border);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-brand {
  padding: 0;
}

.logo-symbol {
  height: 34px;
  width: auto;
}

.logo-symbol-footer {
  height: 28px;
}

.navbar .nav-link {
  color: var(--color-text-muted) !important;
  font-weight: 500;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  transition: color 0.2s;
}

.navbar .nav-link:hover {
  color: var(--color-text) !important;
}

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  transition: background-color 0.2s, transform 0.1s;
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background-color: var(--color-primary);
  color: #fff;
  padding: 6rem 0 5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
}

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

.hero .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
}

.btn-hero-primary {
  background-color: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: none;
  transition: background-color 0.2s, transform 0.1s;
}

.btn-hero-primary:hover {
  background-color: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-hero-secondary {
  background-color: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
}

.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* ============================================================
   Trust Bar
   ============================================================ */
.trust-bar {
  background-color: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.trust-bar .trust-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-bar .trust-item .check {
  color: var(--color-accent);
  font-size: 1rem;
}

/* ============================================================
   Sections allgemein
   ============================================================ */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ============================================================
   Kurs-Cards
   ============================================================ */
.kurs-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.kurs-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.kurs-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.kurs-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.kurs-card .kurs-preis {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-top: auto;
  padding-top: 1rem;
}

.kurs-card .kurs-preis small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.kurs-desc {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Featured Card */
.kurs-card-featured {
  border-color: var(--color-accent);
  border-width: 2px;
  background: linear-gradient(135deg, #fff 0%, var(--color-bg-subtle) 100%);
  box-shadow: 0 4px 24px rgba(139, 124, 212, 0.14);
}

.kurs-card-featured:hover {
  box-shadow: 0 8px 32px rgba(139, 124, 212, 0.22);
  transform: translateY(-3px);
}

/* Demnächst Card */
.kurs-card-demnachst {
  opacity: 0.55;
  background-color: var(--color-bg-subtle);
}

.kurs-card-demnachst:hover {
  box-shadow: var(--shadow-sm);
  transform: none;
  opacity: 0.65;
}

/* Badges */
.kurs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.kurs-badge-live {
  background-color: #dcfce7;
  color: #15803d;
}

.kurs-badge-dekra {
  background-color: rgba(139, 124, 212, 0.12);
  color: var(--color-accent-dark);
}

.kurs-badge-soon {
  background-color: var(--color-bg-subtle);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

/* Kursstart-Banner */
.kursstart-banner {
  background-color: rgba(139, 124, 212, 0.05);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.kursstart-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  display: inline-block;
}

/* ============================================================
   Warum wir
   ============================================================ */
.warum-section {
  background-color: var(--color-bg-subtle);
}

.feature-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  background-color: rgba(139, 124, 212, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-accent);
}

.feature-block h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-block p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   Dozenten
   ============================================================ */
.dozent-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background-color: var(--color-bg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.dozent-card:hover {
  box-shadow: var(--shadow-md);
}

.dozent-photo {
  width: 100%;
  aspect-ratio: 1 / 1;

  background-color: var(--color-bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.dozent-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--color-bg-subtle) 0%, var(--color-border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--color-text-muted);
}

.dozent-info {
  padding: 1.25rem;
}

.dozent-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.dozent-info .titel {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dozent-info p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   Ablauf
   ============================================================ */
.schritt {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.schritt-nr {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schritt h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.schritt p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   Kontakt
   ============================================================ */
.kontakt-section {
  background-color: var(--color-primary);
  color: #fff;
}

.kontakt-section .section-title {
  color: #fff;
}

.kontakt-section .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.kontakt-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.kontakt-info-item .icon {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-accent);
}

.form-control-dark {
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 0.5rem;
  padding: 0.65rem 1rem;
}

.form-control-dark::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-control-dark:focus {
  background-color: rgba(255,255,255,0.12);
  border-color: var(--color-accent);
  color: #fff;
  box-shadow: none;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background-color: #1e1830;
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  font-size: 0.875rem;
}

.footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover {
  color: #fff;
}

/* ============================================================
   Utilities
   ============================================================ */
.accent {
  color: var(--color-accent);
}

.bg-subtle {
  background-color: var(--color-bg-subtle);
}

/* ============================================================
   Hero — neue Elemente
   ============================================================ */
.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.hero-checklist li::before {
  content: "✅";
  flex-shrink: 0;
  font-size: 0.9rem;
}

.hero-image-wrap {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.hero-woman-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 1.25rem 1.25rem;
  background: rgba(30, 24, 48, 0.82);
  border: none;
  backdrop-filter: blur(10px);
}

.hero-card-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
}

.hero-card-stats div {
  display: flex;
  flex-direction: column;
}

.hero-card-stats strong {
  color: var(--color-accent);
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.hero-card-stats span {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

/* Kursstart-Banner Link */
.kursstart-link {
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.kursstart-link:hover {
  color: var(--color-accent-dark);
}

/* ============================================================
   Begleitung-Section
   ============================================================ */
.begleitung-section {
  background-color: var(--color-bg);
}

.begleitung-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.begleitung-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  transition: box-shadow 0.2s;
}

.begleitung-item:hover {
  box-shadow: var(--shadow-md);
}

.begleitung-icon {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--color-accent);
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 124, 212, 0.1);
  border-radius: 0.5rem;
}

.begleitung-item h5 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.begleitung-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   Lern-Cards
   ============================================================ */
.lern-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.lern-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.lern-card-highlight {
  border-color: var(--color-accent);
  border-width: 2px;
  background: linear-gradient(135deg, #fff 0%, var(--color-bg-subtle) 100%);
}

.lern-nr {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-accent);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.lern-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.lern-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   Preis-Cards
   ============================================================ */
.preis-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.preis-card-premium {
  border-color: var(--color-accent);
  border-width: 2px;
  background: linear-gradient(160deg, #fff 0%, var(--color-bg-subtle) 100%);
  box-shadow: 0 8px 32px rgba(139, 124, 212, 0.15);
}

.preis-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.preis-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.preis-dauer {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.preis-liste {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.preis-liste li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.preis-liste li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.preis-preis {
  font-family: "Outfit", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-text);
  margin-top: auto;
}

.preis-badge {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

.btn-accent-premium {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  transition: background-color 0.2s;
  text-align: center;
  display: block;
  text-decoration: none;
}

.btn-accent-premium:hover {
  background-color: var(--color-accent);
  color: #fff;
}

/* Förderungshinweis */
.foerderung-hinweis {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ============================================================
   Dozenten — echte Fotos
   ============================================================ */
.dozent-foto {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* ============================================================
   Karriere-Timeline
   ============================================================ */
.karriere-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 2rem 0;
}

.karriere-schritt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  min-width: 120px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.karriere-schritt:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.karriere-schritt-final {
  border-color: var(--color-accent);
  border-width: 2px;
  background: linear-gradient(135deg, #fff 0%, var(--color-bg-subtle) 100%);
}

.karriere-icon {
  font-size: 1.75rem;
}

.karriere-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.karriere-text strong {
  font-size: 0.85rem;
  font-family: "Outfit", sans-serif;
  color: var(--color-text);
}

.karriere-text span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.karriere-pfeil {
  color: var(--color-accent);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .karriere-timeline {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto;
  }
  .karriere-pfeil {
    transform: rotate(90deg);
    text-align: center;
  }
}

/* ============================================================
   Kontakt — Liste
   ============================================================ */
.kontakt-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.kontakt-liste li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.kontakt-liste li::before {
  content: "→";
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   Lang Switcher
   ============================================================ */
.lang-switcher {
  display: inline-flex;
  gap: 0.25rem;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: 2rem;
  padding: 0.2rem 0.3rem;
}

.lang-btn {
  background: none;
  border: none;
  padding: 0.25rem 0.65rem;
  border-radius: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1.4;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ============================================================
   Hero Card — verbessert (dunkler, auffälliger)
   ============================================================ */
.hero-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.hero-card h3 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   Stats Bar
   ============================================================ */
.stats-bar {
  background: var(--color-primary);
  padding: 2rem 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stats-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.stats-item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.3rem;
  line-height: 1.3;
  max-width: 120px;
}

.stats-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .stats-grid {
    justify-content: center;
  }
  .stats-divider {
    display: none;
  }
  .stats-item {
    min-width: 45%;
  }
}

/* ============================================================
   Für wen Section
   ============================================================ */
.fuerwen-section {
  background-color: var(--color-bg-subtle);
}

.fw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

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

.fw-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--color-text);
  transition: box-shadow 0.2s;
}

.fw-item:hover {
  box-shadow: var(--shadow-md);
}

.fw-check {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ============================================================
   Klarna / PayPal Ratenzahlung
   ============================================================ */
.preis-ratenzahlung {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.preis-ratenzahlung strong {
  color: var(--color-text);
}

.payment-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}

.payment-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  letter-spacing: 0.02em;
}

.payment-badge-klarna {
  background: #ffb3c7;
  color: #1a0010;
}

.payment-badge-paypal {
  background: #003087;
  color: #fff;
}

.payment-badge-card {
  background: var(--color-bg-subtle);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

/* ============================================================
   Lead Magnet Section
   ============================================================ */
.lead-magnet-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #4a3d7a 100%);
  padding: 3rem 0;
}

.lead-magnet-inner {
  padding: 0;
}

.lead-magnet-section h3 {
  color: #fff;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 0.5rem;
}

.lead-magnet-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.lead-form .form-control {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: var(--radius);
}

.lead-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.lead-form .form-control:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--color-accent);
  box-shadow: none;
  color: #fff;
}

.lead-hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ============================================================
   Zertifikat Section
   ============================================================ */
.zertifikat-section {
  background-color: var(--color-bg-subtle);
}

.zert-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.zert-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.zert-placeholder {
  background: linear-gradient(135deg, #f0ecff 0%, #ddd6f3 100%);
  padding: 2.5rem 2rem;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zert-placeholder-datev {
  background: linear-gradient(135deg, #e8f4e8 0%, #c8e6c9 100%);
}

.zert-placeholder-inner {
  text-align: center;
  width: 100%;
}

.zert-logo-mock {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.zert-line-mock {
  height: 2px;
  background: var(--color-primary);
  opacity: 0.15;
  border-radius: 1px;
  margin: 0.5rem auto;
  width: 70%;
}

.zert-line-mock.short {
  width: 40%;
  opacity: 0.1;
}

.zert-seal-mock {
  font-size: 2rem;
  color: var(--color-accent);
  opacity: 0.4;
  margin-top: 0.75rem;
}

.zert-info {
  padding: 1.25rem;
}

.zert-info h5 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.zert-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.dekra-badge {
  display: inline-block;
  background: rgba(139, 124, 212, 0.1);
  border: 1px dashed var(--color-accent);
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
}

/* ============================================================
   Karriere Grid (neu: 2x3)
   ============================================================ */
.karriere-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

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

.karriere-karte {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.karriere-karte:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.karriere-karte-final {
  border-color: var(--color-accent);
  border-width: 2px;
}

.karriere-karte-bild {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--color-primary);
  opacity: 0.85;
}

.bild-1 { background: linear-gradient(135deg, #e8f4ff 0%, #c8e0f9 100%); }
.bild-2 { background: linear-gradient(135deg, #e8fff4 0%, #c8f0e0 100%); }
.bild-3 { background: linear-gradient(135deg, #fff8e8 0%, #f9e8c8 100%); }
.bild-4 { background: linear-gradient(135deg, #f0e8ff 0%, #ddd6f3 100%); }
.bild-5 { background: linear-gradient(135deg, #ffe8f0 0%, #f9c8d8 100%); }
.bild-6 { background: linear-gradient(135deg, #352e52 0%, #8b7cd4 100%); color: #fff; opacity: 1; }

.karriere-karte h5 {
  font-size: 0.95rem;
  padding: 0 1rem;
  margin: 0.9rem 0 0.35rem;
}

.karriere-karte p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: 0 1rem 1.25rem;
  margin: 0;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testi-section {
  background-color: var(--color-bg-subtle);
}

.testi-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--color-text);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.testi-avatar {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section {
  background-color: var(--color-bg);
}

.faq-item {
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item .accordion-button {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--color-text);
  background: var(--color-bg);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius) !important;
}

.faq-item .accordion-button:not(.collapsed) {
  background: var(--color-bg-subtle);
  color: var(--color-accent-dark);
  box-shadow: none;
}

.faq-item .accordion-button::after {
  filter: none;
}

.faq-item .accordion-button:not(.collapsed)::after {
  filter: hue-rotate(220deg);
}

.faq-item .accordion-body {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  background: var(--color-bg-subtle);
  padding: 1rem 1.25rem 1.25rem;
  line-height: 1.7;
}

/* ============================================================
   Reduced section spacing
   ============================================================ */
.section {
  padding: 4rem 0;
}

@media (min-width: 992px) {
  .section {
    padding: 5rem 0;
  }
}
