@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

[hidden] { display: none !important; }

/* --- COMIC ACTION DESIGN SYSTEM --- */
:root {
  --primary-blue: #00BBF5;
  --primary-dark: #0A3A8E;
  --retro-yellow:#F0E9B6;
  /*--accent-yellow: #FFD84A;*/
  --accent-yellow: #F0E9B6;
  --accent-yellow-hover: #FFE77A;
  --mint: #84C5B1;
  --mint-dark: #4E9C87;
  --cream: #FFF4D8;
  --cyan-shadow: #159BAA;
  
  --text-dark: #000000;
  --text-light: #FFFFFF;
  --bg-page: #FFFDF6;
  --bg-card: #FFFDF6;
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  /* Borders */
  --border-width: 3px;
  --border-bold: 3px solid #000000;
  --border-color: #000000;
  --radius-comic: 8px;
  
  /* Shadows */
  --shadow-hard: 6px 6px 0px #000000;
  --shadow-button: 4px 4px 0px #000000;
  
  /* Transitions */
  --transition-pop: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-smooth: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-light);
  background-color: var(--bg-page);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-color: var(--bg-page);
}

/* Selection */
::selection {
  background-color: var(--accent-yellow);
  color: #000;
}

/* --- COMIC TEXTURES & EFFECTS --- */
.comic-blue-bg {
  background:
    radial-gradient(circle at 15% 8%, rgba(0, 187, 245, 0.18), transparent 28%),
    radial-gradient(circle at 82% 26%, rgba(132, 197, 177, 0.16), transparent 24%),
    var(--bg-page);
  position: relative;
}

.halftone-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  /* background-image: radial-gradient(rgba(0, 0, 0, 0.12) 1.5px, transparent 1.5px);
  background-size: 16px 16px; */
  pointer-events: none;
  z-index: 1;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* Comic Text Shadows */
.comic-shadow-text {
  text-shadow: 7px 6px 0px var(--cyan-shadow), -1px -1px 0px var(--cyan-shadow), 1px -1px 0px var(--cyan-shadow), -1px 1px 0px var(--cyan-shadow), 1px 1px 0px #000;
}

p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

/* --- UTILITIES --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Slanted Divider Block */
.divider-slanted {
  height: 50px;
  background-color: var(--accent-yellow);
  transform: skewY(-1.8deg);
  margin-top: -25px;
  margin-bottom: -25px;
  position: relative;
  z-index: 10;
  border-top: 3px solid var(--accent-yellow);
  border-bottom: 3px solid var(--accent-yellow);
  box-shadow: 0 8px 20px rgba(0,0,0,0.32);
}

/* --- HEADER --- */
header {
  width: 100%;
  height: 90px;
  background-color: var(--mint);
  border-bottom: 3px solid var(--accent-yellow);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
}

header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-wrap img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.logo-text span {
  color: var(--accent-yellow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
}

.nav-links a {
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  transition: var(--transition-pop);
}

.nav-links a:hover {
  color: #000000;
  background-color: var(--accent-yellow);
  transform: rotate(-2deg);
}

.nav-links a.is-active {
  color: #000000;
  background: var(--accent-yellow);
  border: 2px solid #000000;
  border-radius: 6px;
  box-shadow: 2px 2px 0 #000000;
  transform: rotate(-1deg);
}

.nav-meta {
  display: flex;
  align-items: center;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-yellow);
  color: #000000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 10px 20px;
  border: 3px solid #000000;
  border-radius: 50px;
  box-shadow: 3px 3px 0px #000;
  transition: var(--transition-pop);
}

.phone-badge:hover {
  transform: scale(1.05) rotate(1deg);
  background-color: var(--accent-yellow-hover);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  text-decoration: none;
  border: var(--border-bold);
  border-radius: var(--radius-comic);
  cursor: pointer;
  box-shadow: var(--shadow-button);
  transition: var(--transition-pop);
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px #000000;
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #000000;
}

.btn-yellow {
  background-color: var(--accent-yellow);
  color: #000000;
}

.btn-yellow:hover {
  background-color: var(--accent-yellow-hover);
}

.btn-black {
  background-color: var(--cyan-shadow);
  color: #FFFFFF;
}

.btn-yellow-light {
  background-color: var(--accent-yellow);
  color: #000000;
  border-radius: 4px;
}

/* --- HERO SECTION --- */
.hero {
  padding-top: 80px;
  padding-bottom: 110px;
  overflow: hidden;
  position: relative;
  border-bottom: 3px solid #000000;
  background:
    radial-gradient(circle at 21% 35%, rgba(0, 187, 245, 0.2), transparent 28%),
    linear-gradient(135deg, #07111F 0%, #0B213D 54%, #07111F 100%);
}



.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Left Hero: Mascot + LKW */
.hero-illustrations {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (max-width: 992px) {
  .hero-illustrations {
    height: 380px;
  }
}

.hero-illustrations .img-truck {
  position: absolute;
  left: -330px;
  bottom: -210px;
  width: 120%;
  max-width: 620px;
  z-index: 3;
  filter: drop-shadow(5px 5px 0px #000);
  animation: slideInTruck 1.4s cubic-bezier(0.25, 1, 0.5, 1) 0.2s both;
}

@keyframes slideInTruck {
  0% {
    transform: translateX(-150%) rotate(-3deg);
  }
  70% {
    transform: translateX(5%) rotate(1deg);
  }
  85% {
    transform: translateX(-2%) rotate(-0.5deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

.hero-illustrations .img-gorilla {
  position: absolute;
  right: 0px;
  bottom: -230px;
  height: 185%;
  z-index: 4;
  filter: drop-shadow(8px 8px 0px #000);
  animation: slideUpGorilla 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.4s both;
}

@keyframes slideUpGorilla {
  0% {
    transform: translateY(150px) scale(0.95);
    opacity: 0;
  }
  75% {
    transform: translateY(-10px) scale(1.02);
    opacity: 1;
  }
  90% {
    transform: translateY(3px) scale(0.99);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}



@keyframes pulse-slow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05) rotate(-10deg); }
}

/* Right Hero: Headline and texts */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .hero-content {
    align-items: center;
  }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 0.95;
  color: #FFFFFF;
  transform: skewY(-2.5deg) rotate(-1deg);
  margin-bottom: 24px;
}

.hero-title span {
  font-size: clamp(3.2rem, 10.5vw, 6.8rem);
  color: var(--accent-yellow);
  display: block;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-sub span {
  color: var(--accent-yellow);
}

.hero-local-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  margin: -8px 0 24px;
}

.hero-bullet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin-bottom: 36px;
}

@media (max-width: 992px) {
  .hero-bullet-list {
    justify-content: center;
  }
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}

.hero-bullet-item svg {
  color: var(--accent-yellow);
}

.hero-bullet-item {
  color: var(--cream);
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

@media (max-width: 576px) {
  
  .service-hero {
      padding: 30px 0 9px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}

/* --- SECTION: UNSERE MISSIONEN --- */
.missions-section {
  background-color: white;
  padding: 100px 0;
  border-bottom: 3px solid #000000;
}

.section-headline-wrap {
  margin-bottom: 50px;
}

.section-headline-wrap h2 {
  font-size: 2.8rem;
  margin-bottom: 8px;
  color: white;
}

.section-headline-wrap p {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
}

.missions-section .section-headline-wrap h2,
.cta-strip-content h2 {
  color: #000000;
}

.missions-section .section-headline-wrap p {
  color: #10231e;
}

.missions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .missions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .missions-grid {
    grid-template-columns: 1fr;
  }
  .comic-shadow-text {
      text-shadow: 3px 4px 0px var(--cyan-shadow), -1px -1px 0px var(--cyan-shadow), 1px -1px 0px var(--cyan-shadow), -1px 1px 0px var(--cyan-shadow), 1px 1px 0px #000;
  }
}

@media (max-width: 576px) {
  .missions-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mission-card {
 background-color: var(--bg-card);
 border: solid 2px var(--cyan-shadow);
 border-radius: 16px;
 color: #000000;
 overflow: hidden;
 box-shadow: 6px 6px 0px var(--cyan-shadow);
 transition: var(--transition-pop);
}

.mission-card:hover {
   border-color: var(--mint);
  box-shadow: 6px 6px 0px var(--mint);
}

.mission-featured {
  background: linear-gradient(180deg, #ffffff, #fffaf0);
}

.mission-card-body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
}

.mission-card-head {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.mission-card-head > div:last-child {
  min-width: 0;
}

.mission-icon-box {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 14px;
  box-shadow: 2px 2px 0px #000000;
}

.mission-icon-box img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 180ms ease;
}

.mission-card:hover .mission-icon-box img {
  transform: translateY(-3px) scale(1.06);
}

.mission-card-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-blue);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  color: #000000;
  background: var(--accent-yellow);
  border: 2px solid #000000;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-card h3 {
  color: #000000;
  font-size: clamp(1.32rem, 1.7vw, 1.55rem);
  margin-bottom: 0;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.mission-card p {
  color: #24302d;
  font-size: 0.96rem;
  font-weight: 650;
  margin-bottom: 18px;
}

.mission-card ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.mission-card li {
  position: relative;
  padding-left: 24px;
  color: #000000;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}

.mission-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--primary-blue);
  border: 2px solid #000000;
  border-radius: 999px;
}

.mission-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 46px;
  width: 100%;
  padding: 0 16px;
  color: #000000;
  background: #ffffff;
  border: var(--border-bold);
  border-radius: var(--radius-comic);
  box-shadow: 3px 3px 0px #000000;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-pop);
}

.mission-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px #000000;
  background: var(--accent-yellow-hover);
}

.center-btn-wrap {
  text-align: center;
  margin-top: 30px;
}

/* --- SECTION: SO FUNKTIONIERT'S --- */
.process-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 187, 245, 0.14), transparent 28%),
    #07111F;
  border-bottom: 3px solid #000000;
}

.mission-control {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 64px;
}

.mission-log,
.mission-control-visual {
  border: var(--border-bold);
  border-radius: 18px;
  box-shadow: 7px 7px 0px #000000;
}

.mission-log {
  padding: clamp(22px, 4vw, 34px);
  color: #000000;
  background: #fffdf6;
}

.mission-log-top {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 9px 12px;
  color: #ffffff;
  background: #000000;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-dot {
  width: 11px;
  height: 11px;
  background: #23d46f;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(35, 212, 111, 0.22);
}

.mission-timeline {
  display: grid;
  gap: 0;
  margin-bottom: 28px;
}

.mission-timeline article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  position: relative;
  padding-bottom: 26px;
}

.mission-timeline article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 54px;
  bottom: 8px;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    #000000 0 8px,
    transparent 8px 14px
  );
  transform-origin: top;
}

.timeline-number {
  display: grid;
  place-items: center;
  width: 62px;
  height: 54px;
  background: var(--primary-blue);
  border: var(--border-bold);
  border-radius: 12px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 3px 3px 0px #000000;
}

.mission-timeline h3 {
  color: #000000;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-bottom: 6px;
}

.mission-timeline p {
  color: #24302d;
  font-weight: 650;
  max-width: 620px;
}

.mission-control-visual {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 20px;
  background: #ffffff;
  overflow: hidden;
}

.control-screen {
  position: relative;
  min-height: 390px;
  background:
    radial-gradient(circle at 70% 20%, rgba(240, 233, 182, 0.75), transparent 28%),
    #ffffff;
  border: var(--border-bold);
  border-radius: 14px;
  overflow: hidden;
}

.control-screen img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: contain;
  padding: 28px;
  filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.25));
}

.control-chip {
  position: absolute;
  padding: 9px 12px;
  background: var(--accent-yellow);
  border: var(--border-bold);
  border-radius: 999px;
  box-shadow: 3px 3px 0px #000000;
  color: #000000;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chip-top {
  top: 18px;
  left: 18px;
}

.chip-bottom {
  right: 18px;
  bottom: 18px;
}

.control-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.control-panel div {
  padding: 14px;
  color: #000000;
  background: #ffffff;
  border: var(--border-bold);
  border-radius: 12px;
}

.control-panel span {
  display: block;
  margin-bottom: 4px;
  color: #18322b;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.control-panel strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* Trust / Reviews strip */
.trust-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .mission-control {
    grid-template-columns: 1fr;
  }
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .trust-badges-grid {
    grid-template-columns: 1fr;
  }
}

.trust-badge-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 2px solid rgba(255, 255, 255, 0.16);
  padding: 16px 24px;
  border-radius: var(--radius-comic);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-yellow);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px #000;
  flex-shrink: 0;
}

.trust-badge-info h4 {
  font-size: 1.25rem;
  color: var(--accent-yellow);
}

.trust-badge-info p {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Speach Bubble Testimonial */
.speech-bubble-wrapper {
  position: relative;
}

.speech-bubble {
  background-color: #FFFFFF;
  border: var(--border-bold);
  border-radius: var(--radius-comic);
  color: #000000;
  padding: 24px 30px;
  box-shadow: 6px 6px 0px #000000;
  position: relative;
}

.speech-bubble .bubble-head {
  border-bottom-color: #000000;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 40px;
  border-width: 20px 20px 0 0;
  border-style: solid;
  border-color: #FFFFFF transparent;
  display: block;
  width: 0;
}

.speech-bubble::before {
  content: '';
  position: absolute;
  bottom: -24px;
  right: 38px;
  border-width: 22px 22px 0 0;
  border-style: solid;
  border-color: #000000 transparent;
  display: block;
  width: 0;
}

.bubble-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.bubble-head h4 {
  color: #000000;
  font-size: 1.1rem;
}

.bubble-stars {
  color: var(--accent-yellow);
}

.speech-bubble p {
  font-style: italic;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
}

.bubble-author {
  text-align: right;
  font-weight: 800;
  font-size: 0.85rem;
}

/* --- SECTION: VORHER / NACHHER --- */
.before-after-section {
  padding: 100px 0;
  border-bottom: 3px solid #000000;
  background: var(--bg-card)
}
.before-after-section h2, .before-after-section p{
  color: var(--text-dark)
}
.ba-toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.ba-toggle-card {
  overflow: hidden;
  color: #000000;
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 16px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.86);
}

.ba-toggle-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #000000;
  border: 0;
}

.ba-toggle-button img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.ba-toggle-button:hover img,
.ba-toggle-button:focus-visible img {
  filter: contrast(1.08) saturate(1.04);
  transform: scale(1.025);
}

.ba-toggle-button:focus-visible {
  outline: 4px solid var(--accent-yellow);
  outline-offset: -8px;
}

.ba-click-hint {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 8px 12px;
  color: #000000;
  background: var(--accent-yellow);
  border: 2px solid #000000;
  border-radius: 999px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.9);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-toggle-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  align-items: center;
  padding: 17px 18px 18px;
  background:
    linear-gradient(135deg, #ffffff 0%, #ffffff 58%, rgba(240, 233, 182, 0.62) 100%);
  border-top: 3px solid #000000;
}

.ba-toggle-room {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 900;
}

.ba-toggle-state {
  padding: 8px 13px;
  color: #000000;
  background: var(--accent-yellow);
  border: 2px solid #000000;
  border-radius: 999px;
  box-shadow: 2px 2px 0px #000000;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ba-toggle-card.is-after .ba-toggle-state {
  color: #ffffff;
  background: var(--primary-blue);
}

/* --- SECTION: BEREIT FÜR DEINE MISSION? (CTA STRIP) --- */
.cta-strip-section {
  background-color: var(--accent-yellow);
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  padding: 40px 0;
  position: relative;
  isolation: isolate;
  overflow: visible;
}

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

.cta-strip-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .cta-strip-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.cta-strip-content h2 {
  color: #000000;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  margin-bottom: 12px;
  text-shadow: none;
}

.cta-strip-content p {
  color: #000000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.cta-strip-content .btn-black {
  background-color: #000000;
}

.cta-strip-bullets {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .cta-strip-bullets {
    justify-content: center;
  }
}

.cta-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: #000000;
}

.cta-bullet svg {
  color: #000000;
}

.cta-strip-visual {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.cta-strip-visual img {
  height: 512px;
  width: auto;
  position: absolute;
  bottom: -110px;
  filter: drop-shadow(4px 4px 0px #000);
}

/* --- FOOTER --- */
footer {
  background-color: #050A14;
  color: #888888;
  padding: 60px 0 30px 0;
  border-top: 3px solid var(--accent-yellow);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  margin-bottom: 40px;
}

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

.footer-logo-wrap img {
  height: 90px !important;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
}

.footer-links-row a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: var(--transition-pop);
}

.footer-links-row a:hover {
  color: var(--accent-yellow);
}

.footer-socials {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-socials a {
  color: #FFFFFF;
  font-size: 1.2rem;
  transition: var(--transition-pop);
}

.footer-socials a:hover {
  color: var(--accent-yellow);
  transform: scale(1.1);
}

.footer-bottom-row {
  border-top: 1px solid #222222;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
   
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }
}

.footer-bottom-row p {
  font-size: 0.85rem;
  color: #666666;
}

/* Attribution */
.footer-df-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--accent-yellow);
  color: #000000;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px #000;
  transition: var(--transition-pop);
}

.footer-df-badge:hover {
  transform: translateY(-2px);
  background-color: var(--accent-yellow-hover);
}

/* --- CONTACT MODAL (FOR INQUIRIES) --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-color: rgba(0, 8, 20, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: #FFFFFF;
  border: var(--border-bold);
  border-radius: var(--radius-comic);
  color: #000000;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  box-shadow: 10px 10px 0px #000000;
  position: relative;
  transform: scale(0.9) rotate(-1deg);
  transition: var(--transition-pop);
}

.modal-overlay.active .modal-card {
  transform: scale(1) rotate(0deg);
}

.modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: 900;
}

.modal-card h2 {
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-size: 2rem;
}

.modal-card p {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 24px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: var(--border-bold);
  border-radius: 4px;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  background-color: #f7f9fc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 187, 245, 0.22);
}

.modal-card button[type="submit"] {
  width: 100%;
}



/* --- KONTAKT KOMPAKT HERO --- */
.contact-compact-hero {
  padding: 38px 0 44px;
}

.contact-compact-hero .breadcrumb {
  margin-bottom: 14px;
}

.contact-compact-hero .hero-title {
  font-size: clamp(1.75rem, 3.4vw, 2.45rem);
  line-height: 1.04;
  margin-bottom: 12px;
  transform: none;
}

.contact-compact-hero .hero-title span {
  display: inline;
  font-size: inherit;
}

.contact-compact-hero .hero-sub {
  margin-bottom: 18px;
}

@media (max-width: 560px) {
  .service-hero {
      padding: 30px 0 9px; !important
  }
  .contact-compact-hero {
    padding: 32px 0 40px;
  }

  .contact-compact-hero .hero-title {
    font-size: 1.85rem;
  }
}

/* --- WERTANRECHNUNG HERO --- */
.value-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 74px;
  color: #000000;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 253, 246, 0.96) 48%, rgba(240, 233, 182, 0.92) 100%);
  border-bottom: 3px solid #000000;
}

.value-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.05) 2px, transparent 2px), linear-gradient(90deg, rgba(0, 0, 0, 0.05) 2px, transparent 2px);
  background-size: 36px 36px;
  opacity: 0.55;
  pointer-events: none;
}

.value-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.value-hero .breadcrumb {
  color: rgba(0, 0, 0, 0.52);
}

.value-hero .breadcrumb a {
  color: rgba(0, 0, 0, 0.62);
}

.value-hero .breadcrumb-current {
  color: var(--primary-dark);
}

.value-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: #000000;
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #000000;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-title {
  max-width: 780px;
  color: #000000;
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.value-sub {
  max-width: 650px;
  color: #1e2725;
  font-size: clamp(1.03rem, 1.6vw, 1.24rem);
  font-weight: 750;
  margin-bottom: 28px;
}

.value-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.value-hero-visual {
  position: relative;
  min-height: 430px;
}

.value-card {
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 18px;
  box-shadow: 8px 8px 0 #000000;
}

.value-card-main {
  position: relative;
  z-index: 1;
  padding: 22px;
  transform: rotate(1.5deg);
}

.value-card-top,
.value-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.value-card-top {
  padding-bottom: 16px;
  border-bottom: 3px solid #000000;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.value-card-top span {
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.value-card-top strong {
  color: #000000;
  font-size: 1.45rem;
}

.value-object-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}

.value-object-row img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  padding: 10px;
  background: var(--retro-yellow);
  border: 2px solid #000000;
  border-radius: 14px;
}

.value-object-row span,
.value-total span {
  display: block;
  color: #303030;
  font-size: 0.82rem;
  font-weight: 800;
}

.value-object-row strong {
  display: block;
  color: #000000;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-object-row b {
  color: var(--mint-dark);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  white-space: nowrap;
}

.value-total {
  margin-top: 18px;
  padding: 18px;
  color: #000000;
  background: var(--accent-yellow);
  border: 3px solid #000000;
  border-radius: 14px;
}

.value-total strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.value-card-stamp {
  position: absolute;
  right: -18px;
  top: -24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-height: auto;
  padding: 12px 16px;
  background: var(--primary-blue);
  color: #000000;
  border-radius: 999px;
  transform: rotate(4deg);
}

.value-card-stamp img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.value-card-stamp span {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .value-hero {
    padding: 42px 0 64px;
  }

  .value-hero-grid {
    grid-template-columns: 1fr;
  }

  .value-hero-visual {
    min-height: 0;
  }

  .value-card-main {
    transform: none;
  }

  .value-card-stamp {
    right: 8px;
    top: -18px;
  }
}

@media (max-width: 560px) {
  .value-title {
    font-size: 2.3rem;
  }

  .value-hero-actions .btn {
    width: 100%;
  }

  .value-object-row {
    grid-template-columns: 54px 1fr;
  }

  .value-object-row img {
    width: 52px;
    height: 52px;
  }

  .value-object-row b {
    grid-column: 2;
  }

  .value-total {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* --- WERTANRECHNUNG FOKUS --- */
.value-focus-section {
  padding: 86px 0 96px;
  background: #ffffff;
  border-bottom: 3px solid #000000;
}

.value-focus-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.value-focus-head span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  color: #000000;
  background: var(--accent-yellow);
  border: 3px solid #000000;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #000000;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-focus-head h2 {
  color: #000000;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  margin-bottom: 14px;
}

.value-focus-head p {
  color: #26302e;
  font-size: 1.05rem;
  font-weight: 700;
}

.value-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.value-focus-card {
  overflow: hidden;
  color: #000000;
  background: var(--bg-card);
  border: 3px solid #000000;
  border-radius: 18px;
  box-shadow: 7px 7px 0 #000000;
}

.value-focus-card figure {
  position: relative;
  height: 320px;
  margin: 0;
  overflow: hidden;
  background: #f5f5f5;
  border-bottom: 3px solid #000000;
}

.value-focus-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.value-focus-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-focus-card-alt img {
  object-position: center 45%;
}

.value-focus-body {
  padding: 26px;
}

.value-focus-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  color: #000000;
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 999px;
  box-shadow: 2px 2px 0 #000000;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-focus-body h3 {
  color: #000000;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1;
  margin-bottom: 12px;
}

.value-focus-body p {
  color: #2f3634;
  font-weight: 700;
  margin-bottom: 18px;
}

.value-focus-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-focus-body li {
  position: relative;
  padding-left: 24px;
  color: #000000;
  font-weight: 800;
  line-height: 1.35;
}

.value-focus-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--primary-blue);
  border: 2px solid #000000;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .value-focus-grid {
    grid-template-columns: 1fr;
  }

  .value-focus-card figure {
    height: 300px;
  }
}

@media (max-width: 560px) {
  .value-focus-section {
    padding: 64px 0 74px;
  }

  .value-focus-card {
    border-radius: 14px;
    box-shadow: 4px 4px 0 #000000;
  }

  .value-focus-card figure {
    height: 240px;
  }

  .value-focus-body {
    padding: 20px;
  }
}


/* --- WERTANRECHNUNG REALITY CHECK --- */
.value-reality-section {
  padding: 88px 0 96px;
  background:
    linear-gradient(135deg, #07111f 0%, #0b213d 58%, #07111f 100%);
  border-bottom: 3px solid #000000;
}

.value-reality-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.value-reality-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: #000000;
  background: var(--accent-yellow);
  border: 3px solid #000000;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #000000;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-reality-copy h2 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  margin-bottom: 18px;
}

.value-reality-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-weight: 650;
}

.value-reality-panel {
  display: grid;
  gap: 14px;
}

.value-reality-note {
  padding: 20px;
  color: #000000;
  background: #ffffff;
  border: 3px solid #000000;
  border-radius: 14px;
  box-shadow: 5px 5px 0 #000000;
}

.value-reality-note.is-good {
  background: var(--accent-yellow);
}

.value-reality-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-reality-note p {
  color: #27302e;
  font-size: 0.96rem;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 900px) {
  .value-reality-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .value-reality-section {
    padding: 68px 0 76px;
  }

  .value-reality-note {
    box-shadow: 4px 4px 0 #000000;
  }
}


/* --- UNTERSEITEN (SUBPAGES) --- */
.subpage-hero {
  padding: 60px 0 70px;
  background: linear-gradient(135deg, #07111F 0%, #0B213D 54%, #07111F 100%);
  border-bottom: 3px solid #000;
  position: relative;
  overflow: hidden;
}

.subpage-hero .hero-title { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 16px; }
.subpage-hero .hero-sub { font-size: 1.1rem; margin-bottom: 24px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-yellow); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }
.breadcrumb-current { color: var(--accent-yellow); }

.content-section {
  padding: 80px 0;
  background: white;
  border-bottom: 3px solid #000;
}

.content-section h2 { color: #000; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.content-section h3 { color: #000; font-size: 1.3rem; margin-bottom: 12px; }
.content-section p { color: #333; margin-bottom: 16px; }

.content-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

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

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: #f8fbfe;
  border: 2px solid #000;
  border-radius: 8px;
  box-shadow: 3px 3px 0 #000;
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-sans);
}

.service-list li::before { content: "✓"; color: var(--primary-blue); font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }

.trust-section {
  padding: 56px 0;
  background: var(--bg-page);
}

.trust-section .section-headline-wrap h2 {
  color: #000;
}

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

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

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

.trust-item {
  padding: 20px;
  background: white;
  border: 3px solid #000;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #000;
}

.trust-item-icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.trust-item h4 { color: #000; font-size: 1rem; margin-bottom: 6px; }
.trust-item p { color: #444; font-size: 0.88rem; margin: 0; font-weight: 500; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.contact-card {
  background: white;
  border: 3px solid #000;
  border-radius: 16px;
  box-shadow: 6px 6px 0 #000;
  padding: 32px;
}

.contact-card h2 { color: #000; font-size: 1.6rem; margin-bottom: 24px; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.contact-info-item:last-child { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-yellow);
  border: 2px solid #000;
  border-radius: 10px;
  font-size: 1.3rem;
  box-shadow: 2px 2px 0 #000;
  flex-shrink: 0;
}

.legal-section { padding: 80px 0; background: white; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h1 { color: #000; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }
.legal-content .legal-intro { color: #555; font-size: 1rem; margin-bottom: 40px; border-bottom: 2px solid #eee; padding-bottom: 24px; }
.legal-content h2 { color: #000; font-size: 1.25rem; margin: 36px 0 12px; }
.legal-content h3 { color: #000; font-size: 1.05rem; margin: 20px 0 8px; }
.legal-content p { color: #333; font-size: 0.95rem; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content li { color: #333; font-size: 0.95rem; margin-bottom: 6px; }
.legal-content a { color: var(--primary-blue); text-decoration: underline; }

/* --- MOBILE & RESPONSIVE OPTIMIZATIONS --- */

@media (max-width: 992px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .hero-content {
    order: 1;
  }
  .hero-illustrations {
    order: 2;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: 300px;
    overflow: visible;
  }
  .hero-illustrations .img-truck {
    left: -120px;
    bottom: -150px;
    width: 110%;
    max-width: 450px;
  }
  .hero-illustrations .img-gorilla {
    right: -20px;
    bottom: -160px;
    height: 155%;
  }
  
  .cta-strip-section {
    padding: 50px 0;
  }
  .cta-strip-content h2 {
    font-size: 2.2rem;
  }
  .cta-strip-content p {
    font-size: 1.2rem;
  }
  .cta-strip-bullets {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
  
  header {
    height: 70px;
  }
  .logo-wrap img {
    height: 55px;
  }
  .phone-badge {
    font-size: 0.85rem;
    padding: 6px 12px;
    border-width: 2px;
    box-shadow: 2px 2px 0px #000;
  }
  
  .hero {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .hero-illustrations {
    height: 220px;
  }
  .hero-illustrations .img-truck {
    left: -80px;
    bottom: -95px;
    width: 110%;
    max-width: 340px;
  }
  .hero-illustrations .img-gorilla {
    right: -10px;
    bottom: -100px;
    height: 180%;
  }
  
  .hero-bullet-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .missions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .mission-card {
    box-shadow: none;
  }
  .mission-card-body {
    padding: 20px;
  }
  .mission-card-head {
    grid-template-columns: 64px 1fr;
    gap: 14px;
  }
  .mission-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    box-shadow: 3px 3px 0px #000000;
  }
  .mission-icon-box img {
    width: 42px;
    height: 42px;
  }
  
  .mission-control {
    gap: 22px;
    margin-bottom: 46px;
  }
  .mission-log,
  .mission-control-visual {
    border-radius: 14px;
    box-shadow: 4px 4px 0px #000;
  }
  .mission-timeline article {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }
  .mission-timeline article:not(:last-child)::after {
    left: 25px;
    top: 50px;
  }
  .timeline-number {
    width: 52px;
    height: 48px;
    font-size: 1rem;
  }
  .control-screen {
    min-height: 300px;
  }
  .control-screen img {
    min-height: 300px;
    padding: 22px;
  }
  .control-panel {
    grid-template-columns: 1fr;
  }
  
  .trust-badges-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .trust-badge-card {
    padding: 12px 8px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .trust-badge-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .trust-badge-info h4 {
    font-size: 1.1rem;
  }
  .trust-badge-info p {
    font-size: 0.65rem;
    line-height: 1.2;
  }
  
  .speech-bubble {
    padding: 16px 20px;
    box-shadow: 4px 4px 0px #000;
  }
  .speech-bubble p {
    font-size: 0.85rem;
  }
  .speech-bubble::after {
    right: 20px;
  }
  .speech-bubble::before {
    right: 18px;
  }
  
  .ba-toggle-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ba-toggle-card {
    border-radius: 12px;
    box-shadow: 4px 4px 0px #000000;
  }
  .ba-toggle-button img {
    height: 310px;
  }
  .ba-toggle-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .ba-toggle-state {
    justify-self: start;
  }
  
  .cta-strip-visual {
    height: 140px;
    margin-top: 10px;
  }
  .cta-strip-visual img {
    height: 160px;
    bottom: -20px;
  }
  
  .footer-links-row {
    gap: 12px 16px;
  }
  .footer-links-row a {
    font-size: 0.8rem;
  }
  .footer-socials {
    gap: 16px;
  }
  .footer-bottom-row p {
    font-size: 0.75rem;
  }
  
  .modal-card {
    padding: 24px 16px;
    width: 95%;
    box-shadow: 6px 6px 0px #000;
  }
  .modal-card h2 {
    font-size: 1.6rem;
  }
  .modal-card p {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
  .form-group {
    margin-bottom: 12px;
  }
  .form-group label {
    font-size: 0.75rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
}

/* --- FAQ SECTION --- */
.faq-section {
  padding: 64px 0;
  background: var(--primary-dark);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 3px solid #000;
  border-radius: 8px;
  box-shadow: 2px 2px 0 #000;
  overflow: hidden;
}
.faq-question {
  gap: 18px;
  padding: 18px 20px 18px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #000;
  background: var(--mint);
  border: 2px solid #000;
  border-radius: 999px;
  box-shadow: 1px 1px 0 #000;
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
  background: var(--accent-yellow);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  filter: none;
  opacity: 1;
  transform: none;
  transition: max-height 260ms ease;
}

.faq-item[open]:not(.is-closing) .faq-answer {
  max-height: 1000px;
}

.faq-answer p {
  padding: 0 0 20px;
  margin: 0;
  color: #333;
  font-weight: 400;
}


/* --- DESIGN QA POLISH --- */
@media (max-width: 992px) {
  .hero-content {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .hero-bullet-list,
  .cta-strip-bullets {
    justify-content: flex-start;
    text-align: left;
  }

  .subpage-hero .container {
    max-width: 860px;
  }

  .subpage-hero .hero-bullet-list {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .section-headline-wrap {
    margin-bottom: 34px;
  }

  .section-headline-wrap h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 0.98;
  }

  .content-section,
  .missions-section,
  .process-section,
  .before-after-section {
    padding: 66px 0;
  }

  .subpage-hero {
    padding: 44px 0 54px;
  }

  .subpage-hero .hero-title {
    font-size: clamp(2.05rem, 9vw, 2.9rem);
    line-height: 0.98;
  }

  .subpage-hero .hero-sub {
    max-width: 620px;
    font-size: 1.12rem;
    line-height: 1.35;
  }

  .content-grid-2 {
    gap: 34px;
  }

  .contact-card,
  .trust-item,
  .service-list li {
    box-shadow: 4px 4px 0 #000000;
  }
}

@media (max-width: 576px) {
  header .container {
    gap: 10px;
  }

  .phone-badge span {
    white-space: nowrap;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
  }

  .hero-title {
    font-size: clamp(2.35rem, 13vw, 2.2rem);
    line-height: 0.92;
    margin-bottom: 18px;
  }

  .hero-title span {
    font-size: clamp(3.05rem, 21vw, -0.35rem);
  }

  .hero-sub {
    font-size: 1.18rem;
    line-height: 1.3;
  }

  .hero-bullet-list,
  .cta-strip-bullets {
    align-items: flex-start !important;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
    text-align: left;
  }

  .hero-bullet-item,
  .cta-bullet {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.03rem;
    line-height: 1.2;
  }

  .hero-bullet-item svg,
  .cta-bullet svg {
    flex: 0 0 auto;
    margin-top: 1px;
  }

  .contact-compact-hero .hero-title {
    font-size: 2.15rem;
    line-height: 1.02;
  }

  .contact-compact-hero .hero-title span {
    display: inline;
    font-size: inherit;
  }

  .subpage-hero .hero-bullet-list {
    margin-bottom: 0;
  }

  .mission-card {
    box-shadow: 4px 4px 0 #000000;
  }

  .trust-badges-grid {
    grid-template-columns: 1fr;
  }

  .trust-badge-card {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
  }

  .contact-card {
    padding: 22px;
    border-radius: 14px;
  }

  .contact-info-item {
    align-items: flex-start;
  }
}


/* --- SUBPAGE HERO NORMALIZATION --- */
.subpage-hero .hero-title span {
  display: inline;
  font-size: inherit;
}

.subpage-hero .hero-bullet-list {
  max-width: 980px;
}

.subpage-hero .hero-buttons {
  flex-wrap: wrap;
}

.content-section .cta-strip-grid {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

.content-section .cta-strip-visual {
  min-height: 180px;
  overflow: hidden;
}

.content-section .cta-strip-visual img {
  height: 310px;
  bottom: -86px;
}

@media (max-width: 992px) {
  .content-section .cta-strip-grid {
    text-align: left;
  }

  .content-section .cta-strip-visual {
    display: none;
  }
}

@media (max-width: 576px) {
  .subpage-hero .hero-title {
    transform: none;
  }

  .subpage-hero .hero-buttons {
    width: 100%;
  }

  .subpage-hero .hero-buttons .btn {
    width: 100%;
  }
}

/* --- FINAL QA FIXES: SUBPAGE HERO + DARK TEASERS --- */
.subpage-hero {
  padding: 68px 0 86px;
}

.subpage-hero .hero-title {
  max-width: 1120px;
  font-size: clamp(2.6rem, 5.4vw, 5.1rem);
  line-height: 1.02;
  transform: none;
  margin-bottom: 20px;
}

.subpage-hero .hero-title span {
  display: inline;
  font-size: inherit;
  color: var(--accent-yellow);
}

.subpage-hero .hero-sub {
  position: relative;
  z-index: 1;
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(1.16rem, 1.55vw, 1.36rem);
  line-height: 1.32;
  margin-bottom: 28px;
}

.subpage-hero .hero-bullet-list {
  justify-content: flex-start;
  gap: 18px 26px;
  max-width: 1000px;
}

.subpage-hero .hero-bullet-item {
  font-size: 1rem;
}

.content-section .cta-strip-grid {
  grid-template-columns: 1fr;
  max-width: 920px;
}

.content-section .cta-strip-content h2 {
  color: #ffffff;
  text-shadow: none;
}

.content-section .cta-strip-content p,
.content-section .cta-bullet {
  color: rgba(255, 255, 255, 0.88);
}

.content-section .cta-bullet svg {
  color: var(--accent-yellow);
}

.content-section .cta-strip-visual {
  display: none;
}

.cta-strip-section {
  overflow: hidden;
}

.cta-strip-section .cta-strip-visual img {
  bottom: -92px;
}

@media (max-width: 768px) {
  .subpage-hero {
    padding: 48px 0 62px;
  }

  .subpage-hero .hero-title {
    font-size: clamp(2.2rem, 9.8vw, 3.35rem);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .subpage-hero .hero-sub {
    font-size: 1.12rem;
    margin-bottom: 24px;
  }
}

@media (max-width: 576px) {
  .subpage-hero .hero-bullet-list {
    align-items: flex-start;
    width: 100%;
    gap: 11px;
  }

  .subpage-hero .hero-bullet-item {
    width: 100%;
    font-size: 1.06rem;
  }
}

/* --- FINAL MOBILE OVERFLOW FIXES --- */
@media (max-width: 576px) {
  header .container {
    padding: 0 14px;
  }

  .phone-badge {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
  }

  .phone-badge span {
    font-size: 0;
    line-height: 1;
  }

  .phone-badge span::before {
    content: none;
  }

  .nav-meta {
    display: none;
  }

  main,
  section,
  .container,
  .content-grid-2,
  .mission-control,
  .trust-grid,
  .service-list,
  .hero-bullet-list {
    min-width: 0;
    max-width: 100%;
  }

  .content-section p,
  .legal-content p,
  .mission-timeline p,
  .trust-item p {
    overflow-wrap: break-word;
  }

  .subpage-hero {
    overflow: hidden;
  }

  .subpage-hero .hero-title {
    max-width: 100%;
    font-size: clamp(1.82rem, 8.4vw, 2.35rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .subpage-hero .hero-sub {
    max-width: 100%;
    font-size: 1.06rem;
    overflow-wrap: break-word;
  }

  .content-section h2,
  .section-headline-wrap h2,
  .mission-timeline h3,
  .faq-question {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .content-section h2 {
    font-size: clamp(1.6rem, 8vw, 2.1rem);
    line-height: 1.08;
  }

  .service-list li,
  .trust-item,
  .contact-card {
    max-width: 100%;
  }
}

/* --- PAGE QA PASS: STABLE SUBPAGES + CLEAN CTA STRIPS --- */
.subpage-hero {
  padding: 50px 0 72px;
  overflow: hidden;
}

.subpage-hero .container {
  max-width: 1120px;
}

.subpage-hero .hero-title {
  max-width: 920px;
  font-size: clamp(2.4rem, 4.35vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0 0 26px;
  transform: none;
}

.subpage-hero .hero-title.comic-shadow-text {
  text-shadow:
    4px 4px 0 var(--cyan-shadow),
    -1px -1px 0 var(--cyan-shadow),
    1px -1px 0 var(--cyan-shadow),
    -1px 1px 0 var(--cyan-shadow),
    1px 1px 0 #000;
}

.subpage-hero .hero-title span {
  display: block;
  font-size: inherit;
  color: var(--accent-yellow);
}

.subpage-hero .hero-sub {
  max-width: 760px;
  margin: 0 0 30px;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.45;
}

.subpage-hero .hero-bullet-list {
  justify-content: flex-start;
  gap: 14px 24px;
  margin-bottom: 32px;
}

.subpage-hero .hero-bullet-item {
  color: var(--cream);
  font-size: 0.96rem;
  line-height: 1.2;
}

.contact-compact-hero {
  padding: 50px 0 72px;
}

.contact-compact-hero .hero-title {
  max-width: 820px;
  font-size: clamp(2.2rem, 3.9vw, 3.45rem);
  line-height: 1.08;
}

.contact-compact-hero .hero-title span {
  display: inline;
}

.content-section .cta-strip-grid {
  width: 100%;
}

.cta-strip-section {
  overflow: hidden;
  padding: 54px 0;
}

.cta-strip-section .cta-strip-grid {
  min-height: 280px;
}

.cta-strip-section .cta-strip-visual {
  height: 280px;
  align-self: stretch;
  align-items: flex-end;
}

.cta-strip-section .cta-strip-visual img {
  position: relative;
  bottom: auto;
  height: min(360px, 118%);
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

@media (max-width: 992px) {
  .subpage-hero .hero-title {
    max-width: 760px;
  }

  .cta-strip-section .cta-strip-grid {
    min-height: 0;
    text-align: left;
  }

  .cta-strip-section .cta-strip-visual {
    display: none;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .subpage-hero {
    padding: 30px 0 9px;
  }

  .subpage-hero .hero-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 10.4vw, 2.85rem);
    line-height: 1.08;
    margin-bottom: 20px;
    overflow-wrap: normal;
  }

  .subpage-hero .hero-title.comic-shadow-text {
    text-shadow:
      3px 3px 0 var(--cyan-shadow),
      -1px -1px 0 var(--cyan-shadow),
      1px -1px 0 var(--cyan-shadow),
      -1px 1px 0 var(--cyan-shadow),
      1px 1px 0 #000;
  }

  .subpage-hero .hero-sub {
    font-size: 1.08rem;
    line-height: 1.45;
  }

  .subpage-hero .hero-bullet-list {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 11px;
  }

  .subpage-hero .hero-bullet-item {
    width: 100%;
    align-items: flex-start;
    font-size: 1.02rem;
  }

  .subpage-hero .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .subpage-hero .hero-buttons .btn {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-compact-hero .hero-title {
    font-size: clamp(2rem, 9.4vw, 2.55rem);
  }
}

/* --- ICON SYSTEM: USER SVG SET --- */
.check-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  display: inline-block;
}

.hero-bullet-item .check-icon,
.cta-bullet .check-icon {
  margin-top: 1px;
}

.content-section .cta-bullet .check-icon {
  padding: 3px;
  background: var(--accent-yellow);
  border-radius: 999px;
}

.service-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  background: url("/input/icons/check.svg") center / contain no-repeat;
}

.phone-badge img,
.btn-with-icon img {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  object-fit: contain;
}

.btn-with-icon {
  gap: 10px;
}

.trust-item-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  background: var(--accent-yellow);
  border: 2px solid #000000;
  border-radius: 12px;
  box-shadow: 3px 3px 0 #000000;
  font-size: 1.4rem;
}

.trust-item-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.contact-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .phone-badge img {
    width: 24px;
    height: 24px;
  }

  .phone-badge span::before {
    content: none;
  }

  .hero-bullet-item .check-icon,
  .cta-bullet .check-icon {
    margin-top: 2px;
  }
}

/* --- MOBILE QA: PREVENT LONG GERMAN HEADLINES FROM CLIPPING --- */
@media (max-width: 576px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .subpage-hero .hero-title {
    font-size: clamp(1.7rem, 8.1vw, 2.1rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .subpage-hero .hero-title span {
    overflow-wrap: anywhere;
  }

  .subpage-hero .hero-sub,
  .content-section p,
  .content-section li,
  .trust-item p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .content-section h2,
  .section-headline-wrap h2,
  .faq-cat-title {
    font-size: clamp(1.38rem, 7.1vw, 1.85rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .trust-grid,
  .service-list,
  .hero-buttons,
  .hero-buttons .btn {
    width: 100%;
  }

  .subpage-hero .container,
  .content-section .container,
  .process-section .container,
  .faq-section .container,
  .cta-strip-section .container {
    width: min(100%, 390px);
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .subpage-hero .hero-title,
  .subpage-hero .hero-sub,
  .content-section h2,
  .content-section p,
  .content-grid-2,
  .trust-grid,
  .trust-item,
  .service-list li {
    max-width: 354px;
  }
}

/* --- MOTION SYSTEM: ALIVE BUT CONTROLLED --- */
@keyframes headerDropIn {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(18px) scale(0.99); filter: blur(1.5px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes heroTitlePop {
  0% { opacity: 0; transform: translateY(26px) skewY(-2.5deg) rotate(-1deg) scale(0.96); filter: blur(8px); }
  70% { opacity: 1; transform: translateY(-3px) skewY(-2.5deg) rotate(-1deg) scale(1.015); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) skewY(-2.5deg) rotate(-1deg) scale(1); filter: blur(0); }
}

@keyframes subpageTitlePop {
  0% { opacity: 0; transform: translateY(26px) rotate(-1deg) scale(0.96); filter: blur(8px); }
  70% { opacity: 1; transform: translateY(-3px) rotate(-0.5deg) scale(1.015); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); filter: blur(0); }
}

@keyframes dividerSweep {
  0% { transform: skewY(-1.8deg) translateX(-1.5%); }
  50% { transform: skewY(-1.8deg) translateX(1.5%); }
  100% { transform: skewY(-1.8deg) translateX(-1.5%); }
}

header {
  animation: headerDropIn 520ms ease-out both;
}

.hero .hero-title {
  animation: heroTitlePop 760ms cubic-bezier(0.2, 0.9, 0.22, 1.2) 120ms both;
}

.subpage-hero .hero-title {
  animation: subpageTitlePop 760ms cubic-bezier(0.2, 0.9, 0.22, 1.2) 120ms both;
}

.hero .hero-sub,
.hero .hero-local-copy,
.subpage-hero .hero-sub,
.hero .hero-bullet-list,
.subpage-hero .hero-bullet-list,
.hero .hero-buttons,
.subpage-hero .hero-buttons,
.subpage-hero .breadcrumb {
  animation: heroTextIn 650ms ease-out both;
}

.hero .hero-sub,
.subpage-hero .hero-sub { animation-delay: 220ms; }
.hero .hero-local-copy { animation-delay: 285ms; }
.hero .hero-bullet-list,
.subpage-hero .hero-bullet-list { animation-delay: 380ms; }
.hero .hero-buttons,
.subpage-hero .hero-buttons { animation-delay: 480ms; }
.subpage-hero .breadcrumb { animation-delay: 40ms; }

.divider-slanted {
  /*animation: dividerSweep 8s ease-in-out infinite;*/
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(5px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-item[data-animate="pop"] {
  transform: translate3d(0, 24px, 0) scale(0.96) rotate(-0.5deg);
}

.reveal-item[data-animate="left"] {
  transform: translate3d(-34px, 18px, 0);
}

.reveal-item[data-animate="right"] {
  transform: translate3d(34px, 18px, 0);
}

.reveal-item[data-animate="step"] {
  transform: translate3d(-22px, 14px, 0);
  filter: blur(3px);
}

.mission-timeline article.reveal-item::after {
  opacity: 0;
  transform: scaleY(0);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 160ms);
}

.mission-timeline article.reveal-item .timeline-number {
  transform: scale(0.82) rotate(-3deg);
  transition:
    transform 620ms cubic-bezier(0.175, 0.885, 0.32, 1.275),
    filter 220ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.mission-timeline article.reveal-item.is-visible::after {
  opacity: 1;
  transform: scaleY(1);
}

.mission-timeline article.reveal-item.is-visible .timeline-number {
  transform: scale(1) rotate(0);
}

.reveal-item[data-animate="zoom"] {
  transform: translate3d(0, 18px, 0) scale(0.94);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0);
  filter: blur(0);
}

.mission-card,
.trust-badge-card,
.trust-item,
.ba-toggle-card,
.leistung-block,
.value-focus-card,
.value-reality-note,
.contact-card,
.faq-item,
.city-btn,
.footer-nav-list a {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.mission-card:hover,
.trust-badge-card:hover,
.trust-item:hover,
.leistung-block:hover,
.value-focus-card:hover,
.value-reality-note:hover,
.contact-card:hover {
  transform: translate(-3px, -3px);
  filter: saturate(1.05);
}

.service-list li:hover {
  transform: translateX(4px);
}

.cta-strip-visual img,
.value-card-stamp,
.trust-badge-icon,
.mission-icon-box,
.contact-icon,
.timeline-number {
  transition: transform 220ms cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 220ms ease;
}

.cta-strip-section:hover .cta-strip-visual img,
.value-hero-visual:hover .value-card-stamp,
.trust-badge-card:hover .trust-badge-icon,
.mission-card:hover .mission-icon-box,
.contact-info-item:hover .contact-icon,
.mission-timeline article:hover .timeline-number {
  transform: translateY(-4px) rotate(-2deg) scale(1.04);
  filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.55));
}

.ba-toggle-button img {
  transition: transform 260ms ease, filter 260ms ease;
}

.ba-toggle-button:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.03);
}

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

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* --- SERVICES HERO WORKER --- */
@keyframes serviceWorkerIn {
  0% {
    opacity: 0;
    transform: translateX(120px) rotate(2deg) scale(0.96);
    filter: blur(6px) drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  72% {
    opacity: 1;
    transform: translateX(-8px) rotate(-1deg) scale(1.02);
    filter: blur(0) drop-shadow(8px 8px 0 #000000);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0) scale(1);
    filter: blur(0) drop-shadow(6px 6px 0 #000000);
  }
}

.services-hero {
  padding-top: 74px;
  padding-bottom: 92px;
}

.services-hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.services-hero-copy {
  z-index: 3;
}

.services-hero-copy .hero-title {
  max-width: 820px;
}

.services-hero-copy .hero-sub {
  max-width: 760px;
}

.services-hero-visual {
  height: 480px;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: none;
}

.services-hero-visual img {
  position: absolute;
  right: -120px;
  bottom: 20px;
  width: min(36vw, 880px);
  max-width: none;
  height: auto;
  z-index: 4;
  filter: drop-shadow(8px 8px 0 #000000);
  transform-origin: center bottom;
  animation: serviceWorkerIn 880ms cubic-bezier(0.2, 0.9, 0.22, 1.2) 280ms both;
}

@media (max-width: 992px) {
  .services-hero-visual {
    height: 330px;
    max-width: 560px;
    margin: 0 auto;
  }

  .services-hero-visual img {
    right: -20px;
    bottom: 4px;
    width: min(96vw, 540px);
    opacity: 0.76;
  }
}

@media (max-width: 576px) {
  .services-hero-visual {
    /* display: none; */
  }
}
@media (min-width: 993px) {
  .service-hero {
    padding: 2px 0 0px;
  }
}
.hero-bullet-item img{
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(95%) sepia(29%) saturate(463%) hue-rotate(315deg) brightness(103%) contrast(101%);

}

/* --- MOBILE NAV --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--accent-yellow);
  border: 3px solid #000;
  border-radius: 8px;
  box-shadow: 3px 3px 0 #000;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
  transition: var(--transition-pop);
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: var(--transition-smooth);
}
.hamburger:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
  .hamburger { display: flex; }
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.is-open {
  display: block;
  opacity: 1;
}

.mobile-sidebar {
  position: fixed;
  top: 70px;
  right: 0;
  width: min(320px, 85vw);
  height: calc(100dvh - 90px);
  background: var(--mint);
  border-left: 3px solid #000;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}
.mobile-sidebar.is-open {
  transform: translateX(0);
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.sidebar-links li a {
  display: block;
  text-decoration: none;
  color: #000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 18px;
  background: var(--cream);
  border: 3px solid #000;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #000;
  transition: var(--transition-pop);
}
.sidebar-links li a:hover {
  background: var(--accent-yellow);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}

.sidebar-links li a.is-active {
  background: var(--accent-yellow);
  color: #000;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}

.sidebar-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-yellow);
  color: #000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  text-decoration: none;
  padding: 14px 20px;
  border: 3px solid #000;
  border-radius: 50px;
  box-shadow: 4px 4px 0 #000;
  transition: var(--transition-pop);
}
.sidebar-phone:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}
.sidebar-phone img {
  width: 20px;
  height: 20px;
}

/* --- FAQ PAGE --- */
.faq-category {
  margin-bottom: 48px;
}
.faq-cat-title {
  font-size: 1.3rem;
  border-bottom: 3px solid var(--accent-yellow);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.faq-hero {
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.78) 0%, rgba(7, 17, 31, 0.48) 36%, rgba(7, 17, 31, 0.16) 68%, rgba(7, 17, 31, 0) 100%),
    url('/input/img/hero/faq-hero.png') center right / cover no-repeat !important;
}

.faq-hero .breadcrumb a,
.faq-hero .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.62);
}

.faq-hero .breadcrumb-current {
  color: var(--accent-yellow);
}

.faq-hero .hero-title,
.faq-hero .hero-sub,
.faq-hero .breadcrumb {
  max-width: 680px;
}

.faq-hero .hero-title {
  color: #ffffff;
}

.faq-hero .hero-sub {
  color: #ffffff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.82);
}

@media (max-width: 768px) {
  .faq-hero {
    min-height: 390px;
    background:
      linear-gradient(180deg, rgba(7, 17, 31, 0.76) 0%, rgba(7, 17, 31, 0.42) 50%, rgba(7, 17, 31, 0.12) 100%),
      url('/input/img/hero/faq-hero.png') center bottom / cover no-repeat !important;
  }
}

/* --- LEISTUNGEN PAGE --- */
.leistung-block {
  overflow: hidden;
  margin-bottom: 28px;
  color: #000;
  background: #fff;
  border: 3px solid #000;
  border-radius: 16px;
  box-shadow: 6px 6px 0 #000;
}
.leistung-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--accent-yellow);
  padding: 20px 26px;
  border-bottom: 3px solid #000;
}
.leistung-num {
  display: grid;
  place-items: center;
  width: 54px;
  height: 48px;
  flex: 0 0 auto;
  background: #fff;
  border: 3px solid #000;
  border-radius: 12px;
  box-shadow: 3px 3px 0 #000;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
}
.leistung-header h2 {
  margin: 0;
  color: #000;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.02;
}
.leistung-body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  background: #fff;
}
.leistung-text {
  padding: 28px;
  border-right: 3px solid #000;
}
.leistung-text p {
  margin-bottom: 16px;
  color: #303836;
  font-weight: 650;
}
.leistung-cities {
  padding: 28px;
  background: #f8fbfe;
}
.leistung-cities-label {
  color: #000;
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.leistung-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.city-btn {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  background: #fff;
  color: #000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.82rem;
  text-decoration: none;
  border: 2px solid #000;
  border-radius: 999px;
  box-shadow: 2px 2px 0 #000;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.city-btn:hover {
  background: var(--primary-blue);
  color: #000;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .leistung-block {
    margin-bottom: 22px;
    border-radius: 14px;
    box-shadow: 4px 4px 0 #000;
  }
  .leistung-header {
    align-items: flex-start;
    padding: 18px;
  }
  .leistung-body {
    grid-template-columns: 1fr;
  }
  .leistung-text {
    padding: 20px;
    border-right: none;
    border-bottom: 3px solid #000;
  }
  .leistung-cities {
    padding: 20px;
  }
  .city-btn {
    flex: 1 1 calc(50% - 9px);
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .city-btn {
    flex-basis: 100%;
  }
}

/* --- SEO / GEO CONTENT BLOCKS --- */
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-intro-split {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin: 36px 0 46px;
  padding: 0 0 34px;
  border-bottom: 3px solid #000;
}

.home-intro-copy {
  max-width: 760px;
  color: #000;
}

.home-intro-copy h3 {
  max-width: 720px;
  margin-bottom: 16px;
  color: #000;
  font-size: clamp(2rem, 2.4vw, 4.4rem);
  line-height: 0.95;
}

.home-intro-copy p {
  max-width: 690px;
  color: #18211f;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 760;
}

.home-intro-copy p + p {
  margin-top: 12px;
}

.home-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.home-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  color: #000;
  background: var(--mint);
  border: var(--border-bold);
  border-radius: var(--radius-comic);
  box-shadow: var(--shadow-button);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition-pop);
}

.home-phone-link:hover {
  background: var(--mint-dark);
  color: #fff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}

.home-phone-link img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  transition: filter 0.15s ease;
}

.home-phone-link:hover img {
  filter: brightness(0) invert(1);
}

.home-intro-proof {
  position: relative;
}

.home-intro-image {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3.35;
  border: 3px solid #000;
  border-radius: 8px;
  box-shadow: 8px 8px 0 #000;
  overflow: hidden;
  transform: rotate(1deg);
}

.home-intro-image::before {
  content: "Echter Einsatz";
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 7px 12px;
  color: #000;
  background: var(--accent-yellow);
  border: 2px solid #000;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-intro-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.home-proof-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #000;
  background: #fff;
  border: 2px solid #000;
  border-radius: 999px;
  box-shadow: 2px 2px 0 #000;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.internal-link-hub {
  margin-top: 3rem;
  text-align: center;
}

.internal-link-hub h2 {
  margin-bottom: 0.75rem;
  color: #000;
}

.internal-link-hub p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: #232323;
  font-weight: 700;
}

.internal-link-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.internal-link-grid .btn {
  padding: 12px 18px;
  font-size: 0.85rem;
}

.service-overview-section,
.faq-content-section {
  padding: 64px 0;
}

.service-overview-intro {
  max-width: 860px;
  margin: 0 auto 34px;
  color: #000;
  text-align: center;
}

.service-overview-intro h2 {
  margin-bottom: 12px;
  color: #000;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.service-overview-intro p {
  color: #252525;
  font-weight: 700;
}

.value-teaser-section {
  padding: 64px 0;
  background: var(--primary-dark);
}

.faq-container,
.value-faq-container {
  max-width: 860px;
}

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

.faq-final-cta p {
  margin-bottom: 16px;
  color: #000;
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-final-cta .btn + .btn {
  margin-left: 12px;
}

.mission-timeline-compact {
  margin-top: 0;
}

.form-submit-full,
.success-close {
  width: 100%;
}

.contact-card-spaced {
  margin-bottom: 24px;
}

.contact-muted {
  color: #666;
  font-size: 0.85rem;
}

.contact-info-static {
  cursor: default;
}

.service-list-flush {
  margin-bottom: 0;
}

.city-intro-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 90px;
  background:
    linear-gradient(90deg, rgba(132, 197, 177, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(132, 197, 177, 0.08) 1px, transparent 1px),
    #fffdf6;
  background-size: 34px 34px;
  border-bottom: 3px solid #000;
}

.city-intro-section::before {
  content: none;
}

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

.city-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.66fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
}

.city-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: #000;
  background: var(--mint);
  border: 2px solid #000;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #000;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.city-intro-copy h2 {
  color: #000;
  font-size: clamp(1.65rem, 3vw, 3.15rem);
  line-height: 1.06;
  margin-bottom: 22px;
  max-width: 820px;
}

.city-intro-copy p {
  color: #1d2925;
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  font-weight: 500;
  line-height: 1.66;
  margin-bottom: 16px;
  max-width: 720px;
}

.city-promise-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}

.city-promise-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  color: #000;
  background: #fff;
  border: 2px solid #000;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #000;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.city-promise-row img {
  width: 15px;
  height: 15px;
}

.city-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.city-phone-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 18px;
  color: #000;
  background: var(--mint);
  border: var(--border-bold);
  border-radius: var(--radius-comic);
  box-shadow: var(--shadow-button);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
  transition: var(--transition-pop);
}

.city-phone-mini:hover {
  color: #fff;
  background: var(--mint-dark);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}

.city-phone-mini img {
  width: 18px;
  height: 18px;
}

.city-phone-mini:hover img {
  filter: brightness(0) invert(1);
}

.city-intro-panel {
  position: sticky;
  top: 110px;
}

.city-dispatch-card {
  position: relative;
  padding: 28px;
  color: #000;
  background: #fff;
  border: 3px solid #000;
  border-radius: 10px;
  box-shadow: 9px 9px 0 #000;
}

.city-dispatch-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.city-dispatch-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  color: #000;
  background: var(--mint);
  border: 2px solid #000;
  border-radius: 999px;
  box-shadow: 2px 2px 0 #000;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.city-dispatch-card h3 {
  margin-bottom: 20px;
  color: #000;
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  line-height: 1;
}

.city-dispatch-card dl {
  display: grid;
  gap: 12px;
}

.city-dispatch-card dl div {
  padding: 14px 0;
  border-top: 2px solid #000;
}

.city-dispatch-card dt {
  margin-bottom: 5px;
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.city-dispatch-card dd {
  color: #1f1f1f;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.45;
}

.city-service-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.city-service-tags span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 16px 18px;
  color: #000;
  background: #fff;
  border: 3px solid #000;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #000;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
}

.city-service-tags img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.city-services-section {
  padding: 64px 0 70px;
  background: var(--retro-yellow);
  border-bottom: 3px solid #000;
}

.city-services-head {
  max-width: 860px;
  margin-bottom: 30px;
}

.city-services-head .city-kicker {
  margin-bottom: 16px;
  background: #fff;
}

.city-services-head h2 {
  margin: 0;
  color: #000;
  font-size: clamp(1.55rem, 2.6vw, 2.65rem);
  line-height: 1.05;
  text-align: left;
}

.city-services-head p {
  max-width: 720px;
  margin-top: 14px;
  color: #1d2925;
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  font-weight: 500;
  line-height: 1.62;
}

.city-services-section .city-service-tags span {
  background: #fff;
}

@media (max-width: 900px) {
  .city-intro-grid {
    grid-template-columns: 1fr;
  }

  .city-intro-panel {
    position: relative;
    top: auto;
  }

  .city-service-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .city-intro-section {
    padding: 64px 0 72px;
  }

  .city-intro-copy h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .city-promise-row {
    flex-direction: column;
  }

  .city-promise-row span,
  .city-intro-actions .btn,
  .city-phone-mini {
    width: 100%;
  }

  .city-dispatch-card {
    padding: 22px;
    box-shadow: 6px 6px 0 #000;
  }

  .city-services-section {
    padding: 42px 0 48px;
  }

  .city-service-tags {
    grid-template-columns: 1fr;
  }

  .city-service-tags span {
    min-height: 64px;
  }
}

.success-screen {
  padding: 40px 10px;
  color: #000;
  text-align: center;
}

.success-icon {
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.success-icon svg {
  display: inline-block;
}

.success-screen h3 {
  margin-bottom: 12px;
  color: var(--primary-blue);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
}

.success-screen p {
  max-width: 420px;
  margin: 0 auto 24px;
  color: #444;
  font-weight: 650;
}

.success-screen a {
  color: var(--primary-dark);
  font-weight: 900;
}

@media (max-width: 900px) {
  .home-intro-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

}

@media (max-width: 640px) {
  .home-intro-split {
    margin: 26px 0 38px;
    padding-bottom: 28px;
  }

  .home-intro-copy h3 {
    font-size: clamp(1.65rem, 8.4vw, 2.15rem);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .home-intro-copy p {
    font-size: 1rem;
    line-height: 1.48;
  }

  .home-intro-actions {
    align-items: flex-start;
    gap: 16px;
  }

  .home-intro-actions .btn {
    width: 100%;
  }

  .home-phone-link {
    display: inline-flex;
    width: 100%;
    font-size: 1rem;
  }

  .home-intro-image {
    box-shadow: 5px 5px 0 #000;
    transform: rotate(0deg);
  }

  .faq-final-cta .btn {
    width: 100%;
  }

  .faq-final-cta .btn + .btn {
    margin-top: 12px;
    margin-left: 0;
  }
}

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

/* --- INHABER / OWNER SECTION --- */
.owner-section {
  padding: 64px 0;
  background: var(--bg-page);
}

.owner-split {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

.owner-photo-wrap {
  position: sticky;
  top: 88px;
}

.owner-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--primary-dark);
  border: 3px solid #000;
  border-radius: var(--radius-comic);
  box-shadow: var(--shadow-hard);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent-yellow);
  letter-spacing: -0.05em;
}

.owner-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border: 3px solid #000;
  border-radius: var(--radius-comic);
  box-shadow: var(--shadow-hard);
  display: block;
}

.owner-copy .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
}

.owner-copy h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  margin-bottom: 24px;
  line-height: 1.05;
  color: #000;
}

.owner-copy > p {
  color: #000;
  font-size: 1.06rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.owner-signals {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 3px solid #000;
}

.owner-signal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.owner-signal-item::before {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  background: var(--primary-blue);
  border: 2px solid #000;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .owner-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .owner-photo-wrap {
    position: static;
    max-width: 260px;
    margin: 0 auto;
  }

  .owner-photo-placeholder {
    font-size: 3rem;
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- FORM STATES (SUCCESS / ERROR) --- */
.form-success {
  padding: 28px 24px;
  background: var(--accent-yellow);
  border: 3px solid #000;
  border-radius: var(--radius-comic);
  box-shadow: 5px 5px 0 #000;
  text-align: center;
}

.form-success::before {
  content: "✓";
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #000;
}

.form-error {
  margin-top: 18px;
  padding: 16px 20px;
  background: #fde8e8;
  border: 3px solid #000;
  border-radius: var(--radius-comic);
  box-shadow: 4px 4px 0 #000;
  font-family: var(--font-display);
  font-weight: 700;
  color: #000;
}

.form-success p,
.form-error p {
  margin: 0;
  color: #000;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 600;
}

.form-error a {
  color: var(--primary-dark);
  font-weight: 900;
  text-decoration: underline;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 32px));
  z-index: 9999;
  background: #050A14;
  border: 3px solid var(--accent-yellow);
  border-radius: var(--radius-comic);
  box-shadow: 6px 6px 0 #000;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  flex-wrap: wrap;
}

.cookie-banner-inner p {
  flex: 1;
  min-width: 200px;
  color: #ccc;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-inner a {
  color: var(--accent-yellow);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner-actions .btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.cookie-decline-link {
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-decoration: underline;
  padding: 4px 0;
  transition: color 0.15s;
}

.cookie-decline-link:hover {
  color: #ccc;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-settings-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-settings-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #0d1626;
  border: 3px solid var(--accent-yellow);
  border-radius: var(--radius-comic);
  box-shadow: 8px 8px 0 #000;
  padding: 36px 32px 28px;
}

.cookie-settings-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #888;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}

.cookie-settings-close:hover {
  color: #fff;
}

.cookie-settings-modal h2 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.cookie-setting-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #1e2d45;
}

.cookie-setting-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cookie-setting-info strong {
  color: #fff;
  font-size: 0.92rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

.cookie-setting-info span {
  color: #888;
  font-size: 0.8rem;
  line-height: 1.45;
}

.cookie-toggle--fixed span {
  color: var(--accent-yellow);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Toggle switch */
.cookie-toggle-wrap {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

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

.cookie-toggle-slider {
  display: block;
  width: 46px;
  height: 26px;
  background: #333;
  border: 2px solid #555;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s;
}

.cookie-toggle-slider::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 16px;
  height: 16px;
  background: #666;
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}

.cookie-toggle-input:checked + .cookie-toggle-slider {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.cookie-toggle-input:checked + .cookie-toggle-slider::after {
  transform: translateX(20px);
  background: #fff;
}

.cookie-settings-footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .cookie-banner-inner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 18px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .btn {
    flex: 1;
    text-align: center;
  }
}

.form-dsgvo-note {
  margin: 12px 0 16px;
  color: #666;
  font-size: 0.8rem;
  line-height: 1.5;
}

.form-dsgvo-note a {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Interne Verlinkung Stadtseiten */
.related-section {
  padding: 64px 0;
  background: var(--primary-dark);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.related-heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}
.related-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.related-links a {
  display: block;
  background: #fff;
  border: 3px solid #000;
  border-radius: 8px;
  box-shadow: 2px 2px 0 #000;
  padding: 12px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #000;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.related-links a:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 #000;
}
@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
