/* ============================================
   FAHRSCHULE HUSEMANN - Premium Stylesheet
   Farbschema: Rot / Gelb / Grau
   Signatur-Element: Riffelblech / Tränenblech
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --red: #C41E3A;
  --red-dark: #9B1830;
  --red-light: #E8364F;
  --yellow: #F5A623;
  --yellow-dark: #D4901A;
  --yellow-light: #FFD166;
  --gray-900: #111111;
  --gray-800: #1E1E1E;
  --gray-700: #2D2D2D;
  --gray-600: #4A4A4A;
  --gray-500: #6B6B6B;
  --gray-400: #8A8A8A;
  --gray-300: #B0B0B0;
  --gray-200: #D4D4D4;
  --gray-100: #ECECEC;
  --gray-50: #F7F7F8;
  --white: #FFFFFF;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-main);
  color: var(--gray-700);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--red-dark); }

/* --- Riffelblech SVG Patterns --- */
.diamond-plate-subtle {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='10' cy='10' rx='4.5' ry='2' fill='%23000' opacity='0.04' transform='rotate(-20 10 10)'/%3E%3Cellipse cx='30' cy='10' rx='4.5' ry='2' fill='%23000' opacity='0.03' transform='rotate(20 30 10)'/%3E%3Cellipse cx='20' cy='25' rx='4.5' ry='2' fill='%23000' opacity='0.04' transform='rotate(-20 20 25)'/%3E%3Cellipse cx='10' cy='37' rx='3.5' ry='1.5' fill='%23000' opacity='0.03' transform='rotate(20 10 37)'/%3E%3Cellipse cx='35' cy='33' rx='3.5' ry='1.5' fill='%23000' opacity='0.035' transform='rotate(-20 35 33)'/%3E%3C/svg%3E");
}

.diamond-plate-red {
  background-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='10' cy='10' rx='4.5' ry='2' fill='%23fff' opacity='0.07' transform='rotate(-20 10 10)'/%3E%3Cellipse cx='30' cy='10' rx='4.5' ry='2' fill='%23fff' opacity='0.05' transform='rotate(20 30 10)'/%3E%3Cellipse cx='20' cy='25' rx='4.5' ry='2' fill='%23fff' opacity='0.07' transform='rotate(-20 20 25)'/%3E%3Cellipse cx='10' cy='37' rx='3.5' ry='1.5' fill='%23fff' opacity='0.04' transform='rotate(20 10 37)'/%3E%3Cellipse cx='35' cy='33' rx='3.5' ry='1.5' fill='%23fff' opacity='0.06' transform='rotate(-20 35 33)'/%3E%3C/svg%3E");
}

.diamond-plate-dark {
  background-color: var(--gray-800);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='10' cy='10' rx='4.5' ry='2' fill='%23fff' opacity='0.03' transform='rotate(-20 10 10)'/%3E%3Cellipse cx='30' cy='10' rx='4.5' ry='2' fill='%23fff' opacity='0.025' transform='rotate(20 30 10)'/%3E%3Cellipse cx='20' cy='25' rx='4.5' ry='2' fill='%23fff' opacity='0.03' transform='rotate(-20 20 25)'/%3E%3C/svg%3E");
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  background: rgba(196,30,58,0.08);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-tag-light {
  color: var(--yellow);
  background: rgba(245,166,35,0.15);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-header-light h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header-light p {
  color: rgba(255,255,255,0.65);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-lg { padding: 18px 40px; font-size: 0.95rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--gray-900);
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}
.btn-secondary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.btn-glass {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* --- News Ticker --- */
/* ============================================
   HEADER - fixed, startet transparent über Hero
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--red);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  position: relative;
}
.logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

.logo-text { display: flex; flex-direction: column; }

.logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.logo-text .tagline {
  font-size: 0.65rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 2px; }

.nav a {
  padding: 8px 14px;
  color: var(--gray-400);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
}

.nav a:hover, .nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-cta { margin-left: 16px; }
.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--white) !important;
  background: var(--red);
  border-color: var(--red);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--gray-900);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-watermark {
  position: absolute;
  right: -3%;
  bottom: -8%;
  font-family: var(--font-heading);
  font-size: clamp(28rem, 45vw, 55rem);
  font-weight: 900;
  color: rgba(196, 30, 58, 0.06);
  line-height: 0.8;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}

/* --- Slider Track & Slides --- */
.slider-track {
  position: relative;
  z-index: 2;
  height: 100vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* Slide overlays */
.slide[data-overlay="dark"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,17,0.75) 0%, rgba(17,17,17,0.4) 40%, rgba(17,17,17,0.6) 70%, rgba(17,17,17,0.95) 100%),
    linear-gradient(90deg, rgba(17,17,17,0.85) 0%, transparent 60%);
  z-index: 0;
}

.slide[data-overlay="red"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(155,24,48,0.88) 0%, rgba(17,17,17,0.7) 100%),
    linear-gradient(90deg, rgba(17,17,17,0.6) 0%, transparent 60%);
  z-index: 0;
}

.slide[data-overlay="yellow"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(180,120,10,0.7) 0%, rgba(17,17,17,0.75) 100%),
    linear-gradient(90deg, rgba(17,17,17,0.6) 0%, transparent 60%);
  z-index: 0;
}

/* --- Slide Content (vertically centered, full container width) --- */
.slide-content {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}

.slide-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--yellow);
  padding: 6px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.slide-badge-aktion {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.slide-badge-tipp {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--gray-900);
}

.slide h1, .slide h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.slide .highlight {
  color: transparent;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  -webkit-background-clip: text;
  background-clip: text;
}

.slide p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.slide-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Trust badges on main slide */
.slide-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.slide-trust span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-300);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Detail items on promo slides */
.slide-details {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.slide-detail-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: var(--radius);
}

.slide-detail-item strong {
  display: block;
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.slide-detail-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* --- Slider Nav: bottom-left, dots + arrow --- */
.slider-bottom-nav {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.slider-dots-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Inactive dot = small circle */
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: width 0.4s ease, border-radius 0.4s ease, background 0.3s ease;
  flex-shrink: 0;
}

.slider-dot:hover { background: rgba(255,255,255,0.5); }

/* Active dot = wider pill with progress fill */
.slider-dot.active {
  width: 48px;
  border-radius: 5px;
  background: rgba(255,255,255,0.15);
}

/* Progress fill inside active dot */
.slider-dot .dot-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--yellow);
  border-radius: inherit;
}

/* Already-seen dots */
.slider-dot.done {
  background: rgba(255,255,255,0.5);
}

/* Next arrow button */
.slider-next-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.slider-next-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

/* Hidden old elements */
.slider-nav { display: none; }
.slider-dots-inline { display: none; }
.slider-progress { display: none; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  z-index: 3;
  margin-top: -1px;
}

.trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.trust-item { text-align: center; flex: 1; }

.trust-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.trust-stars {
  color: var(--yellow);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  letter-spacing: 2px;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 6px;
  line-height: 1.4;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ============================================
   LEISTUNGEN
   ============================================ */
.leistungen {
  background: var(--gray-50);
}

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

.leistung-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

.leistung-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.leistung-card-top {
  padding: 28px 24px 20px;
  position: relative;
  background: var(--gray-50);
}

.leistung-card[data-accent="red"] .leistung-card-top {
  border-bottom: 3px solid var(--red);
}

.leistung-card[data-accent="yellow"] .leistung-card-top {
  border-bottom: 3px solid var(--yellow);
}

.leistung-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.leistung-card[data-accent="red"] .leistung-icon {
  background: linear-gradient(135deg, var(--red), var(--red-light));
}

.leistung-card[data-accent="yellow"] .leistung-icon {
  background: linear-gradient(135deg, var(--yellow-dark), var(--yellow));
}

.leistung-card-body {
  padding: 24px;
}

.leistung-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.leistung-card-body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.leistung-details {
  list-style: none;
  border-top: 1px solid var(--gray-100);
  padding-top: 14px;
}

.leistung-details li {
  padding: 5px 0;
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.leistung-details li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   FÜHRERSCHEINKLASSEN (Tabbed)
   ============================================ */
.klassen-section {
  background: var(--gray-900);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.klassen-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='10' cy='10' rx='4.5' ry='2' fill='%23fff' opacity='0.02' transform='rotate(-20 10 10)'/%3E%3Cellipse cx='30' cy='10' rx='4.5' ry='2' fill='%23fff' opacity='0.015' transform='rotate(20 30 10)'/%3E%3Cellipse cx='20' cy='25' rx='4.5' ry='2' fill='%23fff' opacity='0.02' transform='rotate(-20 20 25)'/%3E%3C/svg%3E");
}

.klassen-section .container { position: relative; z-index: 1; }

.klassen-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.klassen-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-400);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.klassen-tab:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.klassen-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.klassen-panel { display: none; }
.klassen-panel.active { display: block; }

.klassen-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.klassen-cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.klasse-card-v2 {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.klasse-card-v2:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.klasse-card-highlight {
  border-color: var(--yellow) !important;
  background: rgba(245, 166, 35, 0.06);
}

.klasse-card-ribbon {
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--yellow);
  color: var(--gray-900);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 40px;
  transform: rotate(45deg);
}

.klasse-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 28px 0;
}

.klasse-letter {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  background: rgba(196,30,58,0.12);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
  line-height: 1;
}

.klasse-card-highlight .klasse-letter {
  color: var(--yellow);
  background: rgba(245,166,35,0.12);
}

.klasse-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.klasse-sub {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.klasse-card-content {
  padding: 24px 28px;
}

.klasse-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.klasse-info-item {
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
}

.klasse-info-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.klasse-info-value {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 500;
}

.klasse-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.klasse-card-footer {
  padding: 0 28px 28px;
}

.klasse-card-footer .btn {
  width: 100%;
}

/* ============================================
   AKTIONEN BANNER
   ============================================ */
.aktionen-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.aktionen-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--red);
  position: relative;
  overflow: hidden;
}

.aktionen-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(245,166,35,0.04));
}

.aktionen-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.aktionen-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.aktionen-banner > div > p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.aktionen-details {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.aktionen-detail {
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}

.aktionen-detail strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.aktionen-detail span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.aktionen-price-tag {
  text-align: center;
  background: var(--gray-900);
  color: var(--white);
  padding: 40px 48px;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
}

.aktionen-price-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.aktionen-price-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

.aktionen-price-sub {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ============================================
   ÜBER UNS INTRO
   ============================================ */
.ueber-intro-section { background: var(--white); }

.ueber-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ueber-intro-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 20px;
}

.ueber-intro-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.ueber-intro-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  background: transparent;
  color: var(--gray-800);
  border: 2px solid var(--gray-300);
}
.btn-outline-dark:hover {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}

.ueber-intro-visual { position: relative; }

.ueber-intro-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ueber-intro-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  text-align: center;
}

.ueber-intro-badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.ueber-intro-badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  opacity: 0.9;
}

/* ============================================
   WARUM HUSEMANN? (6 Gründe Grid)
   ============================================ */
.warum-section { background: var(--white); }

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

.warum-card {
  padding: 32px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  position: relative;
}

.warum-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.warum-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 16px;
}

.warum-card:hover .warum-number { color: var(--red); }

.warum-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.warum-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.warum-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   TEAM
   ============================================ */
.team-section { background: var(--gray-50); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
}

.team-photo {
  margin-bottom: 16px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.img-placeholder-square {
  aspect-ratio: 1;
}

.img-placeholder-wide {
  aspect-ratio: 16/10;
}

.img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-400);
  border-radius: var(--radius-lg);
}

.img-placeholder span {
  font-size: 0.85rem;
  font-weight: 500;
}

.team-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ============================================
   FUHRPARK
   ============================================ */
.fuhrpark-section {
  color: var(--white);
}

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

.fuhrpark-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}

.fuhrpark-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.fuhrpark-card .img-placeholder {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3);
  border-radius: 0;
}

.fuhrpark-info {
  padding: 16px 20px;
}

.fuhrpark-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}

.fuhrpark-info span {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ============================================
   ABLAUF / TIMELINE
   ============================================ */
.ablauf-section {
  background: var(--gray-50);
}

.ablauf-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.ablauf-line {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--yellow), var(--red));
}

.ablauf-step {
  position: relative;
  padding-bottom: 48px;
}
.ablauf-step:last-child { padding-bottom: 0; }

.ablauf-step-marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all var(--transition);
}

.ablauf-step:hover .ablauf-step-marker {
  background: var(--red);
  transform: scale(1.1);
}

.ablauf-step-marker span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--red);
  transition: color var(--transition);
}

.ablauf-step:hover .ablauf-step-marker span { color: var(--white); }

.ablauf-step-content {
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.ablauf-step:hover .ablauf-step-content {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.ablauf-step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.ablauf-step-content p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.ablauf-step-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  background: rgba(196,30,58,0.08);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.ablauf-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ablauf-checklist span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-50);
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--gray-100);
}

.ablauf-step-marker-final {
  background: var(--red) !important;
  border-color: var(--red) !important;
}

.ablauf-step-marker-final span {
  color: var(--white) !important;
  font-size: 1.3rem !important;
}

.ablauf-step-final {
  border-color: var(--red) !important;
  background: rgba(196,30,58,0.02);
}

/* ============================================
   IMAGE CTA BANNER (visual breaker with bg image)
   ============================================ */
.image-cta-section {
  position: relative;
  padding: 100px 0;
  /*
    HINWEIS: Ersetze diesen Hintergrund mit einem echten Foto:
    z.B. Fahrschüler im Auto, stolze Gesichter, Dortmunder Straße, etc.
    background-image: url('/img/fahrschueler-im-auto.jpg');
  */
  background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.image-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.75);
  /* Wird transparenter wenn ein echtes Bild hinterlegt wird */
}

.image-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: var(--white);
}

.image-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.image-cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS / KUNDENSTIMMEN
   ============================================ */
.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--red);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.testimonials-cta {
  text-align: center;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 20px 32px;
  border-radius: var(--radius-lg);
}

.google-rating-stars {
  font-size: 1.8rem;
  color: var(--yellow);
  letter-spacing: 2px;
}

.google-rating strong {
  display: block;
  font-size: 1.05rem;
  color: var(--gray-900);
}

.google-rating span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ============================================
   LEISTUNG CARD CTA LINK
   ============================================ */
.leistung-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  transition: all var(--transition);
}
.leistung-cta:hover {
  color: var(--red-dark);
  gap: 8px;
}

/* ============================================
   CTA BRIDGE (between sections)
   ============================================ */
.section-cta-bridge {
  padding: 48px 0;
  text-align: center;
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}

.section-cta-bridge::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='10' cy='10' rx='4.5' ry='2' fill='%23fff' opacity='0.02' transform='rotate(-20 10 10)'/%3E%3Cellipse cx='30' cy='10' rx='4.5' ry='2' fill='%23fff' opacity='0.015' transform='rotate(20 30 10)'/%3E%3Cellipse cx='20' cy='25' rx='4.5' ry='2' fill='%23fff' opacity='0.02' transform='rotate(-20 20 25)'/%3E%3C/svg%3E");
}

.section-cta-bridge p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.bridge-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* (mobile-contact-bar removed - replaced by floating-contacts) */

/* ============================================
   PREISE
   ============================================ */
.preise-section {
  background: var(--white);
}

.preise-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.preis-card-v2 {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.preis-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.preis-card-featured {
  border-color: var(--yellow) !important;
  box-shadow: 0 8px 30px rgba(245,166,35,0.15);
  position: relative;
}

.preis-card-featured:hover {
  box-shadow: 0 16px 50px rgba(245,166,35,0.2);
}

.preis-featured-badge {
  background: var(--yellow);
  color: var(--gray-900);
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px;
}

.preis-card-price {
  padding: 16px 28px;
  border-bottom: 1px solid var(--gray-100);
}

.preis-ab {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
}

.preis-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1.1;
}

.preis-card-featured .preis-amount {
  color: var(--yellow-dark);
}

.preis-single-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 28px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--gray-50);
}

.preis-single-line span { color: var(--gray-500); }
.preis-single-line strong { color: var(--gray-900); }

.preis-card-top {
  padding: 28px 28px 0;
}

.preis-card-top h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gray-900);
}

.preis-card-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.preis-card-body {
  padding: 20px 28px;
  flex: 1;
}

.preis-includes {
  list-style: none;
}

.preis-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-50);
}

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

.check-icon {
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.preis-card-featured .check-icon { color: var(--yellow-dark); }

.preis-card-action {
  padding: 0 28px 28px;
}

.preise-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-100);
}

.preise-extra-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.preise-extra-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-900);
}

.preise-extra-item span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--gray-50); }

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition);
}

.faq-item.open {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(196,30,58,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  transition: all var(--transition);
}

.faq-question:hover { color: var(--red); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gray-400);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   KONTAKT
   ============================================ */
.kontakt-section { background: var(--white); }

.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.kontakt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kontakt-card {
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.kontakt-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.kontakt-card-hours {
  grid-column: 1 / -1;
}

.kontakt-card-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 14px;
}

.kontakt-card h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.kontakt-card p, .kontakt-card a {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.kontakt-card table {
  width: 100%;
  font-size: 0.85rem;
}

.kontakt-card td {
  padding: 4px 0;
  color: var(--gray-600);
}

.kontakt-card td:first-child {
  font-weight: 600;
  color: var(--gray-800);
  width: 40%;
}

.kontakt-map-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.kontakt-map { min-height: 460px; height: 100%; }
.kontakt-map iframe { width: 100%; height: 100%; min-height: 460px; border: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; font-size: 0.85rem; }

.footer-links a {
  color: var(--gray-400);
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
}

.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--yellow); }

.footer-legal { display: flex; gap: 24px; }

/* ============================================
   FLOATING CONTACT BUTTONS (Phone + Email)
   ============================================ */
.floating-contacts {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-contacts.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  overflow: hidden;
}

.float-btn-phone {
  background: var(--red);
  color: var(--white);
}
.float-btn-phone:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(196,30,58,0.4);
}

.float-btn-email {
  background: var(--gray-900);
  color: var(--white);
}
.float-btn-email:hover {
  background: var(--gray-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.float-btn svg { flex-shrink: 0; }

.float-btn-label {
  transition: width 0.4s ease, opacity 0.3s ease;
  overflow: hidden;
}

/* Always show labels */

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding-top: 120px;
  padding-bottom: 60px;
  min-height: 80vh;
}
.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 28px 0 12px;
}
.legal-page p { margin-bottom: 12px; color: var(--gray-600); line-height: 1.7; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .klassen-cards-3 { grid-template-columns: repeat(2, 1fr); }
  .ueber-intro-layout { grid-template-columns: 1fr; gap: 40px; }
  .ueber-intro-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .warum-grid { grid-template-columns: repeat(2, 1fr); }
  .preise-overview { grid-template-columns: 1fr 1fr; }
  .preise-extras { grid-template-columns: 1fr; }
  .fuhrpark-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .aktionen-banner { grid-template-columns: 1fr; }
  .aktionen-price-tag { max-width: 200px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .menu-toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--gray-900);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
  }
  .nav.open { right: 0; }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    font-size: 1rem;
  }

  .nav-cta { margin-left: 0; margin-top: 20px; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-cards { flex-direction: column; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }

  .trust-items { flex-wrap: wrap; gap: 20px; }
  .trust-item { flex: 0 0 45%; }
  .trust-divider { display: none; }

  .leistungen-grid { grid-template-columns: 1fr; }
  .klassen-cards, .klassen-cards-3 { grid-template-columns: 1fr; }
  .klassen-tabs { flex-wrap: wrap; }
  .preise-overview { grid-template-columns: 1fr; }
  .warum-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .fuhrpark-grid { grid-template-columns: 1fr; }
  .kontakt-layout { grid-template-columns: 1fr; }
  .kontakt-cards { grid-template-columns: 1fr; }
  .aktionen-banner { padding: 32px; }
  .aktionen-details { flex-direction: column; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .google-rating { flex-direction: column; text-align: center; }
  .image-cta-section { background-attachment: scroll; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; }

  .news-ticker-label { display: none; }

  .slide h1, .slide h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .slide-buttons { flex-direction: column; }
  .slide-buttons .btn { width: 100%; }
  .slide-trust { flex-direction: column; gap: 8px; }
  .slide-details { flex-direction: column; }

  /* Hide slider nav on tablet, swipe only */
  .slider-bottom-nav { display: none; }

  /* Floating buttons stay with labels on mobile */

  /* (mobile-contact-bar removed) */

  /* Floating buttons always compact on smaller screens */
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .ablauf-timeline { padding-left: 48px; }
  .ablauf-step-marker { left: -48px; width: 42px; height: 42px; }
  .ablauf-line { left: 20px; }
}
