/* ============================================================
   CMB SCHÄDLINGSBEKÄMPFUNG — Design System
   Aesthetic: Industrial Premium / Notfall-Expertise
   Fonts: Oswald (headlines) + Source Sans 3 (body)
   ============================================================ */

/* Self-hosted fonts — eliminiert Google Fonts CDN-Abhängigkeit */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('/fonts/oswald-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url('/fonts/oswald-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/sourcesans3-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/sourcesans3-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* === VARIABLES === */
:root {
  --red:           #CC2200;
  --red-dark:      #A01800;
  --red-hover:     #E02500;
  --dark:          #0E0E0E;
  --anthracite:    #1A1A1A;
  --grey-900:      #222222;
  --grey-800:      #2C2C2C;
  --grey-700:      #3D3D3D;
  --grey-500:      #707070;
  --grey-300:      #AAAAAA;
  --grey-100:      #F0F0F0;
  --white:         #FFFFFF;
  --whatsapp:      #25D366;
  --whatsapp-dark: #1DA851;
  --text-light:    #1A1A1A;
  --text-muted:    #666666;
  --grey-400:      #888888;

  --font-headline: 'Oswald', sans-serif;
  --font-body:     'Source Sans 3', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.16);
  --shadow-red: 0 4px 20px rgba(204,34,0,0.35);

  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-h:  72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: #FFFFFF;
  color: #222222;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-headline);
  line-height: 1.15;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-transform: uppercase;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; text-transform: none; letter-spacing: 0; }
h4 { font-size: 1.1rem; font-weight: 600; text-transform: none; letter-spacing: 0; }
p { margin-bottom: var(--space-sm); color: #444444; }
p:last-child { margin-bottom: 0; }

.text-red   { color: var(--red); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section {
  padding: var(--space-xl) 0;
}
.section--dark { background: #F5F5F5; }
.section--darker { background: #FFFFFF; }
.section--grey { background: #F0F0F0; }
.section--white { background: #FFFFFF; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.section-tag {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-xs);
}
.section-title {
  margin-bottom: var(--space-xs);
}
.section-sub {
  color: #666666;
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-headline);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(204,34,0,0.5);
}
.btn-secondary {
  background: rgba(255,255,255,0.95);
  color: #1A1A1A;
  border: 2px solid rgba(255,255,255,0.95);
}
.btn-secondary:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--grey-800);
  color: var(--white);
  border: 1px solid var(--grey-700);
}
.btn-dark:hover {
  background: var(--grey-700);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
}
.btn-outline:hover {
  background: #1A1A1A;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.1rem; }
.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E5E5E5;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,1);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-md);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.site-logo img {
  height: 44px;
  width: auto;
}

/* Main nav */
.main-nav { display: none; }
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  color: #444444;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--grey-900);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--grey-300);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.dropdown a:hover {
  background: var(--grey-800);
  color: var(--white);
}
.dropdown a .pest-icon { font-size: 1.1rem; }

/* Mega menu for Einsatzgebiete */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 800px;
  background: var(--grey-900);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.mega-col h4, .mega-col-head {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--grey-800);
}
.mega-col a {
  display: block;
  padding: 0.3rem 0;
  color: var(--grey-300);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.mega-col a:hover { color: var(--white); }
.mega-col .see-all {
  display: inline-block;
  margin-top: 0.4rem;
  color: var(--red);
  font-weight: 600;
  font-size: 0.82rem;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  color: var(--red);
  font-family: var(--font-headline);
  font-size: 1rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
@media (min-width: 768px) { .header-phone { display: flex; } }
.header-phone svg { color: var(--red); }

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--grey-900);
  border-top: 1px solid var(--grey-800);
  z-index: 999;
  padding: var(--space-sm) 0;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.85rem var(--space-md);
  color: var(--grey-300);
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--grey-800);
}
.mobile-nav a:hover { color: var(--white); background: var(--grey-800); }
.mobile-nav .mobile-ctas {
  padding: var(--space-sm) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-nav-section { padding: var(--space-xs) var(--space-md) 0.25rem; }
.mobile-nav-section span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  font-weight: 700;
  font-family: var(--font-headline);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1A1A1A 0%, #2C1A1A 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(204,34,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(204,34,0,0.06) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 60%, #200800 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-geo {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(204,34,0,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero-geo::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(204,34,0,0.1);
  border-radius: 50%;
}
.hero-geo::after {
  content: '';
  position: absolute;
  inset: 80px;
  border: 1px solid rgba(204,34,0,0.07);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(204,34,0,0.15);
  border: 1px solid rgba(204,34,0,0.3);
  color: var(--red);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}
.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
  max-width: 700px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--grey-300);
  margin-bottom: var(--space-lg);
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--grey-300);
}
.hero-trust-item svg { color: var(--red); flex-shrink: 0; }
.hero-img {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 85%;
  object-fit: cover;
  mask-image: linear-gradient(to left, transparent 0%, black 30%),
              linear-gradient(to top, transparent 0%, black 20%);
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 30%),
                      linear-gradient(to top, transparent 0%, black 20%);
  opacity: 0.85;
}
@media (min-width: 1024px) { .hero-img { display: block; } }

/* Emergency Strip */
.emergency-strip {
  background: var(--red);
  padding: 0.85rem 0;
  overflow: hidden;
}
.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.emergency-inner span {
  font-family: var(--font-headline);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.emergency-inner a {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

/* === TRUST BAR === */
.trust-bar {
  background: #F5F5F5;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  padding: var(--space-lg) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  text-align: center;
}
.trust-number {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-label {
  font-size: 0.85rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === SERVICE CARDS === */
.service-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card-img {
  height: 200px;
  background: #F0F0F0;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: #F0F0F0;
}
.service-card-body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1A1A1A;
}
.service-card p {
  font-size: 0.92rem;
  color: #666666;
  flex: 1;
  margin-bottom: var(--space-sm);
}
.service-card .btn { margin-top: auto; width: 100%; justify-content: center; }
.service-card-price {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.service-card-price strong { color: #1A1A1A; }

/* === PROCESS STEPS === */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
  }
}
.process-step {
  flex: 1;
  text-align: left;
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border-top: 4px solid var(--red);
}
.step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.step-icon {
  width: 36px;
  height: 36px;
  background: rgba(204,34,0,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.process-step h3 { font-size: 1rem; color: #1A1A1A; margin-bottom: 0.4rem; font-family: var(--font-headline); }
.process-step p { font-size: 0.88rem; color: #666666; }

/* === STÖRER COMPONENTS === */
/* Störer 1: Notfall (Red) */
.stoerer-notfall {
  background: var(--red);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.stoerer-notfall::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.stoerer-notfall-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .stoerer-notfall-inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}
.stoerer-notfall h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.stoerer-notfall p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}
.stoerer-notfall .btn {
  background: var(--white);
  color: var(--red);
  flex-shrink: 0;
}
.stoerer-notfall .btn:hover {
  background: var(--grey-100);
  transform: translateY(-2px);
}

/* Störer 2: Trust Stats (Dark) */
.stoerer-trust {
  background: #F5F5F5;
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  padding: var(--space-lg) 0;
}
.stoerer-trust-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  align-items: center;
}
@media (min-width: 768px) {
  .stoerer-trust-inner { grid-template-columns: repeat(4, 1fr); }
}
.stoerer-stat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.stoerer-stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(204,34,0,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.stoerer-stat-text strong {
  display: block;
  font-family: var(--font-headline);
  font-size: 1.4rem;
  color: #1A1A1A;
}
.stoerer-stat-text span {
  font-size: 0.82rem;
  color: #666666;
}

/* Störer 3: Free Services (Anthracite + Red accent) */
.stoerer-free {
  background: #F5F5F5;
  border-left: 4px solid var(--red);
  padding: var(--space-xl) 0;
}
.stoerer-free-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}
@media (min-width: 768px) {
  .stoerer-free-grid { grid-template-columns: 1fr auto; }
}
.stoerer-free h2 { color: #1A1A1A; margin-bottom: var(--space-xs); }
.stoerer-free p { color: #666666; margin-bottom: var(--space-md); }
.free-items {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.free-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(204,34,0,0.06);
  border: 1px solid rgba(204,34,0,0.2);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.88rem;
  color: #222222;
}
.free-item svg { color: var(--red); }

/* Störer 4: WhatsApp */
.stoerer-whatsapp {
  background: linear-gradient(135deg, #f0faf4, #e6f7ec);
  border-top: 1px solid rgba(37,211,102,0.3);
  border-bottom: 1px solid rgba(37,211,102,0.3);
  padding: var(--space-lg) 0;
}
.stoerer-whatsapp-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .stoerer-whatsapp-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.stoerer-whatsapp h3 { color: #1A1A1A; }
.stoerer-whatsapp p { color: #555555; font-size: 0.95rem; }

/* === PRICE CALCULATOR === */
.calculator {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.calc-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  background: #F0F0F0;
  border-bottom: 1px solid #E0E0E0;
}
.calc-tabs::-webkit-scrollbar { display: none; }
.calc-tab {
  flex: 1;
  min-width: 120px;
  padding: 1rem 0.75rem;
  background: none;
  border: none;
  color: #666666;
  font-family: var(--font-headline);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.calc-tab .tab-icon { font-size: 1.4rem; }
.calc-tab:hover { color: #1A1A1A; }
.calc-tab.active {
  color: #1A1A1A;
  background: #FFFFFF;
  border-bottom-color: var(--red);
}
.calc-body { padding: var(--space-lg); background: #F5F5F5; border: 1px solid #E0E0E0; }
.calc-panel { display: none; }
.calc-panel.active { display: block; }
.calc-panel h3 {
  font-size: 1.2rem;
  color: #1A1A1A;
  margin-bottom: var(--space-sm);
}
.size-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.size-option {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  color: #222222;
}
.size-option:hover { border-color: var(--red); }
.size-option.selected {
  border-color: var(--red);
  background: rgba(204,34,0,0.05);
}
.size-option .size-icon { font-size: 1.8rem; margin-bottom: 0.3rem; }
.size-option .size-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #222222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.size-option .size-desc {
  font-size: 0.75rem;
  color: #666666;
  margin-top: 0.15rem;
}
.price-result {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .price-result { flex-direction: row; text-align: left; justify-content: space-between; }
}
.price-display { display: flex; flex-direction: column; }
.price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666666;
}
.price-value {
  font-family: var(--font-headline);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}
.price-value span { color: var(--red); }
.price-note { font-size: 0.8rem; color: #666666; }
.calc-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* === BLOG CARDS === */
.blog-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: #BBBBBB;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  height: 180px;
  background: var(--grey-800);
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--grey-800), var(--grey-700));
}
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
}
.blog-card-body { padding: var(--space-md); flex: 1; display: flex; flex-direction: column; }
.blog-card h3 {
  font-size: 1.05rem;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.blog-card p { font-size: 0.88rem; color: #666666; flex: 1; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: #888888;
}
.blog-link {
  color: var(--red);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  transition: gap var(--transition);
}
.blog-link:hover { gap: 0.6rem; }

/* Blog related - city pages */
.blog-related {
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.blog-related h3 {
  color: #1A1A1A;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-related h3::before {
  content: '';
  width: 3px;
  height: 1.4em;
  background: var(--red);
  border-radius: 2px;
}
.blog-related-list { display: flex; flex-direction: column; gap: 0.5rem; }
.blog-related-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  color: #555555;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.blog-related-item:hover { color: #1A1A1A; border-color: var(--red); }
.blog-related-item svg { color: var(--red); flex-shrink: 0; }

/* === COVERAGE / EINSATZGEBIETE === */
.coverage-section { }
.bl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}
@media (min-width: 768px) { .bl-grid { grid-template-columns: repeat(3, 1fr); } }
.bl-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.bl-card:hover { border-color: var(--red); }
.bl-card h4 {
  font-family: var(--font-headline);
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.bl-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.city-chip {
  background: #F0F0F0;
  color: #333333;
  font-size: 0.78rem;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  border: 1px solid #D8D8D8;
  cursor: pointer;
  transition: all var(--transition);
}
.city-chip:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.bl-more { color: var(--red); font-size: 0.82rem; font-weight: 700; margin-top: 0.5rem; display: inline-block; cursor: pointer; }

/* === FAQ ACCORDION === */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.1rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  cursor: pointer;
  text-align: left;
  color: #1A1A1A;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: #F5F5F5; }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 var(--space-md) var(--space-md);
  color: #444444;
  font-size: 0.95rem;
  line-height: 1.7;
  background: #F9F9F9;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* === CONTACT FORM === */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 768px) {
  .contact-form-wrap { grid-template-columns: 1fr 1fr; }
}
.contact-info h3 { color: #1A1A1A; margin-bottom: var(--space-md); }
.contact-info-items { display: flex; flex-direction: column; gap: var(--space-sm); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: #555555;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(204,34,0,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-info-text strong { display: block; color: #1A1A1A; margin-bottom: 0.1rem; }
.contact-info-text a { color: #555555; transition: color var(--transition); }
.contact-info-text a:hover { color: var(--red); }

.form-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: var(--space-sm); }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555555;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: #222222;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #AAAAAA; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-legal { font-size: 0.78rem; color: #888888; margin-top: var(--space-sm); }
.form-legal a { text-decoration: underline; }
.form-success {
  display: none;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--whatsapp);
  text-align: center;
}

/* === STICKY FLOATING CTAS === */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
}
.floating-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.floating-whatsapp-text { display: none; }
@media (min-width: 768px) { .floating-whatsapp-text { display: block; } }

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--grey-900);
  padding-top: var(--space-2xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand img { height: 48px; width: auto; margin-bottom: var(--space-sm); }
.footer-brand p { font-size: 0.88rem; color: var(--grey-300); max-width: 280px; }
.footer-col h5, .footer-col-head {
  font-family: var(--font-headline);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul li a {
  color: var(--grey-300);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--grey-900);
  padding: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { font-size: 0.82rem; color: #888888; }
.footer-legal { display: flex; gap: var(--space-sm); flex-wrap: wrap; justify-content: center; }
.footer-legal a { font-size: 0.82rem; color: var(--grey-500); transition: color var(--transition); }
.footer-legal a:hover { color: var(--grey-300); }
.footer-vermittlung {
  background: var(--grey-900);
  border: 1px solid var(--grey-800);
  border-radius: var(--radius-sm);
  padding: 0.6rem var(--space-md);
  font-size: 0.8rem;
  color: var(--grey-500);
  text-align: center;
  margin-bottom: var(--space-md);
}

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 0.75rem 0;
  background: #F0F0F0;
  border-bottom: 1px solid #E0E0E0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumbs li + li::before {
  content: '›';
  color: #AAAAAA;
}
.breadcrumbs a { font-size: 0.82rem; color: #555555; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs li:last-child span { font-size: 0.82rem; color: #555555; }

/* === HERO (inner pages) === */
.page-hero {
  background: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--header-h);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(204,34,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: #1A1A1A; margin-bottom: var(--space-xs); }
.page-hero .hero-sub { font-size: 1.05rem; max-width: 650px; margin-bottom: var(--space-md); color: #555555; }
.page-hero-ctas { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* Content areas */
.content-block { margin-bottom: var(--space-xl); }
.content-block h2 { margin-bottom: var(--space-sm); }
.content-block h3 { margin-bottom: 0.5rem; margin-top: var(--space-md); color: #1A1A1A; }
.content-block h4 { color: #555555; margin-bottom: 0.4rem; margin-top: 0.75rem; }
.content-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: var(--space-sm) 0;
}
.content-block ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: #444444;
  line-height: 1.5;
}
.content-block ul li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0.05em;
}
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 1024px) {
  .two-col-layout { grid-template-columns: 1fr 340px; }
}
.sidebar-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  align-self: start;
}
.sidebar-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}
.sidebar-card--light {
  background: #F9F9F9;
  box-shadow: var(--shadow-sm);
}
.sidebar-card--facts {
  background: #FFF8F6;
  border-color: rgba(204,34,0,0.15);
  box-shadow: none;
}
.sidebar-card h4 { color: #1A1A1A; margin-bottom: var(--space-sm); font-size: 1rem; }
.sidebar-card h5 { color: #1A1A1A; margin: 0 0 0.6rem; font-size: 0.9rem; font-family: var(--font-headline); letter-spacing: 0.03em; }
.sidebar-phone {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: var(--space-sm);
}
.sidebar-ctas { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-hours { font-size: 0.8rem; color: var(--grey-500); margin-top: 0.6rem; }
.sidebar-pdf-highlight {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(204,34,0,0.07);
  border: 1px solid rgba(204,34,0,0.2);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.sidebar-pdf-highlight:hover { background: rgba(204,34,0,0.12); }
.sidebar-pdf-list { list-style: none; padding: 0; margin: 0; }
.sidebar-pdf-list li { margin-bottom: 0.3rem; }
.sidebar-pdf-list a { font-size: 0.8rem; color: var(--grey-500); text-decoration: none; display: flex; align-items: center; gap: 0.3rem; }
.sidebar-pdf-list a:hover { color: var(--red); }
.sidebar-info-list { list-style: none; padding: 0; margin: 0; font-size: 0.82rem; color: #555; }
.sidebar-info-list li { padding: 0.25rem 0; border-bottom: 1px solid #F0F0F0; display: flex; gap: 0.4rem; }
.sidebar-info-list li:last-child { border-bottom: none; }
.sidebar-info-list .info-label { color: var(--grey-400); min-width: 80px; }
.sidebar-facts-list { list-style: none; padding: 0; margin: 0; }
.sidebar-facts-list li { font-size: 0.8rem; color: #555; padding: 0.2rem 0; display: flex; gap: 0.4rem; }
.sidebar-facts-list li::before { content: "→"; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* Highlight box */
.highlight-box {
  background: rgba(204,34,0,0.08);
  border: 1px solid rgba(204,34,0,0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
}
.highlight-box strong { color: var(--red); }

/* === PAGE SPECIFIC HERO IMAGES === */
.service-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
}
.service-img img { width: 100%; height: 300px; object-fit: cover; }
.service-img-placeholder {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--grey-800), var(--grey-700));
  border-radius: var(--radius-md);
}

/* === REVIEW WIDGET === */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
}
.review-stars { color: #FFB800; font-size: 1rem; margin-bottom: 0.4rem; }
.review-text { font-size: 0.9rem; color: #555555; margin-bottom: 0.75rem; font-style: italic; }
.review-author { font-size: 0.82rem; color: #888888; font-weight: 700; }
.review-meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; font-size: 0.82rem; }
.review-meta strong { color: #333; }
.review-date { color: #AAAAAA; }
.review-fb { color: #1877F2; text-decoration: none; display: inline-flex; align-items: center; gap: 3px; }
.review-fb:hover { text-decoration: underline; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE UTILITIES === */
@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
  .section { padding: var(--space-lg) 0; }
  .hero { min-height: auto; padding-bottom: var(--space-xl); }
  .form-row { grid-template-columns: 1fr; }
  .calc-body { padding: var(--space-md); }
  .size-options { grid-template-columns: 1fr; }

  /* Trust items: keine Zeilenumbrüche innerhalb eines Items */
  .hero-trust-item { white-space: nowrap; }
  .hero-trust { gap: 0.5rem 1rem; }

  /* Emergency strip: stack on mobile */
  .emergency-inner { flex-direction: column; gap: 0.25rem; text-align: center; }
  .emergency-inner span { font-size: 0.78rem; }

  /* Process steps: text not overflow on small screens */
  .process-step h3 { font-size: 0.9rem; }
  .process-step p { font-size: 0.82rem; }

  /* Feature tags in service cards: don't break mid-word */
  .feature-tag, .trust-badge, .service-tag {
    white-space: nowrap;
    display: inline-flex;
  }
}
@media (min-width: 768px) {
  .show-mobile-only { display: none !important; }
}

/* === CALCULATOR EXTRAS === */
.wespen-surcharge {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #FFF8E7;
  border: 1px solid #F0C040;
  border-radius: var(--radius-sm);
}
.surcharge-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #5a4200;
  user-select: none;
}
.surcharge-toggle input { cursor: pointer; accent-color: var(--red); }

.thermal-rooms {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #F0F6FF;
  border: 1px solid #C0D8F8;
  border-radius: var(--radius-sm);
}
.thermal-rooms-inner label {
  font-size: 0.9rem;
  color: #1a3a5c;
  display: block;
  margin-bottom: 0.5rem;
}
.room-slider {
  width: 100%;
  accent-color: var(--red);
  cursor: pointer;
}

/* Utility */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.gap-sm { gap: var(--space-sm); }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }

/* Interne Verlinkung – Weitere Städte */
.nearby-cities ul li a {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--red);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.nearby-cities ul li a:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
