/* =================================================================
   HanseTrain — Design System
   Layout-Struktur nach Vorlage (Hero / Trust-Grid / Story-Split /
   Process-Dark / Card-Carousel / Gradient-CTA / Footer), neutrale
   Farbpalette statt Warmton, Ton angepasst an B2B-Fahrertrainings.
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Colors — neutral / graphite palette (easy to re-theme later) */
  --color-bg: #F4F4F3;            /* page background */
  --color-surface: #FFFFFF;       /* cards, nav */
  --color-primary: #1C2024;       /* near-black graphite — headings, dark sections */
  --color-primary-medium: #3A3F46;
  --color-primary-light: #6B7178;
  --color-accent: #C9CCD1;        /* light steel grey accent */
  --color-accent-light: #E7E8EA;
  --color-signal: #D6481F;        /* single warning-orange signal color, used sparingly */
  --color-text: #1C2024;
  --color-text-muted: #5B6066;
  --color-border: rgba(28, 32, 36, 0.09);
  --color-bg-card: #FFFFFF;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  --spacing-5xl: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-full: 100px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(28, 32, 36, 0.06);
  --shadow-md: 0 10px 30px rgba(28, 32, 36, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 32, 36, 0.10);
  --shadow-xl: 0 30px 60px rgba(28, 32, 36, 0.14);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.85rem); line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3vw, 2.65rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }

p { color: var(--color-text-muted); line-height: 1.75; }

em {
  font-style: italic;
  color: var(--color-signal);
}

a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--color-primary-medium); }

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

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-signal {
  background: var(--color-signal);
  color: #fff;
  border-color: var(--color-signal);
}
.btn-signal:hover {
  background: #b53a17;
  border-color: #b53a17;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------------- Forms ---------------- */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  transition: all var(--transition-fast);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary-medium);
}
textarea { border-radius: var(--radius-md); width: 100%; resize: vertical; }

/* visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-signal);
  outline-offset: 2px;
}

/* ---------------- Layout helpers ---------------- */
.section { padding: var(--spacing-5xl) var(--spacing-3xl); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto var(--spacing-3xl); }
.section-header h2 { margin-bottom: var(--spacing-md); }
.section-header p { font-size: 1.05rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-xl); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--color-accent-light);
  color: var(--color-primary-medium);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition-slow);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.9s ease-out both; }
.animate-fade-in-up-delay-1 { animation: fadeInUp 0.9s ease-out 0.12s both; }
.animate-fade-in-up-delay-2 { animation: fadeInUp 0.9s ease-out 0.22s both; }
.animate-fade-in-up-delay-3 { animation: fadeInUp 0.9s ease-out 0.32s both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1024px) {
  .section { padding: var(--spacing-4xl) var(--spacing-xl); }
}
@media (max-width: 640px) {
  .section { padding: var(--spacing-3xl) var(--spacing-md); }
  .container { padding: 0 var(--spacing-md); }
}

/* =================================================================
   NAVIGATION
   ================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.9rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(244, 244, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(28, 32, 36, 0.08); }

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
}
.logo .logo-mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.logo .logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.logo .logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin-right: 0.2rem;
}
/* Im dunklen Footer wird das (dunkle) Logo-Bild weiß eingefärbt, damit
   es auf dem anthrazitfarbenen Hintergrund lesbar bleibt. */
.footer-brand .logo .logo-img {
  filter: brightness(0) invert(1);
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1.5px;
  background: var(--color-signal);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-cta {
  padding: 0.65rem 1.4rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nav-cta:hover { background: #000; transform: translateY(-1px); }

.mobile-menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.hamburger {
  display: block; position: relative;
  width: 22px; height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0;
  width: 22px; height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.hamburger.open { background: transparent; }
.hamburger.open::before { top: 0; transform: rotate(45deg); }
.hamburger.open::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--color-bg);
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { margin-bottom: 0.6rem; }
.mobile-nav a {
  display: block; padding: 0.7rem 0;
  font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 1024px) {
  .nav { padding: 0.8rem 1.5rem; }
  .nav-center, .nav-links { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-nav { display: block; }
  .nav-cta { display: none; }
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-image-wrapper {
  position: absolute;
  top: 0; right: 0;
  width: 88%;
  min-width: 620px;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
/* Das Bild selbst bringt seinen Verlauf (Transparenz nach links, voll
   sichtbar nach rechts, mit einer wellenförmigen Diagonale) schon mit —
   fertig in Photoshop komponiert. Der Wrapper reicht jetzt bewusst sehr
   weit nach links, fast über die ganze Hero-Breite: so gibt es nirgendwo
   eine sichtbare Kante zwischen Bild und reiner Hintergrundfarbe — Text
   und Buttons liegen einfach mit höherem z-index "schwebend" darüber, an
   der Stelle, wo das Bild ohnehin schon zu Transparenz ausgelaufen ist. */
.hero-image-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-image-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(244,244,243,0.4) 0%, rgba(244,244,243,0.05) 35%, rgba(244,244,243,0) 55%);
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  width: min(600px, 46vw);
  z-index: 2;
  position: relative;
}

/* Schräger Eyecatcher-Stempel: weist auf das kommende Online-Angebot hin,
   ohne die Hauptaussage (Schmerzpunkt-Headline) zu verdrängen. */
.hero-stamp {
  position: absolute;
  top: 9.5rem;
  right: 9%;
  z-index: 3;
  background: var(--color-signal);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  transform: rotate(-6deg);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  max-width: calc(100vw - 3rem);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-medium);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--color-signal);
  border-radius: 50%;
}

.hero-title { margin-bottom: 0.85rem; }
.hero-title em { font-style: italic; color: var(--color-signal); display: block; }

.hero-subline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-primary-medium);
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .hero { padding: 7rem 2rem 3rem; }
  .hero-image-wrapper {
    width: 100%;
    min-width: 0;
    opacity: 0.18;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-image-overlay {
    background: linear-gradient(to right, rgba(244,244,243,0.75) 0%, rgba(244,244,243,0.5) 100%);
  }
  .hero-content { width: auto; max-width: 600px; }
  .hero-stamp {
    top: 6rem;
    right: 1.5rem;
    left: auto;
    font-size: 0.75rem;
    padding: 0.45rem 1.1rem;
    max-width: calc(100vw - 3rem);
    white-space: normal;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .hero { padding: 6rem 1rem 2rem; min-height: auto; }
  .hero-content { max-width: 100%; width: auto; }
  .hero-stamp {
    position: absolute;
    transform: rotate(-4deg);
    margin-bottom: 1rem;
    max-width: 100%;
    white-space: normal;
    font-size:0.7rem;
    padding: 0.5rem 0.6rem;
    max-width: 90px;
    top: 6rem;
  }
  .hero-cta { flex-direction: column; }
  .hero-cta a, .hero-cta button { width: 100%; justify-content: center; }
}

/* =================================================================
   TRUST GRID (replaces "FreshnessPromise")
   ================================================================= */
.trust {
  padding: 5rem 4rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-item { text-align: center; padding: 1.5rem; }
.trust-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg);
  border-radius: 50%;
  border: 2px solid var(--color-accent-light);
}
.trust-icon svg { width: 26px; height: 26px; stroke: var(--color-primary-medium); }
.trust-item h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.trust-item p { font-size: 0.93rem; }

@media (max-width: 1024px) {
  .trust { padding: 3.5rem 2rem; }
  .trust-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* =================================================================
   STORY SPLIT (Geschäftsführer/Trainer-Vorstellung)
   ================================================================= */
.story {
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}
.story-image-container { position: relative; }
.story-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(150deg, #2A2E33 0%, #1C2024 100%);
}
.story-accent {
  position: absolute;
  bottom: -26px; right: -26px;
  width: 180px; height: 180px;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  z-index: -1;
}

.story-content h2 em { font-style: italic; display: block; color: var(--color-signal); }
.story-content p { font-size: 1.03rem; margin-bottom: 1.1rem; }

.story-signature {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-accent-light);
  margin-bottom: 1.75rem;
}
.story-signature-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-primary-medium);
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .story { grid-template-columns: 1fr; gap: 2.5rem; padding: 4.5rem 2rem; }
  .story-image-container { order: -1; }
  .story-accent { bottom: -18px; right: -18px; width: 130px; height: 130px; }
  .story-image { height: 360px; }
}
@media (max-width: 640px) {
  .story { padding: 3rem 1rem; }
  .story-image { height: 280px; }
}

/* =================================================================
   PROCESS — dark section (Ablauf einer Schulung/Beratung)
   ================================================================= */
.process {
  background: var(--color-primary);
  color: white;
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.process-container { max-width: 1200px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.process .badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.1); }
.process-title {
  color: white;
  margin-bottom: 4rem;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  text-align: left;
}
.process-step {
  padding: 1.9rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  transition: all 0.4s ease;
}
.process-step:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
}
.process-step-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.process-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.process-icon svg { width: 22px; height: 22px; color: var(--color-primary); }
.process-step-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.18);
}
.process-step h3 { color: white; margin-bottom: 0.6rem; font-size: 1.15rem; }
.process-step p { color: rgba(255,255,255,0.68); font-size: 0.93rem; }

@media (max-width: 1024px) {
  .process { padding: 4.5rem 2rem; }
  .process-title { margin-bottom: 3rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 640px) {
  .process { padding: 3rem 1rem; }
  .process-steps { grid-template-columns: 1fr; }
}

/* =================================================================
   PROGRAM / OFFER CARDS (replaces ProductCarousel)
   ================================================================= */
.offers {
  padding: 7rem 4rem;
  background: var(--color-bg);
}
.offers-container { max-width: 1300px; margin: 0 auto; text-align: center; }
.offers-subtitle { font-size: 1.05rem; margin-bottom: 2.75rem; max-width: 580px; margin-left: auto; margin-right: auto; }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}
.offer-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}
.offer-card-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-signal);
  margin-bottom: 1rem;
}
.offer-card h3 { margin-bottom: 0.6rem; }
.offer-card .offer-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.9rem;
}
.offer-card p.offer-desc { font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; }
.offer-card a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.offer-card a svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.offer-card a:hover svg { transform: translateX(3px); }

@media (max-width: 1024px) {
  .offers { padding: 4.5rem 2rem; }
  .offers-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 640px) {
  .offers { padding: 3rem 1rem; }
}

/* =================================================================
   CONTACT CTA — gradient (replaces Newsletter)
   ================================================================= */
.contact-cta {
  padding: 5.5rem 4rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-medium) 50%, var(--color-primary) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute; top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.contact-cta-container { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.contact-cta .badge { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.contact-cta-kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.92);
  margin: 1.25rem 0 0.5rem;
}
.contact-cta-title { color: white; margin: 0.5rem 0 1rem; }
.contact-cta-description {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.25rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}

.contact-form {
  display: flex;
  gap: 0.75rem;
  max-width: 540px;
  margin: 0 auto 1rem;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,0.15);
}
.contact-form input {
  flex: 1;
  border-radius: 50px;
  background: white;
  color: var(--color-text);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.contact-form button {
  padding: 1rem 2rem;
  background: var(--color-signal);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.contact-form button:hover { background: #b53a17; transform: translateY(-2px); }

.contact-privacy { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 1.25rem; }

.form-feedback {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  margin-top: 1.25rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
}
.form-feedback.hidden { display: none; }

@media (max-width: 640px) {
  .contact-cta { padding: 4rem 1.25rem; }
  .contact-form { flex-direction: column; padding: 0.75rem; border-radius: 20px; }
  .contact-form input, .contact-form button { width: 100%; }
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
  padding: 4.5rem 4rem 2rem;
  background: var(--color-primary);
  color: var(--color-bg);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--color-signal) 0%, var(--color-accent) 50%, var(--color-signal) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}
.footer-brand { padding-right: 2rem; }
.footer-brand .logo { color: #fff; margin-bottom: 1rem; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.12); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.55); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.93rem; max-width: 280px; }

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--color-bg);
  position: relative;
  display: inline-block;
}
.footer-column h4::after {
  content: '';
  position: absolute; bottom: -6px; left: 0;
  width: 22px; height: 2px;
  background: var(--color-signal);
}
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.75rem; }
.footer-column a {
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
}
.footer-column a:hover { color: #fff; transform: translateX(3px); }

.footer-bottom {
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

@media (max-width: 1024px) {
  .footer { padding: 3.5rem 2rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .footer-brand { grid-column: 1 / -1; text-align: center; padding-right: 0; }
  .footer-brand .logo { justify-content: center; }
  .footer-brand p { max-width: 100%; margin: 0 auto; }
  .footer-column h4::after { left: 50%; transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .footer { padding: 2.75rem 1.25rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-column { text-align: center; }
  .footer-column h4::after { left: 50%; transform: translateX(-50%); }
  .footer-column a:hover { transform: none; }
}

/* =================================================================
   CHRONIK / ZEITSTRAHL
   Wiederverwendbare Komponente: Zeitstrahl-Navigation oben (Jahre),
   darunter ein großes Bild mit Beschreibung, das automatisch
   weiterläuft (und manuell per Klick auf ein Jahr ansteuerbar ist).
   Wird sowohl als Startseiten-Teaser als auch als volle Chronik auf
   der Über-uns-Seite verwendet (Variante per Modifier-Klasse).
   ================================================================= */

.chronik {
  padding: 7rem 4rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.chronik-container { max-width: 1100px; margin: 0 auto; }
.chronik-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.chronik-header p { font-size: 1.05rem; }

/* --- Jahres-Navigation (Zeitstrahl-Leiste) --- */
.chronik-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.chronik-nav::-webkit-scrollbar { display: none; }

.chronik-track {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: max-content;
  position: relative;
}
.chronik-track::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 2px;
  background: var(--color-accent-light);
  transform: translateY(-50%);
  z-index: 0;
}

.chronik-dot-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
  min-width: 92px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.25rem;
  font-family: var(--font-body);
}

.chronik-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  transition: all 0.2s ease;
}
.chronik-dot-wrap:hover .chronik-dot {
  border-color: var(--color-signal);
  transform: scale(1.5);
}
.chronik-dot-wrap.active .chronik-dot {
  background: var(--color-signal);
  border-color: var(--color-signal);
  transform: scale(1.3);
}
.chronik-dot-wrap.active:hover .chronik-dot { transform: scale(1.6); }

.chronik-year {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-block;
}
.chronik-dot-wrap.active .chronik-year { color: var(--color-primary); font-size: 0.95rem; }
.chronik-dot-wrap:hover .chronik-year { color: var(--color-primary-medium); font-size: 0.95rem; transform: translateY(-1px); }

/* --- Großes Bild + Beschreibung --- */
.chronik-stage {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.chronik-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: var(--color-primary);
}
.chronik-image-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.chronik-image-frame img.active { opacity: 1; }

.chronik-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(150deg, #2A2E33 0%, #1C2024 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.chronik-placeholder.active { opacity: 1; }
.chronik-placeholder svg {
  width: 44px; height: 44px;
  stroke: rgba(255,255,255,0.35);
}
.chronik-placeholder span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.chronik-info { padding: 0.5rem 0; }
.chronik-info-year {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-signal);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.chronik-info-title { font-size: 1.3rem; margin-bottom: 0.85rem; }
.chronik-info-text { font-size: 0.98rem; }

.chronik-progress {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.chronik-progress-track {
  flex: 1;
  height: 5px;
  background: var(--color-accent-light);
  border-radius: 3px;
  overflow: hidden;
}
.chronik-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--color-signal);
}
.chronik-progress-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
}
.chronik-progress-icon svg {
  width: 14px; height: 14px;
  color: var(--color-text-muted);
}
/* Play-Icon ist Standard sichtbar, Pause-Icon nur wenn pausiert */
.chronik-progress-icon .icon-pause { display: none; }
.chronik-progress.is-paused .icon-play { display: none; }
.chronik-progress.is-paused .icon-pause { display: block; }
.chronik-progress.is-paused .chronik-progress-bar { background: var(--color-text-muted); }

.chronik-cta { margin-top: 1.75rem; }

/* --- Teaser-Variante (Startseite): kompakter --- */
.chronik--teaser .chronik-stage { grid-template-columns: 1.2fr 1fr; }
.chronik--teaser .chronik-image-frame { aspect-ratio: 16 / 11; }
.chronik--teaser .chronik-info-year { font-size: 2rem; }

@media (max-width: 900px) {
  .chronik { padding: 4.5rem 2rem; }
  .chronik-stage { grid-template-columns: 1fr; gap: 1.5rem; }
  .chronik-image-frame { aspect-ratio: 16 / 10; }
  .chronik-info { text-align: center; }
  .chronik-dot-wrap { min-width: 76px; }
}
@media (max-width: 640px) {
  .chronik { padding: 3rem 1rem; }
  .chronik-dot-wrap { min-width: 64px; }
  .chronik-year { font-size: 0.75rem; }
  .chronik-info-year { font-size: 1.9rem; }
}

/* =================================================================
   PHILOSOPHIE — die Haltung hinter dem Training
   Dunkle Sektion im Stil der Process-Sektion, aber mit ruhigen
   Aussagen statt Ablaufschritten. Die Sätze sollen wirken, nicht
   behaupten.
   ================================================================= */
.philosophie {
  background: var(--color-primary);
  color: white;
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
.philosophie::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 85%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.philosophie-container { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.philosophie-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.philosophie .badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.1); }
.philosophie-title { color: white; margin: 1.25rem 0 1rem; }
.philosophie-header p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

.philosophie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.philosophie-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  transition: all 0.4s ease;
}
.philosophie-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
}
.philosophie-card .philosophie-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}
.philosophie-card p { color: rgba(255,255,255,0.68); font-size: 0.95rem; margin: 0; }

.philosophie-closing {
  margin-top: 3rem;
  text-align: center;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.philosophie-closing p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  font-style: italic;
}

@media (max-width: 900px) {
  .philosophie { padding: 4.5rem 2rem; }
  .philosophie-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 640px) {
  .philosophie { padding: 3rem 1rem; }
  .philosophie-card { padding: 1.5rem; }
}

/* =================================================================
   ERFOLGE — schlicht, ohne Marketing-Bombast
   Zwei Referenz-Einsätze mit relativierten Kennzahlen statt
   absoluter Euro-Beträge. Bewusst zurückhaltend gestaltet.
   ================================================================= */
.erfolge {
  padding: 6rem 4rem;
  background: var(--color-bg);
}
.erfolge-container { max-width: 1000px; margin: 0 auto; }
.erfolge-header { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.erfolge-header p { font-size: 1.02rem; }

.erfolge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.erfolge-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
}
.erfolge-stat {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.erfolge-stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}
.erfolge-stat-unit {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
}
.erfolge-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.erfolge-card p { font-size: 0.95rem; }
.erfolge-card .erfolge-meta {
  display: block;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
}

@media (max-width: 900px) {
  .erfolge { padding: 4rem 2rem; }
  .erfolge-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 640px) {
  .erfolge { padding: 3rem 1rem; }
  .erfolge-card { padding: 1.75rem; }
  .erfolge-stat-number { font-size: 2.1rem; }
}

/* =================================================================
   PAIN POINTS — die Probleme, in Kundensprache
   Klare, kurze Aussagen statt Fließtext. Jede Karte: ein Problem,
   eine Konsequenz. Keine Übertreibung nötig, die Fakten reichen.
   ================================================================= */
.pain {
  padding: 4rem 4rem 6.5rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.pain-container { max-width: 1150px; margin: 0 auto; }
.pain-header { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.pain-header p { font-size: 1.05rem; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pain-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}
.pain-card .pain-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-signal);
  display: block;
  margin-bottom: 0.75rem;
}
.pain-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.pain-card p { font-size: 0.9rem; }
.pain-card .pain-source {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  opacity: 0.75;
}

@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pain { padding: 4rem 2rem; }
}
@media (max-width: 640px) {
  .pain { padding: 3rem 1rem; }
  .pain-grid { grid-template-columns: 1fr; gap: 1.1rem; }
}

/* =================================================================
   DIESEL-RECHNUNG — ehrliche Beispielrechnung, keine Pseudo-Studie
   Stellt eine 0815-BKF-Schulung (nur Bescheinigung) gegen den
   Dieselpreis. Annahmen werden offen genannt.
   Bewusst HELL gehalten (nur die Box innen ist dunkel) — eine
   ganz dunkle Vollbreite-Sektion wirkt im unteren Seitendrittel
   wie ein Footer-Signal ("hier kommt jetzt nur noch Impressum")
   und hält Besucher vom Weiterlesen ab.
   ================================================================= */
.rechnung {
  padding: 6.5rem 4rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.rechnung-container { max-width: 980px; margin: 0 auto; }
.rechnung-header { max-width: 680px; margin: 0 auto 2.5rem; text-align: center; }
.rechnung-title { margin: 1.25rem 0 1rem; }
.rechnung-header p { font-size: 1.02rem; }

.rechnung-kicker {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-signal);
  margin-bottom: 1.75rem;
}

.rechnung-box {
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.rechnung-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.rechnung-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.rechnung-row:last-of-type { border-bottom: none; }
.rechnung-row .rechnung-label { color: rgba(255,255,255,0.78); font-size: 0.97rem; }
.rechnung-row .rechnung-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: white;
  white-space: nowrap;
}
.rechnung-row.rechnung-result {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 2px solid rgba(255,255,255,0.18);
}
.rechnung-row.rechnung-result .rechnung-label { color: white; font-weight: 600; }
.rechnung-row.rechnung-result .rechnung-value { color: var(--color-signal); font-size: 1.4rem; }

.rechnung-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

@media (max-width: 900px) {
  .rechnung { padding: 4rem 2rem; }
  .rechnung-box { padding: 1.5rem; }
}
@media (max-width: 640px) {
  .rechnung { padding: 3rem 1rem; }
  .rechnung-row { flex-direction: column; gap: 0.25rem; }
  .rechnung-row .rechnung-value { font-size: 1.05rem; }
}

/* =================================================================
   WAS SIE BEKOMMEN — positive Leistungsliste ohne Gegenüberstellung
   zur Konkurrenz. Ersetzt einen früheren Vorher/Nachher-Vergleich,
   der zu sehr nach Bashing klang.
   ================================================================= */
.vergleich {
  padding: 6.5rem 4rem;
  background: var(--color-bg);
}
.vergleich-container { max-width: 1100px; margin: 0 auto; }
.vergleich-header { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.vergleich-header p { font-size: 1.05rem; }

.vergleich-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.vergleich-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.vergleich-item-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex; align-items: center; justify-content: center;
}
.vergleich-item-icon svg { width: 20px; height: 20px; color: var(--color-signal); }
.vergleich-item h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.vergleich-item p { font-size: 0.92rem; margin: 0; }

@media (max-width: 900px) {
  .vergleich { padding: 4rem 2rem; }
  .vergleich-grid { grid-template-columns: 1fr; gap: 1.1rem; }
}
@media (max-width: 640px) {
  .vergleich { padding: 3rem 1rem; }
  .vergleich-item { padding: 1.25rem; }
}

/* =================================================================
   GESCHICHTE-TEASER (schlank, ersetzt die volle Story auf der
   Startseite — verlinkt zur eigenen Unterseite)
   ================================================================= */
.geschichte-teaser {
  padding: 5.5rem 4rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.geschichte-teaser-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.geschichte-teaser-inner p { font-size: 1.05rem; margin: 1.25rem 0 1.75rem; }

/* =================================================================
   ONLINE-TRAINING — Hauptfokus der neuen, kurzen Startseite
   ================================================================= */
.online-training {
  padding: 6.5rem 4rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.online-training-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.online-training-text h2 { margin: 1.25rem 0 1.25rem; }
.online-training-text p { font-size: 1.02rem; margin-bottom: 1.1rem; }
.online-training-text .btn { margin-top: 0.75rem; }

.online-training-points {
  display: grid;
  gap: 1.5rem;
}
.online-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.online-point svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--color-signal);
  margin-top: 0.1rem;
}
.online-point h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.online-point p { font-size: 0.9rem; margin: 0; }

@media (max-width: 1024px) {
  .online-training { padding: 4.5rem 2rem; }
  .online-training-container { grid-template-columns: 1fr; gap: 2.25rem; }
}
@media (max-width: 640px) {
  .online-training { padding: 3rem 1.25rem; }
  .online-point { padding: 1.25rem; }
}

/* =================================================================
   LEISTUNGEN KOMPAKT — schlankes Grid statt großer Karten
   ================================================================= */
.leistungen-kompakt {
  padding: 6rem 4rem;
  background: var(--color-bg);
}
.leistungen-kompakt-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.leistungen-kompakt-container h2 { margin: 1.25rem 0 2.5rem; }

.leistungen-kompakt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.leistung-kompakt-card {
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.leistung-kompakt-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.leistung-kompakt-card p { font-size: 0.9rem; margin: 0; }

@media (max-width: 1024px) {
  .leistungen-kompakt { padding: 4rem 2rem; }
  .leistungen-kompakt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .leistungen-kompakt { padding: 3rem 1.25rem; }
  .leistungen-kompakt-grid { grid-template-columns: 1fr; }
}


