/* ===== INTER (lokal gehostet, DSGVO-konform) ===== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

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

:root {
  --primary: #1e5fa8;
  --primary-dark: #164682;
  --accent: #f39200;
  --accent-dark: #d17d00;
  --dark: #1a2332;
  --muted: #5b6b7f;
  --bg: #ffffff;
  --bg-alt: #f5f8fb;
  --border: #e3e9f0;
  --success: #2d9c5f;
  --container: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 35, 50, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 35, 50, 0.15);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--bg);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ===== FOCUS RING ===== */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== SCROLL FADE-IN (only when JS active) ===== */
.js .section__head,
.js .service,
.js .reason,
.js .faq__item,
.js .ueber-uns__content,
.js .ueber-uns__image {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.js .section__head.is-visible,
.js .service.is-visible,
.js .reason.is-visible,
.js .faq__item.is-visible,
.js .ueber-uns__content.is-visible,
.js .ueber-uns__image.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .section__head,
  .js .service,
  .js .reason,
  .js .faq__item,
  .js .ueber-uns__content,
  .js .ueber-uns__image {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: #fff;
  font-size: 14px;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
  gap: 16px;
}

.top-bar__info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar__sep {
  opacity: 0.4;
}

.top-bar__phone {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.top-bar__phone:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 13px;
  }
  .top-bar__sep,
  .top-bar__note {
    display: none;
  }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

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

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

.logo__mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
}

.logo__subtitle {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

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

.nav__item {
  position: relative;
}

.nav__link {
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__arrow {
  font-size: 11px;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav__item--dropdown:hover .nav__arrow,
.nav__item--dropdown.is-open .nav__arrow {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
}

.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--dark);
  transition: background 0.15s ease;
}

.nav__dropdown a:hover {
  background: var(--bg-alt);
}

.nav__dropdown a strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.nav__dropdown a small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '●';
  color: var(--accent);
  margin-right: 8px;
  font-size: 11px;
  vertical-align: middle;
}

.section__head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--dark);
}

.section__head p {
  font-size: 17px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 40px; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Cpath d='M0 44 L44 0' stroke='%231e5fa8' stroke-width='1' opacity='0.12'/%3E%3Cpath d='M-22 22 L22 -22' stroke='%231e5fa8' stroke-width='1' opacity='0.12'/%3E%3Cpath d='M22 66 L66 22' stroke='%231e5fa8' stroke-width='1' opacity='0.12'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #f5f8fb 0%, #e8f0fa 55%, #d9e6f5 100%);
  background-size: 44px 44px, cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 65%;
  background: var(--primary);
  opacity: 0.08;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  content: '●';
  color: var(--accent);
  margin-right: 8px;
  font-size: 11px;
  vertical-align: middle;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
  max-width: 900px;
}

.hero h1 .hl {
  color: var(--primary);
  box-shadow: inset 0 -0.3em 0 rgba(243, 146, 0, 0.25);
}

.hero__lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin-top: 24px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.btn__icon {
  font-size: 22px;
  line-height: 1;
}

.btn__text strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.btn__text small {
  display: block;
  font-size: 12px;
  opacity: 0.85;
  font-weight: 400;
  margin-top: 2px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn--secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero__trust {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.trust-item {
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.trust-item span {
  color: var(--success);
  font-size: 18px;
  margin-right: 6px;
}

@media (max-width: 640px) {
  .hero {
    padding: 56px 0 48px;
  }

  .hero__cta {
    gap: 12px;
  }

  .hero__trust {
    margin-top: 40px;
    gap: 16px 24px;
  }
}

/* ===== ÜBER UNS ===== */
.ueber-uns {
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
  overflow: hidden;
}

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

.ueber-uns__image {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.ueber-uns__image::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -24px;
  right: 24px;
  bottom: -24px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.12;
}

.ueber-uns__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-alt);
}

.ueber-uns__photo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ueber-uns__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
}

.ueber-uns__badge-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.ueber-uns__badge-label {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  opacity: 0.95;
}

.ueber-uns__content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
  line-height: 1.15;
  color: var(--dark);
}

.ueber-uns__lead {
  font-size: 17px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
}

.ueber-uns__content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.ueber-uns__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 24px 0;
  margin: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.ueber-uns__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
}

.btn-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.btn-link:hover {
  color: var(--primary);
}

@media (max-width: 900px) {
  .ueber-uns__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ueber-uns__image::before {
    display: none;
  }
  .ueber-uns__badge {
    right: 0;
    bottom: -16px;
  }
}

@media (max-width: 500px) {
  .ueber-uns__badge {
    position: static;
    margin-top: 16px;
    width: 100%;
  }
  .ueber-uns__stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ===== REASONS / WARUM ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.reason {
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

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

.reason__number {
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 80px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.08;
  line-height: 1;
}

.reason h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  color: var(--dark);
}

.reason h3::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 16px;
  border-radius: 2px;
}

.reason p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}

/* ===== ARBEITSGEBIET ===== */
.gebiet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gebiet-map {
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e3ecf5 100%);
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30, 95, 168, 0.08) 1px, transparent 1px);
  background-size: 16px 16px;
  z-index: 0;
  pointer-events: none;
}

.map-placeholder > * {
  position: relative;
  z-index: 1;
}

.map-placeholder__icon {
  width: 64px;
  height: 64px;
  background: rgba(30, 95, 168, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.map-placeholder__icon svg {
  width: 32px;
  height: 32px;
}

.map-placeholder h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.map-placeholder p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 360px;
  margin-bottom: 20px;
}

.map-placeholder p a {
  color: var(--primary);
  text-decoration: underline;
}

.map-placeholder .btn {
  margin-bottom: 0;
}

.map-placeholder[hidden],
.map-iframe[hidden] {
  display: none !important;
}

.btn--small {
  padding: 12px 20px;
  font-size: 15px;
}

.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gebiet-list h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.gebiet-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin-bottom: 24px;
}

.gebiet-list li {
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: var(--dark);
}

.gebiet-list li::before {
  content: "📍";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}

.gebiet-note {
  padding: 16px;
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--muted);
}

.gebiet-note a {
  color: var(--primary);
  font-weight: 600;
}

.gebiet-note a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .gebiet-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

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

/* ===== FAQ ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq__item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq__item summary {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  list-style: none;
  gap: 16px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::marker {
  display: none;
  content: "";
}

.faq__icon {
  font-size: 24px;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__content {
  padding: 0 24px 24px 24px;
}

.faq__content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

/* ===== LEISTUNGEN / SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service {
  background: var(--bg);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.service:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.service__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(30, 95, 168, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service__icon svg {
  width: 28px;
  height: 28px;
}

.service h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.service--emergency {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-color: transparent;
}

.service--emergency .service__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.service--emergency h3 { color: #fff; }
.service--emergency p { color: rgba(255, 255, 255, 0.92); }

.service--emergency:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

/* ===== KONTAKT ===== */
.kontakt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.kontakt__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontakt-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: border-color 0.2s ease;
}

.kontakt-card:hover {
  border-color: var(--primary);
}

.kontakt-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(30, 95, 168, 0.1);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.kontakt-card--phone .kontakt-card__icon {
  background: var(--accent);
  color: #fff;
}

.kontakt-card small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  font-weight: 600;
}

.kontakt-card strong,
.kontakt-card a {
  display: block;
  font-size: 18px;
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
}

.kontakt-card a:hover {
  color: var(--primary);
}

.kontakt-card span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 400;
}

.kontakt__form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.kontakt__form h2,
.kontakt__form h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input.is-error,
.form-group textarea.is-error,
.form-group select.is-error {
  border-color: #d32f2f;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group--checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form-group--checkbox input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-group--checkbox label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.form-group--checkbox a {
  color: var(--primary);
  text-decoration: underline;
}

.form-disclaimer {
  margin: 6px 0 16px;
  padding-left: 26px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

/* Honeypot: visible to bots, hidden from humans (incl. screen readers) */
.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fdecea;
  color: #b3261e;
  border: 1px solid #f5c2c0;
  font-size: 14px;
  line-height: 1.5;
}

.kontakt__success {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--success);
}

.kontakt__success-icon {
  width: 64px;
  height: 64px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.kontakt__success h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.kontakt__success p {
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.kontakt__success a {
  color: var(--primary);
}

@media (max-width: 900px) {
  .kontakt__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .kontakt__form {
    padding: 28px 24px;
  }
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 48px 0 96px;
  background: var(--bg);
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--dark);
}

.legal-page h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--dark);
}

.legal-page h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--dark);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 15px;
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page a {
  color: var(--primary);
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-page .legal-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-page .back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--primary);
  font-weight: 600;
}

.legal-page .back-link:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 32px 0;
  font-size: 14px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer__brand .logo__mark {
  width: 36px;
  height: 36px;
  font-size: 13px;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .footer__inner {
    justify-content: center;
    text-align: center;
  }
}

/* ===== BEFORE / AFTER SLIDER ===== */
.ba-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ba-tab {
  padding: 12px 24px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ba-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.ba-tab.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.ba-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 12 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #eef3f8;
}

.ba-slider {
  position: absolute;
  inset: 0;
  display: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
  touch-action: none;
}

.ba-slider.is-active {
  display: block;
}

.ba-slider__image {
  position: absolute;
  inset: 0;
}

.ba-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.ba-slider__image--before {
  z-index: 1;
}

.ba-slider__image--after {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.ba-slider__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.ba-slider__knob svg {
  width: 22px;
  height: 22px;
}

.ba-slider__label {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  z-index: 4;
  pointer-events: none;
}

.ba-slider__label--before { left: 20px; }
.ba-slider__label--after { right: 20px; }

@media (max-width: 640px) {
  .ba-tab { font-size: 14px; padding: 10px 18px; }
  .ba-slider__label { font-size: 10px; padding: 4px 10px; letter-spacing: 1px; top: 12px; }
  .ba-slider__label--before { left: 12px; }
  .ba-slider__label--after { right: 12px; }
  .ba-slider__knob { width: 40px; height: 40px; }
  .ba-slider__knob svg { width: 18px; height: 18px; }
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__item {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav__item:last-child {
    border-bottom: none;
  }

  .nav > .nav__link {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    width: 100%;
    justify-content: space-between;
  }

  .nav > .nav__link:last-child {
    border-bottom: none;
  }

  .nav__item .nav__link {
    padding: 16px 4px;
    width: 100%;
    justify-content: space-between;
    font-size: 16px;
  }

  .nav__item--dropdown .nav__dropdown {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: block !important;
  }

  .nav__item--dropdown .nav__dropdown::before {
    display: none !important;
  }

  .nav__item--dropdown.is-open .nav__dropdown {
    max-height: 600px;
  }

  .nav__item--dropdown .nav__dropdown a {
    display: block !important;
    position: static !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px 4px 16px 20px !important;
    margin: 0 !important;
    color: var(--dark) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--border) !important;
    background: transparent !important;
    text-align: left;
  }

  .nav__item--dropdown .nav__dropdown a:last-child {
    border-bottom: none !important;
  }

  .nav__item--dropdown .nav__dropdown a strong {
    display: inline !important;
    color: var(--dark) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav__item--dropdown .nav__dropdown a small {
    display: none !important;
  }
}

/* ============================================= */
/* === SERVICE DETAIL PAGE ==================== */
/* ============================================= */

.service-hero {
  padding: 80px 0 64px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e3ecf5 100%);
  position: relative;
}

.service-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .service-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.service-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.service-hero__eyebrow a {
  color: var(--muted);
  text-decoration: none;
}

.service-hero__eyebrow a:hover {
  color: var(--primary);
}

.service-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--dark);
}

.service-hero__lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.service-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.service-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.service-hero__highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.service-hero__highlight::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.service-hero__visual {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: white;
}

.service-hero__visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-hero__visual-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(26, 35, 50, 0.85);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === WAS WIR ANBIETEN === */

.service-offer {
  padding: 96px 0;
}

@media (max-width: 768px) {
  .service-offer { padding: 64px 0; }
}

.service-offer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .service-offer__grid { grid-template-columns: 1fr; }
}

.offer-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.offer-item__icon {
  width: 36px;
  height: 36px;
  background: rgba(30, 95, 168, 0.1);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-item__icon svg {
  width: 20px;
  height: 20px;
}

.offer-item__content strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.offer-item__content span {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* === UNSER PROZESS === */

.service-process {
  padding: 96px 0;
  background: var(--bg-alt);
}

@media (max-width: 768px) {
  .service-process { padding: 64px 0; }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

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

@media (max-width: 500px) {
  .process-steps { grid-template-columns: 1fr; }
}

.process-step {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.25s ease;
}

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

.process-step__number {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 12px 0 8px;
  color: var(--dark);
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* === CTA BANNER === */

.service-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.service-cta__inner {
  max-width: 680px;
  margin: 0 auto;
}

.service-cta h2 {
  color: white;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.service-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.service-cta .hero__cta {
  justify-content: center;
  margin-top: 0;
}

/* === BREADCRUMB === */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb__separator {
  opacity: 0.5;
}

/* === LEISTUNGEN OVERVIEW CARDS === */

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

@media (max-width: 900px) {
  .leistungen-cards { grid-template-columns: 1fr; gap: 20px; }
}

.leistungen-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  transition: all 0.25s ease;
}

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

.leistungen-card__visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}

.leistungen-card__visual svg,
.leistungen-card__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.leistungen-card:hover .leistungen-card__visual svg,
.leistungen-card:hover .leistungen-card__visual img {
  transform: scale(1.05);
}

.leistungen-card__content {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.leistungen-card__content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.leistungen-card__content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.leistungen-card__link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.2s ease;
  gap: 4px;
}

.leistungen-card:hover .leistungen-card__link {
  gap: 10px;
}

/* ============================================= */
/* === ABOUT US PAGE ========================== */
/* ============================================= */

.about-story {
  padding: 96px 0;
}

@media (max-width: 768px) {
  .about-story { padding: 64px 0; }
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .about-story__grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-story__text h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 24px;
}

.about-story__text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat {
  background: var(--bg-alt);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
}

.about-stat strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.about-stat span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

/* === VALUES GRID === */

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

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

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

.value {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.value:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.value__icon {
  width: 56px;
  height: 56px;
  background: rgba(243, 146, 0, 0.12);
  color: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value__icon svg {
  width: 28px;
  height: 28px;
}

.value h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.value p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* === TEAM GRID === */

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

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

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

.team-member {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

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

.team-member__photo {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
  background: var(--bg-alt);
}

.team-member__photo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.team-member__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(26, 35, 50, 0.85);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-member__info {
  padding: 20px;
}

.team-member__info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.team-member__role {
  display: block;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.team-member__info p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.team-note {
  margin: 32px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  padding: 16px;
  background: rgba(243, 146, 0, 0.06);
  border-radius: var(--radius);
  max-width: 700px;
}

/* ============================================= */
/* === KONTAKT PAGE =========================== */
/* ============================================= */

.notdienst-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
  padding: 28px 0;
}

.notdienst-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.notdienst-banner__content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}

.notdienst-banner__icon {
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}

.notdienst-banner__content strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.notdienst-banner__content span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.notdienst-banner__cta {
  background: white !important;
  color: var(--accent) !important;
  flex-shrink: 0;
}

.notdienst-banner__cta:hover {
  background: var(--bg-alt) !important;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .notdienst-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .notdienst-banner__cta {
    width: 100%;
    justify-content: center;
  }
}

.kontakt-page {
  padding: 72px 0 96px;
}

.kontakt-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .kontakt-page__grid { grid-template-columns: 1fr; gap: 40px; }
}

.kontakt-page__title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}

.kontakt-page__subtitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.kontakt-page__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontakt__form-intro {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
}

.kontakt-map-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.kontakt-map-wrapper .gebiet-map {
  aspect-ratio: 16 / 9;
}

/* ============================================= */
/* === HOME CTA BANNER ======================== */
/* ============================================= */

.home-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.home-cta::after {
  content: "";
  position: absolute;
  right: 50px;
  bottom: -150px;
  width: 300px;
  height: 300px;
  background: rgba(243, 146, 0, 0.1);
  border-radius: 50%;
}

.home-cta__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .home-cta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}

.home-cta__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.home-cta h2 {
  color: white;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.home-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

@media (max-width: 900px) {
  .home-cta p { margin: 0 auto; }
}

.home-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .home-cta__actions {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 500px) {
  .home-cta__actions {
    flex-direction: column;
  }
}

/* === SERVICE CARD AS LINK === */

a.service {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.service--link {
  position: relative;
}

.service__link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
  padding-top: 16px;
  transition: gap 0.2s ease;
  gap: 4px;
}

a.service:hover .service__link {
  gap: 10px;
}

a.service--emergency .service__link {
  color: white;
}

/* ===== COOKIE BANNER & MODAL ===== */
.btn--ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--bg-alt);
  border-color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cookie-banner__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.cookie-banner__text p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
  .cookie-banner__actions .btn {
    flex: 1;
    justify-content: center;
  }
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-modal.is-visible {
  opacity: 1;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0.55);
  backdrop-filter: blur(2px);
}

.cookie-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cookie-modal__header h2 {
  font-size: 20px;
  color: var(--dark);
  margin: 0;
}

.cookie-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.cookie-modal__close:hover {
  background: var(--bg-alt);
  color: var(--dark);
}

.cookie-modal__body {
  padding: 20px 24px;
  overflow-y: auto;
}

.cookie-modal__body > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cookie-cat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
  background: var(--bg-alt);
}

.cookie-cat:last-child {
  margin-bottom: 0;
}

.cookie-cat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.cookie-cat__head strong {
  color: var(--dark);
  font-size: 15px;
}

.cookie-cat p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.cookie-cat__badge {
  background: var(--success);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: #cfd6df;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
}

.cookie-modal__footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.cookie-modal__link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
}

.cookie-modal__actions {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 600px) {
  .cookie-modal__actions {
    width: 100%;
  }
  .cookie-modal__actions .btn {
    flex: 1;
    justify-content: center;
  }
}

body.cookie-modal-open {
  overflow: hidden;
}

.footer__cookie-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.footer__cookie-btn:hover {
  text-decoration: underline;
}

/* ===== REFERENZPROJEKT FIGURE (Vorher/Nachher Slider + Solo-Foto) ===== */
.ref-figure {
  margin: 0 auto;
  max-width: 1100px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: stretch;
}

.ref-figure__media {
  grid-column: 1;
  grid-row: 1;
}

.ref-figure figcaption {
  grid-column: 2;
  grid-row: 1;
}

.ref-figure:nth-of-type(even) {
  grid-template-columns: 1fr 1.4fr;
}

.ref-figure:nth-of-type(even) .ref-figure__media {
  grid-column: 2;
}

.ref-figure:nth-of-type(even) figcaption {
  grid-column: 1;
}

.ref-figure + .ref-figure {
  margin-top: 32px;
}

.ref-figure__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #eef3f8;
}

.ref-figure__media picture,
.ref-figure__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ref-figure__media .ba-slider {
  position: absolute;
  inset: 0;
  display: block;
  cursor: ew-resize;
}

.ref-figure figcaption {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.ref-figure__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.ref-figure figcaption h2,
.ref-figure figcaption h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}

.ref-figure__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .ref-figure {
    grid-template-columns: 1fr;
  }
  .ref-figure__media {
    grid-column: 1;
    grid-row: 1;
  }
  .ref-figure figcaption {
    grid-column: 1;
    grid-row: 2;
    padding: 24px 28px 28px;
  }
}

/* ============================================================
   404 / Error page
   ============================================================ */

.error-page {
  padding: 96px 0;
  background: var(--bg);
  text-align: center;
}

.error-page__inner {
  max-width: 640px;
  margin: 0 auto;
}

.error-page__code {
  display: block;
  font-size: clamp(96px, 16vw, 160px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  margin-bottom: 16px;
}

.error-page h1 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--dark);
}

.error-page p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.error-page__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .error-page {
    padding: 64px 0;
  }
}
