/* ══════════════════════════════════════════════════════════════
   MC MONTAGEBAU – Premium Stylesheet 2026
   Mobile First · Responsive · prefers-reduced-motion
   Klassen passend zu index.html
══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --c-brand:        #1e6fcf;
  --c-brand-dark:   #155db5;
  --c-brand-light:  #e8f2fd;
  --c-bg:           #f8fafc;
  --c-bg-alt:       #f1f5f9;
  --c-bg-dark:      #0f1f35;
  --c-surface:      #ffffff;
  --c-text:         #1a2332;
  --c-text-mid:     #4a5568;
  --c-text-light:   #718096;
  --c-border:       #e2e8f0;
  --c-success:      #22c55e;
  --c-error:        #ef4444;
  --c-gold:         #fbbf24;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-brand: 0 8px 32px rgba(30,111,207,.28);

  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;

  --max-w:        1200px;
  --section-py:   clamp(4rem, 8vw, 6rem);
  --transition:   220ms cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

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

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.section { padding-block: var(--section-py); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-text);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.35rem); font-weight: 700; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
  line-height: 1.3;
}
.btn:focus-visible { outline: 3px solid var(--c-brand); outline-offset: 3px; }
.btn-primary {
  background: var(--c-brand);
  color: #fff;
  border-color: var(--c-brand);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--c-brand-dark);
  border-color: var(--c-brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30,111,207,.38);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  color: var(--c-brand);
  border-color: var(--c-brand);
}
.btn-outline:hover { background: var(--c-brand); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; border-radius: var(--radius-md); }

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(15,31,53,.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(15,31,53,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-img-el {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.logo-tagline {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  line-height: 1.2;
}

/* Desktop Nav */
.main-nav {
  display: none;
  align-items: center;
  gap: .25rem;
  margin-inline-start: auto;
}
.nav-link {
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 500;
  padding: .45rem .75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }

/* Header Actions */
.header-actions {
  display: none;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
  transition: color var(--transition);
}
.header-phone:hover { color: #fff; }

/* Nav Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-inline-start: auto;
  border-radius: var(--radius-sm);
  padding: 8px;
  transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .header-actions { display: flex; }
  .nav-toggle { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE NAV OVERLAY
══════════════════════════════════════════════════════════════ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(.4,0,.2,1);
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel {
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: min(85vw, 360px);
  background: #0f1f35;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-overlay.open .mobile-nav-panel {
  transform: translateX(0);
}

/* Panel Head */
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  min-height: 72px;
  flex-shrink: 0;
}
.mobile-nav-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.07);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.mobile-nav-close:hover { background: rgba(255,255,255,.15); color: #fff; }

/* Nav Links */
.mobile-nav-links {
  flex: 1;
  padding: .5rem 0;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background var(--transition), color var(--transition);
  min-height: 60px;
  text-decoration: none;
}
.mobile-nav-link:active { background: rgba(255,255,255,.06); }
.mobile-nav-link:hover  { background: rgba(255,255,255,.06); color: #fff; }
.mnl-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(30,111,207,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
}
.mnl-arrow {
  margin-inline-start: auto;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
}

/* Panel Footer */
.mobile-nav-footer {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
}
.mobile-nav-call,
.mobile-nav-anfrage {
  width: 100%;
  justify-content: center;
  padding: .9rem 1.5rem;
  font-size: .9375rem;
}

@media (min-width: 900px) {
  .mobile-nav-overlay { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-bg-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,31,53,.92) 0%, rgba(30,111,207,.35) 100%);
  z-index: 1;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1e38 0%, #1a3a6e 50%, #0f2d58 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 8rem 5rem;
  max-width: 850px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(251,191,36,.15);
  border: 1px solid rgba(251,191,36,.3);
  color: #fde68a;
  font-size: .8125rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: .02em;
}
.hero-title {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}
.hero-highlight {
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  color: rgba(255,255,255,.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  backdrop-filter: blur(8px);
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.hero-stat span {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .02em;
}
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 100px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 100px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%       { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding-block: 2rem;
  box-shadow: var(--shadow-sm);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--c-brand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-brand);
}
.trust-text strong { display: block; font-size: .875rem; font-weight: 700; color: var(--c-text); line-height: 1.3; }
.trust-text span { font-size: .78rem; color: var(--c-text-light); }

/* ══════════════════════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-brand);
  background: var(--c-brand-light);
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--c-text-mid); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   LEISTUNGEN
══════════════════════════════════════════════════════════════ */
.leistungen { background: var(--c-bg); }
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px)  { .leistungen-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .leistungen-grid { grid-template-columns: repeat(3,1fr); } }

.leistung-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.leistung-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.leistung-card.featured {
  border-color: var(--c-brand);
  box-shadow: 0 6px 32px rgba(30,111,207,.18), var(--shadow-md);
  position: relative;
}
.leistung-card-img { height: 220px; overflow: hidden; flex-shrink: 0; position: relative; }
.leistung-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.4,0,.2,1); }
.leistung-card:hover .leistung-card-img img { transform: scale(1.05); }
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f2fd 0%, #dbeafe 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: #93b4d4;
  font-size: .78rem;
  font-weight: 500;
}
.leistung-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; position: relative; }
.leistung-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--c-brand);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 100px;
}
.leistung-title { font-size: 1.25rem; margin-bottom: .75rem; }
.leistung-desc { color: var(--c-text-mid); font-size: .9375rem; line-height: 1.65; margin-bottom: 1rem; }
.leistung-list { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.5rem; flex: 1; }
.leistung-list li {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-size: .875rem;
  color: var(--c-text-mid);
}
.leistung-list li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-brand);
  margin-top: .35em;
}
.leistung-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--c-brand);
  font-size: .875rem;
  font-weight: 700;
  margin-top: auto;
  transition: gap var(--transition);
}
.leistung-cta:hover { gap: .7rem; }

/* ══════════════════════════════════════════════════════════════
   ÜBER UNS
══════════════════════════════════════════════════════════════ */
.ueber-uns { background: linear-gradient(150deg, var(--c-bg-dark) 0%, #1a3a6e 100%); }
.ueber-uns-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .ueber-uns-inner { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.ueber-uns-media { position: relative; }
.ueber-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}
.ueber-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.ueber-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
}
.ueber-badge-float {
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--c-text);
  box-shadow: var(--shadow-lg);
}
.ueber-uns-content .section-eyebrow { background: rgba(255,255,255,.1); color: #93c5fd; }
.ueber-uns-content .section-title { color: #fff; }
.ueber-text { color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 1.25rem; }
.ueber-werte { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.75rem; }
.wert-item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 500; }
.wert-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(30,111,207,.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════════
   VORTEILE
══════════════════════════════════════════════════════════════ */
.vorteile { background: var(--c-bg-alt); }
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 900px) { .vorteile-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .vorteile-grid { grid-template-columns: 1fr; } }

.vorteil-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.vorteil-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-brand); }
.vorteil-icon {
  width: 56px;
  height: 56px;
  background: var(--c-brand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-brand);
  margin-bottom: 1.25rem;
  transition: background var(--transition), color var(--transition);
}
.vorteil-card:hover .vorteil-icon { background: var(--c-brand); color: #fff; }
.vorteil-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.vorteil-card p { font-size: .875rem; color: var(--c-text-mid); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   ABLAUF
══════════════════════════════════════════════════════════════ */
.ablauf { background: var(--c-surface); }
.ablauf-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
}
@media (min-width: 900px) { .ablauf-steps { flex-direction: row; align-items: stretch; } }

.ablauf-step {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
  flex: 1;
  transition: box-shadow var(--transition), transform var(--transition);
  width: 100%;
  max-width: 400px;
}
.ablauf-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
@media (min-width: 900px) { .ablauf-step { flex-direction: column; max-width: none; align-items: flex-start; } }

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
}
.step-content { flex: 1; }
.step-icon {
  width: 48px;
  height: 48px;
  background: var(--c-brand-light);
  border-radius: var(--radius-md);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--c-brand);
  margin-bottom: 1rem;
}
@media (min-width: 900px) { .step-icon { display: flex; } }
.step-content h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.step-content p { font-size: .875rem; color: var(--c-text-mid); line-height: 1.65; }

.ablauf-connector {
  display: none;
  flex-shrink: 0;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-border) 0%, var(--c-brand) 50%, var(--c-border) 100%);
  margin-top: 2.5rem;
}
@media (min-width: 900px) { .ablauf-connector { display: block; } }
.ablauf-cta { text-align: center; }

/* ══════════════════════════════════════════════════════════════
   SERVICEGEBIET
══════════════════════════════════════════════════════════════ */
.servicegebiet { background: var(--c-bg); }
.servicegebiet-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .servicegebiet-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.servicegebiet-desc { color: var(--c-text-mid); margin-bottom: 1.5rem; line-height: 1.7; }
.orte-grid { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.ort-tag {
  background: var(--c-brand-light);
  color: var(--c-brand);
  font-size: .8125rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 100px;
}
.ort-tag:last-child { opacity: .6; }
.servicegebiet-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.map-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--c-brand-light) 0%, #dbeafe 100%);
  border: 1px solid var(--c-border);
  max-width: 480px;
  width: 100%;
  margin-inline: auto;
}
.map-placeholder-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 2rem;
  text-align: center;
  color: var(--c-text-mid);
}
.map-placeholder-inner strong { color: var(--c-text); font-size: 1.1rem; }
.map-placeholder-inner span { font-size: .875rem; }

/* ══════════════════════════════════════════════════════════════
   KONTAKT
══════════════════════════════════════════════════════════════ */
.kontakt { background: linear-gradient(150deg, #f8fafc 0%, #e8f2fd 100%); }
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 900px) { .kontakt-inner { grid-template-columns: 360px 1fr; gap: 4rem; } }

.kontakt-info-card {
  background: var(--c-bg-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  color: #fff;
  height: fit-content;
}
.kontakt-info-title { font-size: 1.15rem; color: #fff; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.kontakt-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.kontakt-info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(30,111,207,.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
}
.kontakt-info-label { display: block; font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .25rem; }
.kontakt-info-value { color: rgba(255,255,255,.9); font-size: .9375rem; font-weight: 500; line-height: 1.5; }
a.kontakt-info-value:hover { color: #93c5fd; }
.kontakt-promise { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.8); font-size: .875rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.07); }
.kontakt-promise:first-of-type { margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); }

/* Form */
.kontakt-form-wrap {
  background: var(--c-surface);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}
.kontakt-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field label { font-size: .875rem; font-weight: 600; color: var(--c-text); }
.required { color: var(--c-brand); }
.form-hint { color: var(--c-text-light); font-weight: 400; font-size: .8rem; }

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px rgba(30,111,207,.15);
}
.form-field input.invalid,
.form-field textarea.invalid,
.form-field select.invalid { border-color: var(--c-error); }
.form-field textarea { resize: vertical; min-height: 120px; }

.select-wrap { position: relative; }
.select-wrap select { padding-right: 2.5rem; cursor: pointer; }
.select-arrow { position: absolute; right: .9rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--c-text-light); }
.field-error { font-size: .8rem; color: var(--c-error); font-weight: 500; min-height: 1.1em; }

.form-checkbox { flex-direction: row; align-items: flex-start; gap: 0; }
.checkbox-label { display: flex; align-items: flex-start; gap: .75rem; cursor: pointer; font-size: .85rem; color: var(--c-text-mid); line-height: 1.55; }
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--c-border);
  border-radius: 5px;
  background: var(--c-surface);
  margin-top: .1rem;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
}
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom { background: var(--c-brand); border-color: var(--c-brand); }
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpolyline points='1,5 4.5,8.5 11,1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.checkbox-label a { color: var(--c-brand); text-decoration: underline; }

.btn-submit { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 1rem; border-radius: var(--radius-md); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
}
.form-success[hidden] { display: none; }
.form-success div { display: flex; flex-direction: column; gap: .25rem; }
.form-success strong { color: #166534; font-size: .9375rem; }
.form-success span { color: #15803d; font-size: .875rem; }
.form-success a { color: #166534; font-weight: 700; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer { background: var(--c-bg-dark); color: rgba(255,255,255,.7); padding-top: 4rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 640px)  { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.8fr 1fr 1fr 1fr; } }

.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-logo-img { height: 44px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; }
.footer-logo-name { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: #fff; }
.footer-logo-tagline { font-size: .7rem; color: rgba(255,255,255,.45); }
.footer-desc { font-size: .875rem; line-height: 1.7; margin-bottom: 1.25rem; color: rgba(255,255,255,.6); }
.footer-address { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.5); }
.footer-col-title { font-family: var(--font-body); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links li a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links li a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact li { display: flex; align-items: center; gap: .6rem; font-size: .875rem; color: rgba(255,255,255,.65); }
.footer-contact li svg { flex-shrink: 0; color: rgba(255,255,255,.35); }
.footer-contact li a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.footer-contact li a:hover { color: #fff; }
.footer-cta { margin-top: 1.5rem; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-block: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-legal { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.85); }

.footer-powered {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) { .footer-powered { border-top: none; padding-top: 0; width: auto; } }
.wowobot-link { color: #22b8e0; font-weight: 700; transition: color var(--transition); }
.wowobot-link:hover { color: #4ecde8; }

/* ══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.4,0,.2,1), transform 600ms cubic-bezier(.4,0,.2,1);
}
[data-animate="fade-right"] { transform: translateX(-28px); }
[data-animate="fade-left"]  { transform: translateX(28px); }
[data-animate].visible { opacity: 1; transform: translate(0,0); }

/* ══════════════════════════════════════════════════════════════
   MOBILE CTA BAR
══════════════════════════════════════════════════════════════ */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 900;
  background: var(--c-bg-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: .75rem 1rem;
  gap: .75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.mobile-cta-bar a { flex: 1; justify-content: center; font-size: .875rem; padding: .8rem 1rem; }
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 76px; } }

/* ── Logo image (wenn vorhanden) ── */
.logo-img-el {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ── Hero background image (Fallback) ── */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* ── Hero Video ── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
/* Wenn Video lädt/abgespielt wird, Fallback-Bild ausblenden */
.hero-bg-fallback { z-index: -1; }

/* Bei prefers-reduced-motion: Video pausieren, Bild zeigen */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-bg-fallback { z-index: 0; display: block; }
}

/* Karten-Bilder: echte Fotos passend skalieren */
.leistung-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 500ms cubic-bezier(.4,0,.2,1);
}
.leistung-card:hover .leistung-card-img img {
  transform: scale(1.04);
}

/* Über-uns Bild */
.ueber-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE – KOMPAKT & ÜBERSICHTLICH (≤ 767px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── Globales Section-Spacing stark reduzieren ── */
  :root { --section-py: 2.75rem; }
  .section-header { margin-bottom: 1.75rem; }
  .section-title  { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-subtitle { font-size: .9rem; }

  /* ──────────── HERO ──────────── */
  .hero-content    { padding-block: 5.5rem 3rem; text-align: left; }
  .hero-badge      { font-size: .75rem; }
  .hero-title      { font-size: clamp(1.75rem, 7.5vw, 2.4rem); line-height: 1.2; }
  .hero-subtitle   { font-size: .9rem; margin-bottom: 1.75rem; }
  .hero-cta-group  { flex-direction: column; align-items: stretch; margin-bottom: 0; }
  .hero-cta-group .btn { justify-content: center; font-size: .9rem; }
  /* Stats-Bar weg – redundant mit Trust-Bar */
  .hero-stats      { display: none; }
  .hero-scroll-hint { display: none; }

  /* ──────────── TRUST BAR → horizontaler Scroll-Strip ──────────── */
  .trust-bar       { padding-block: 1rem; overflow-x: auto; }
  .trust-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: .75rem;
    padding-inline: 1rem;
    width: max-content;
    min-width: 100%;
  }
  .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .4rem;
    min-width: 110px;
    flex-shrink: 0;
  }
  .trust-icon { width: 36px; height: 36px; }
  .trust-text span { display: none; } /* Subtext weg */
  .trust-text strong { font-size: .78rem; }

  /* ──────────── LEISTUNGEN ──────────── */
  .leistungen-grid   { gap: 1rem; }
  .leistung-card-img { height: 150px; }
  .leistung-card-body { padding: 1.25rem; }
  .leistung-title    { font-size: 1.05rem; margin-bottom: .4rem; }
  .leistung-desc     { font-size: .875rem; margin-bottom: .75rem; }
  /* Bullet-Listen weg – zu lang */
  .leistung-list     { display: none; }

  /* ──────────── ÜBER UNS ──────────── */
  /* Bild weg auf Mobile – spart viel Platz */
  .ueber-uns-media   { display: none; }
  .ueber-uns-content { padding-top: 0; }
  .ueber-uns-content .section-title { font-size: 1.5rem; }
  /* Zweiten Absatz ausblenden */
  .ueber-text + .ueber-text { display: none; }
  /* Nur erste 4 Werte zeigen */
  .ueber-werte { grid-template-columns: 1fr; gap: .5rem; margin-top: 1rem; }
  .wert-item:nth-child(n+5) { display: none; }
  .ueber-uns-content .btn { margin-top: 1.25rem !important; width: 100%; justify-content: center; }

  /* ──────────── VORTEILE → kompakte Icon-Karten ──────────── */
  .vorteile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
  }
  .vorteil-card   { padding: 1.25rem 1rem; }
  .vorteil-icon   { width: 40px; height: 40px; margin-bottom: .75rem; }
  .vorteil-card p { display: none; }  /* Beschreibungstext weg */
  .vorteil-card h3 { font-size: .875rem; line-height: 1.3; }

  /* ──────────── ABLAUF ──────────── */
  .ablauf-steps { gap: .75rem; }
  .ablauf-step  { padding: 1.25rem; gap: 1rem; max-width: 100%; }
  .step-content h3 { font-size: 1rem; margin-bottom: .3rem; }
  .step-content p  { font-size: .85rem; line-height: 1.5; }
  .ablauf-cta .btn { width: 100%; justify-content: center; }

  /* ──────────── SERVICEGEBIET ──────────── */
  /* Karten-Placeholder weg */
  .servicegebiet-map { display: none; }
  /* Nur erste 6 Ort-Tags zeigen */
  .ort-tag:nth-child(n+7) { display: none; }
  .servicegebiet-actions { flex-direction: column; gap: .75rem; }
  .servicegebiet-actions .btn { width: 100%; justify-content: center; }

  /* ──────────── KONTAKT ──────────── */
  /* Info-Card weg → wird durch kompakte Leiste ersetzt */
  .kontakt-info      { display: none; }
  /* Kompakte Kontakt-Leiste über dem Formular */
  .kontakt-inner     { gap: 1rem; }
  .kontakt-form-wrap { padding: 1.25rem; border-radius: var(--radius-lg); }
  .kontakt-form-wrap::before {
    content: '';
    display: block;
  }
  /* Schnellkontakt-Banner über Formular */
  .kontakt-mobile-bar {
    display: flex;
    gap: .75rem;
    margin-bottom: 1.5rem;
  }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: 1rem; /* verhindert Auto-Zoom auf iOS */
    padding: .75rem .9rem;
  }
  .form-field textarea { min-height: 90px; rows: 4; }

  /* ──────────── FOOTER ──────────── */
  /* Link-Spalten verstecken – nur Brand + rechtliche Links */
  .footer-links-col { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 1.25rem; padding-bottom: 1.5rem; }
  .footer-desc { font-size: .825rem; margin-bottom: .75rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    text-align: center;
    padding-block: 1.25rem;
  }
  .footer-legal { font-size: .75rem; }

  /* ──────────── MOBILE CTA-BAR ──────────── */
  .mobile-cta-bar { padding: .6rem .875rem; gap: .5rem; }
  .mobile-cta-bar a { font-size: .8125rem; padding: .75rem .75rem; }
}

/* Safe Area für iPhone (Notch / Home-Bar) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-cta-bar {
    padding-bottom: calc(.6rem + env(safe-area-inset-bottom));
  }
  @media (max-width: 767px) {
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
    .mobile-nav-footer {
      padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
    }
  }
}

/* Kontakt-Mobile-Bar: auf Desktop unsichtbar */
.kontakt-mobile-bar { display: none; }
@media (max-width: 767px) {
  .kontakt-mobile-bar { display: flex; }
}

/* ── Utility ── */
html, body { overflow-x: hidden; }
* { -webkit-tap-highlight-color: transparent; }
