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

/* --- CSS Custom Properties --- */
:root {
  --red: #E30613;
  --red-dark: #B00510;
  --red-light: #F5313F;
  --yellow: #FFED00;
  --yellow-dark: #E6D400;
  --yellow-light: #FFF44D;
  --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: 1320px;
  --container-px: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  background: var(--gray-900);
  overflow-x: hidden;
}

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; }

/* Heading <br> that should only break on desktop — natural wrap on mobile */
@media (max-width: 768px) {
  .br-desk { display: none; }
}

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 var(--container-px);
}

.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);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--gray-900);
  border-color: var(--yellow);
}
.btn-secondary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.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: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  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: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  max-height: 56px;
}

.logo img {
  height: 48px !important;
  width: auto !important;
  max-height: 48px !important;
  max-width: 180px !important;
  object-fit: contain;
  display: block;
}

.footer .logo { max-height: 72px; }
.footer .logo img { height: 64px; max-height: 64px; max-width: 220px; }

@media (max-width: 600px) {
  .logo img { height: 40px; max-height: 40px; max-width: 140px; }
}

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

.nav a {
  padding: 8px 14px;
  color: var(--white);
  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(--yellow);
  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);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.nav-cta .btn svg { stroke: currentColor; transition: stroke var(--transition); }
.nav-cta .btn:hover,
.nav-cta .btn:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--gray-900) !important;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
  z-index: 1001;
}

.mobile-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 2px 8px rgba(227,6,19,0.35);
}
.mobile-call-btn:hover,
.mobile-call-btn:focus-visible {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.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;
  display: block;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  overflow: hidden;
  background: var(--gray-900);
}

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

.hero-bg-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: top;
}
.ueber-intro-img picture { display: block; width: 100%; height: 100%; }

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

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

.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 overlay - einheitlich, leichtes Schwarz, lässt das Hintergrundbild durchscheinen */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.4) 100%);
  z-index: 0;
}

/* --- Slide Content (vertically centered, capped width for readability) --- */
.slide-content {
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
  max-width: 880px;
}

.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,
.slide .slide-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  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;
}
.slide-trust .slide-trust-sep {
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 900;
}

/* --- 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 var(--container-px);
}

.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-prefix {
  font-family: var(--font-main);
  font-size: 0.4em;
  font-weight: 400;
  color: var(--red);
  text-transform: lowercase;
  letter-spacing: 0.02em;
  display: inline-block;
  vertical-align: baseline;
  margin-right: 0.3em;
}

.trust-vehicles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.6rem, 1.5vw, 1.1rem);
  color: var(--red);
  line-height: 1;
}
.trust-vehicles svg {
  width: auto;
  height: clamp(28px, 3.4vw, 40px);
  display: block;
}

.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);
}

/* ============================================
   AUSBILDUNGSWAHL: KLASSISCH oder INTENSIV
   ============================================ */
.ausbildung-wahl { background: var(--gray-50); }

.section-header .section-lead {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  color: var(--gray-700);
  margin: 14px auto 18px;
  max-width: 720px;
  line-height: 1.45;
}

.wahl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.wahl-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--gray-900);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  position: relative;
}

.wahl-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--gray-100);
  transition: border-color 0.25s ease;
}

.wahl-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease;
}
.wahl-icon svg { width: 30px; height: 30px; }

.wahl-card-head h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: uppercase;
}

.wahl-card-body {
  padding: 22px 28px 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wahl-block h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--gray-900);
  transition: color 0.25s ease;
}
.wahl-block .wahl-lead { font-weight: 600; margin-bottom: 2px; color: var(--gray-700); }
.wahl-block p { margin: 0; color: var(--gray-700); line-height: 1.6; transition: color 0.25s ease; }

.wahl-features {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wahl-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: color 0.25s ease;
}
.wahl-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 800;
  transition: color 0.25s ease;
}

.wahl-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 28px 22px;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  color: var(--red);
  transition: color 0.25s ease;
}
.wahl-cta-arrow {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
}

/* Dominant red hover - whole card flips to red, all text white */
.wahl-card:hover,
.wahl-card:focus-visible {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(227, 6, 19, 0.28);
}
.wahl-card:hover .wahl-card-head,
.wahl-card:focus-visible .wahl-card-head { border-color: rgba(255,255,255,0.18); }
.wahl-card:hover .wahl-icon,
.wahl-card:focus-visible .wahl-icon {
  background: var(--white);
  color: var(--red);
}
.wahl-card:hover .wahl-block h4,
.wahl-card:hover .wahl-block .wahl-lead,
.wahl-card:hover .wahl-block p,
.wahl-card:hover .wahl-features li,
.wahl-card:hover .wahl-card-foot,
.wahl-card:focus-visible .wahl-block h4,
.wahl-card:focus-visible .wahl-block .wahl-lead,
.wahl-card:focus-visible .wahl-block p,
.wahl-card:focus-visible .wahl-features li,
.wahl-card:focus-visible .wahl-card-foot { color: var(--white); }
.wahl-card:hover .wahl-features li::before,
.wahl-card:focus-visible .wahl-features li::before { color: var(--yellow); }
.wahl-card:hover .wahl-cta-arrow,
.wahl-card:focus-visible .wahl-cta-arrow { transform: translateX(6px); }

@media (max-width: 800px) {
  .wahl-grid { grid-template-columns: 1fr; gap: 20px; }
  .wahl-card-head h3 { font-size: 1.4rem; }
}

/* ============================================
   DIE AUSBILDUNG (replaces detail klassen list)
   ============================================ */
.ausbildung-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.ausbildung-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  letter-spacing: 0.01em;
}
.ausbildung-pikto {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.8rem, 2.5vw, 2rem);
  flex-wrap: nowrap;
  margin: 0 auto 36px;
}
.ausbildung-pikto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--yellow);
  flex: 0 1 auto;
  min-width: 0;
}
.ausbildung-pikto-item svg {
  width: auto;
  height: clamp(56px, 9vw, 110px);
  max-width: 100%;
  display: block;
}
.ausbildung-pikto-item span {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}
.ausbildung-pikto-sep {
  color: var(--red);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
  align-self: center;
  margin-bottom: 28px;
}
.ausbildung-followup {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin: 0 0 36px;
  line-height: 1.5;
}
.ausbildung-highlight {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 6px;
  margin: 6px 0;
}
.ausbildung-cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  line-height: 1.6;
}
.ausbildung-cta-text strong { color: var(--white); }
.ausbildung-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 600px) {
  .ausbildung-pikto-sep { display: none; }
  .ausbildung-pikto { gap: 18px; }
  .ausbildung-pikto-item svg { height: clamp(48px, 14vw, 80px); }
  .ausbildung-pikto-item span { font-size: 0.78rem; letter-spacing: 0.08em; }
}
@media (max-width: 380px) {
  .ausbildung-pikto { gap: 12px; }
  .ausbildung-pikto-item svg { height: 44px; }
  .ausbildung-pikto-item span { font-size: 0.72rem; }
}

/* ============================================
   AUSBILDUNGSKLASSEN (Pikto-Übersicht)
   ============================================ */
.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; }

/* ============================================
   AKTIONEN BANNER
   ============================================ */
.aktionen-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--gray-900);
  background-image:
    linear-gradient(135deg, rgba(17,17,17,0.78), rgba(17,17,17,0.55)),
    url('/img/bg-warzenblech.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 900px) {
  .aktionen-section { background-attachment: scroll; }
}

.aktionen-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  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(255,237,0,0.08));
}

.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);
  aspect-ratio: 4/3;
}
.ueber-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.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;
}

@media (max-width: 768px) {
  .ueber-intro-badge {
    right: auto;
    left: 12px;
    bottom: -12px;
    width: 100px;
    height: 100px;
  }
  .ueber-intro-badge-number { font-size: 2rem; }
}

.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(--red);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  background: var(--white);
}

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

.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-card p strong {
  color: var(--red);
  font-weight: 700;
}

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

@media (max-width: 900px) {
  .warum-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .warum-grid { grid-template-columns: 1fr; gap: 16px; }
  .warum-card { padding: 24px; }
}

/* ============================================
   INHABER / TIMELINE
   ============================================ */
.inhaber-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 48px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.inhaber-photo .img-placeholder-square,
.inhaber-photo img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--yellow);
  object-fit: cover;
  display: block;
}
.inhaber-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.inhaber-role {
  display: inline-block;
  background: var(--yellow);
  color: var(--gray-900);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.inhaber-text p {
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.7;
}

.timeline-section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  background-color: var(--gray-100);
  background-image:
    linear-gradient(180deg, rgba(247,247,248,0.88), rgba(247,247,248,0.92)),
    url('/img/bg-warzenblech.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 900px) {
  .timeline-section { background-attachment: scroll; }
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 820px;
  position: relative;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  padding: 20px 0 20px 0;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 96px;
  top: 40px;
  bottom: -26px;
  width: 3px;
  background: var(--red);
  z-index: 0;
}
.timeline-year {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--red);
  text-align: right;
  padding-right: 16px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 90px;
  top: 26px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--yellow);
  z-index: 1;
  border: 3px solid var(--red);
  z-index: 1;
}
.timeline-body {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.timeline-body h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.timeline-body p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 700px) {
  .inhaber-layout { grid-template-columns: 1fr; gap: 28px; }
  .inhaber-photo { max-width: 280px; margin: 0 auto; }
  .timeline-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .timeline-item::before { left: 8px; top: 22px; }
  .timeline-item:not(:last-child)::after { left: 14px; top: 36px; }
  .timeline-year { font-size: 1.05rem; padding-right: 0; text-align: left; padding-top: 18px; }
}

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

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

.ablauf-line { display: none; }

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

/* Per-step connecting line (only between steps, not after the last) */
.ablauf-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 54px;
  bottom: 0;
  width: 2px;
  background: var(--red);
  z-index: 0;
}

.ablauf-step-marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--red);
  z-index: 1;
  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(--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-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);
}

/* ============================================
   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;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  position: relative;
  background-color: var(--gray-900);
  background-image:
    linear-gradient(180deg, rgba(17,17,17,0.55), rgba(17,17,17,0.7)),
    image-set(url('/img/bg-faq-dortmund.webp') type('image/webp'),
              url('/img/bg-faq-dortmund.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: var(--white);
}
@media (max-width: 900px) {
  .faq-section { background-attachment: scroll; }
}
.faq-section .section-header h2,
.faq-section .section-header p { color: var(--white); }
.faq-section .section-tag { background: rgba(255,237,0,0.15); color: var(--yellow); border-color: rgba(255,237,0,0.3); }
.faq-section .faq-item {
  background: rgba(30,30,30,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.faq-section .faq-item.open {
  background: rgba(17,17,17,0.92);
  border-color: var(--yellow);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}
.faq-section .faq-question {
  color: var(--white);
  font-weight: 700;
}
.faq-section .faq-question:hover { color: var(--yellow); }
.faq-section .faq-item.open .faq-question { color: var(--yellow); }
.faq-section .faq-chevron { color: rgba(255,255,255,0.6); }
.faq-section .faq-item.open .faq-chevron { color: var(--yellow); }
.faq-section .faq-answer p { color: rgba(255,255,255,0.85); }

.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);
}

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

.kontakt-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kontakt-info-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: start;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}
.kontakt-info-list li:last-child { border-bottom: none; }
.kontakt-info-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  padding-top: 2px;
}
.kontakt-info-value {
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.5;
}
.kontakt-info-value a {
  color: var(--gray-800);
  text-decoration: none;
}
.kontakt-info-value a:hover {
  color: var(--red);
  text-decoration: underline;
}
.kontakt-card .kontakt-info-cta a {
  color: var(--red);
  font-weight: 700;
}
.kontakt-card .kontakt-info-cta a:hover {
  color: var(--red-dark, #b8050f);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .kontakt-info-list li { grid-template-columns: 1fr; gap: 2px; }
}

.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-800);
  font-weight: 700;
}

.kontakt-card td:first-child {
  color: var(--gray-900);
  width: 40%;
}

.kontakt-card td .kontakt-hours-note {
  font-weight: 400;
}

.kontakt-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kontakt-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kontakt-form h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
  color: var(--gray-900);
}
.kontakt-form-intro {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: -6px 0 0;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-row-split > div { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 11px 14px;
  transition: border-color var(--transition), background var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row select { cursor: pointer; }
.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 4px;
}
.form-note {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.form-note a { color: var(--red); font-weight: 600; }

.kontakt-form-wrap .kontakt-map { min-height: 200px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.kontakt-form-wrap .kontakt-map iframe { display: block; width: 100%; }

.kontakt-map-large {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  min-height: 520px;
  display: flex;
}
.kontakt-map-large iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  flex: 1;
}
@media (max-width: 900px) {
  .kontakt-map-large,
  .kontakt-map-large iframe { min-height: 380px; }
}

.kontakt-map-cover {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 200px;
  padding: 22px 26px;
  background:
    linear-gradient(135deg, rgba(17,17,17,0.55), rgba(17,17,17,0.35)),
    repeating-linear-gradient(45deg, var(--gray-100), var(--gray-100) 10px, var(--gray-50) 10px, var(--gray-50) 20px);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--white);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.kontakt-map-cover:hover { filter: brightness(1.05); transform: translateY(-1px); }
.kontakt-map-pin {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.kontakt-map-pin svg { width: 24px; height: 24px; }
.kontakt-map-text { display: flex; flex-direction: column; gap: 4px; }
.kontakt-map-text strong { font-weight: 700; font-size: 0.95rem; }
.kontakt-map-text span { font-size: 0.85rem; opacity: 0.85; }

.kontakt-hours-note {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 400;
}

@media (max-width: 900px) {
  .kontakt-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-row-split { grid-template-columns: 1fr; }
}

/* ============================================
   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: 320px;
}

.footer-brand-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem !important;
  color: var(--white);
}

.footer-brand-hours {
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  max-width: 320px;
}
.footer-brand-hours h5 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin: 0 0 8px;
}
.footer-brand-hours p {
  font-size: 0.88rem !important;
  margin: 2px 0 !important;
  color: var(--white);
  line-height: 1.45 !important;
  max-width: none !important;
}
.footer-brand-hours p strong {
  color: var(--white);
  font-weight: 700;
}
.footer-brand-hours-note {
  color: var(--gray-400) !important;
  font-style: italic;
  margin-top: 6px !important;
}

.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.9rem; color: var(--gray-200); }

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

.footer-kontakt-list .footer-kontakt-brand strong {
  font-family: var(--font-heading);
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer-kontakt-list .footer-kontakt-owner {
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.88rem;
}

.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 pages: header stays opaque (no transparent state, no hero behind it) */
body.legal-page-body .header,
body.legal-page-body .header.scrolled {
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
body.legal-page-body { padding-top: 72px; }
body.legal-page-body .legal-page { padding-top: 60px; }
.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) {
  .ueber-intro-layout { grid-template-columns: 1fr; gap: 40px; }
  .ueber-intro-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .ueber-intro-cta .btn { width: 100%; justify-content: center; text-align: center; }
  .ueber-intro-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .warum-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .aktionen-banner { grid-template-columns: 1fr; }
  .aktionen-banner-visual { width: 100%; }
  .aktionen-price-tag { max-width: none; width: 100%; padding: 32px 24px; }

  .mobile-actions { display: flex; }
  .menu-toggle { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    background: var(--gray-900);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 96px 24px 48px;
    gap: 0;
    transition: opacity var(--transition), visibility var(--transition);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    max-width: 440px;
    font-size: 1.25rem;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.02em;
  }
  .nav a:hover,
  .nav a.active {
    background: transparent;
    color: var(--yellow);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 32px;
    width: 100%;
    max-width: 440px;
    display: flex;
    justify-content: center;
  }
  .nav-cta .btn { width: 100%; justify-content: center; }

  /* Header stays above fullscreen nav so logo remains visible */
  .header { z-index: 1002; }
  .header.scrolled,
  body.nav-open .header {
    background: var(--gray-900);
  }
}

@media (max-width: 900px) {
  :root { --container-px: 18px; }
}

@media (max-width: 540px) {
  :root { --container-px: 14px; }
}

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

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

  .warum-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; }

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

  .slide h1, .slide h2, .slide .slide-heading { 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; align-items: flex-start; }
  .slide-trust .slide-trust-sep { display: none; }

  /* Slider nav stays visible on mobile so users know they can skip/cycle */
  .slider-bottom-nav {
    bottom: 20px;
    gap: 12px;
    padding: 0 20px;
  }
  .slider-next-btn { width: 38px; height: 38px; }
}

@media (max-width: 480px) {
  .ablauf-timeline { padding-left: 48px; }
  .ablauf-step-marker { left: -48px; width: 42px; height: 42px; }
  .ablauf-step-marker span { font-size: 0.95rem; }
  .ablauf-step:not(:last-child)::before {
    left: -28px;
    top: 42px;
    bottom: -22px;
  }
}
