/* =====================================================================
   Schlüsseldienst Stuttgart-Weilimdorf 24h
   Design System — .wd-* namespace
   Palette: Deep Indigo / Warm Amber / Light Indigo-Gray background
   Font: Figtree (Google Fonts)
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 0 · CUSTOM PROPERTIES                                               */
/* ------------------------------------------------------------------ */
:root {
  /* Brand colours */
  --wd-indigo:       #3730A3;
  --wd-indigo-dark:  #312E81;
  --wd-indigo-mid:   #4338CA;
  --wd-indigo-light: #6366F1;
  --wd-indigo-pale:  #EEF2FF;
  --wd-amber:        #F59E0B;
  --wd-amber-hover:  #D97706;
  --wd-amber-light:  #FEF3C7;
  --wd-amber-pale:   #FFFBEB;

  /* Neutrals */
  --wd-bg:           #F5F5FB;
  --wd-white:        #FFFFFF;
  --wd-ink:          #1F2233;
  --wd-muted:        #5C5F72;
  --wd-border:       #E2E4F0;
  --wd-card-shadow:  0 2px 16px rgba(55,48,163,0.08);

  /* WhatsApp */
  --wd-wa:           #25D366;
  --wd-wa-hover:     #1EBE5D;

  /* Typography */
  --wd-font:         'Figtree', sans-serif;

  /* Layout */
  --wd-max:          1180px;
  --wd-radius:       12px;
  --wd-radius-lg:    18px;
  --wd-radius-sm:    8px;
  --wd-header-h:     68px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--wd-font);
  background: var(--wd-white);
  color: var(--wd-ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--wd-amber); outline-offset: 3px; border-radius: 4px; }

ul, ol { list-style: none; }

address { font-style: normal; }

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

/* ------------------------------------------------------------------ */
/* 2 · LAYOUT HELPERS                                                  */
/* ------------------------------------------------------------------ */
.wd-container {
  width: 100%;
  max-width: var(--wd-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.wd-section {
  padding-block: 5rem;
}
.wd-section-tinted {
  background: var(--wd-bg);
}

.wd-section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.wd-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wd-indigo);
  background: var(--wd-indigo-pale);
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.wd-section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--wd-ink);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.wd-section-desc {
  font-size: 1rem;
  color: var(--wd-muted);
}

.wd-text-left { text-align: left; }

/* Icon helper */
.wd-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

/* ------------------------------------------------------------------ */
/* 3 · BUTTONS                                                         */
/* ------------------------------------------------------------------ */
.wd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--wd-radius-sm);
  font-family: var(--wd-font);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.1s;
  text-decoration: none;
  white-space: nowrap;
}
.wd-btn:hover { transform: translateY(-1px); }
.wd-btn:active { transform: none; }

.wd-btn-primary {
  background: var(--wd-indigo);
  color: var(--wd-white);
  border-color: var(--wd-indigo);
}
.wd-btn-primary:hover { background: var(--wd-indigo-dark); border-color: var(--wd-indigo-dark); }

.wd-btn-amber {
  background: var(--wd-amber);
  color: var(--wd-ink);
  border-color: var(--wd-amber);
}
.wd-btn-amber:hover { background: var(--wd-amber-hover); border-color: var(--wd-amber-hover); }

.wd-btn-wa {
  background: var(--wd-wa);
  color: var(--wd-white);
  border-color: var(--wd-wa);
}
.wd-btn-wa:hover { background: var(--wd-wa-hover); border-color: var(--wd-wa-hover); }

.wd-btn-outline-light {
  background: transparent;
  color: var(--wd-white);
  border-color: rgba(255,255,255,0.5);
}
.wd-btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--wd-white); }

.wd-btn-lg { padding: 0.95rem 1.75rem; font-size: 1rem; }

/* ------------------------------------------------------------------ */
/* 4 · TOPBAR                                                          */
/* ------------------------------------------------------------------ */
.wd-topbar {
  background: var(--wd-indigo-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  display: none;
}
@media (min-width: 860px) { .wd-topbar { display: block; } }

.wd-topbar .wd-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
}

.wd-topbar-left,
.wd-topbar-right { display: flex; align-items: center; gap: 1.25rem; }

.wd-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.wd-topbar-item svg { width: 0.9rem; height: 0.9rem; }

.wd-topbar-ihk { color: var(--wd-amber); font-weight: 700; }

.wd-topbar-tel {
  color: var(--wd-amber);
  font-weight: 700;
  font-size: 0.85rem;
}
.wd-topbar-tel:hover { text-decoration: underline; }

/* ------------------------------------------------------------------ */
/* 5 · HEADER / NAV                                                    */
/* ------------------------------------------------------------------ */
.wd-nav-toggle { display: none; }

.wd-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wd-white);
  border-bottom: 1px solid var(--wd-border);
  box-shadow: 0 2px 12px rgba(55,48,163,0.07);
  transition: box-shadow 0.3s;
}
.wd-header.wd-scrolled {
  box-shadow: 0 4px 24px rgba(55,48,163,0.13);
}

.wd-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--wd-header-h);
}

.wd-logo img { display: block; }

/* Desktop nav */
.wd-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 860px) { .wd-nav { display: flex; } }

.wd-nav a {
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wd-ink);
  border-radius: var(--wd-radius-sm);
  transition: background 0.15s, color 0.15s;
}
.wd-nav a:hover, .wd-nav a:focus-visible {
  background: var(--wd-indigo-pale);
  color: var(--wd-indigo);
}

/* Dropdown */
.wd-nav-dropdown { position: relative; }
.wd-nav-parent { cursor: pointer; }
.wd-nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--wd-white);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(55,48,163,0.12);
  z-index: 200;
}
.wd-nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  border-radius: var(--wd-radius-sm);
}
.wd-nav-dropdown-menu a:hover { background: var(--wd-indigo-pale); color: var(--wd-indigo); }
.wd-nav-dropdown:hover .wd-nav-dropdown-menu { display: block; }

/* Header CTA */
.wd-header-tel {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: var(--wd-amber);
  color: var(--wd-ink);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.55rem 1.1rem;
  border-radius: var(--wd-radius-sm);
  transition: background 0.2s;
}
.wd-header-tel svg { width: 1rem; height: 1rem; }
.wd-header-tel:hover { background: var(--wd-amber-hover); }
@media (min-width: 620px) { .wd-header-tel { display: inline-flex; } }

/* Hamburger */
.wd-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  cursor: pointer;
  border-radius: var(--wd-radius-sm);
  transition: background 0.15s;
  flex-shrink: 0;
}
.wd-burger:hover { background: var(--wd-indigo-pale); }
.wd-burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--wd-ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
@media (min-width: 860px) { .wd-burger { display: none; } }

/* Mobile nav panel */
.wd-mobile-nav {
  display: none;
  border-top: 1px solid var(--wd-border);
  background: var(--wd-white);
  padding: 1rem 1.25rem 1.5rem;
}
.wd-mobile-nav nav a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wd-ink);
  border-radius: var(--wd-radius-sm);
  transition: background 0.15s, color 0.15s;
}
.wd-mobile-nav nav a:hover { background: var(--wd-indigo-pale); color: var(--wd-indigo); }
.wd-mobile-group-label {
  display: block;
  padding: 0.875rem 0.75rem 0.25rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wd-muted);
}
.wd-mobile-nav-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--wd-border);
}
.wd-mobile-nav-cta .wd-btn { width: 100%; justify-content: center; }

/* Checkbox toggle magic */
.wd-nav-toggle:checked ~ .wd-header .wd-mobile-nav { display: block; }
.wd-nav-toggle:checked ~ .wd-header .wd-burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wd-nav-toggle:checked ~ .wd-header .wd-burger-line:nth-child(2) { opacity: 0; }
.wd-nav-toggle:checked ~ .wd-header .wd-burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------------ */
/* 6 · HERO — Two-Column Photo Layout                                  */
/* ------------------------------------------------------------------ */
.wd-hero {
  background: linear-gradient(135deg, var(--wd-indigo-dark) 0%, var(--wd-indigo) 60%, #4F46E5 100%);
  padding-block: 4.5rem 3.5rem;
  overflow: hidden;
  position: relative;
}
/* subtle decorative dots */
.wd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(245,158,11,0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.wd-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 860px) {
  .wd-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* LEFT text panel */
.wd-hero-text { color: var(--wd-white); }

.wd-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
}
.wd-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wd-amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.3);
  animation: wd-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes wd-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(245,158,11,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(245,158,11,0.1); }
}

.wd-hero-h1 {
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.wd-hero-accent {
  color: var(--wd-amber);
}
.wd-hero-h1-sub {
  display: block;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
  letter-spacing: 0.03em;
}

.wd-hero-sub {
  font-size: 1.025rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

/* USP chips */
.wd-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.wd-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wd-white);
  backdrop-filter: blur(4px);
}
.wd-chip svg { width: 0.9rem; height: 0.9rem; flex-shrink: 0; }
.wd-chip-amber {
  background: rgba(245,158,11,0.25);
  border-color: rgba(245,158,11,0.5);
  color: #FEF3C7;
}

/* CTA row */
.wd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.wd-hero-notdienst {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.wd-hero-notdienst svg { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--wd-amber); }
.wd-hero-notdienst a { color: var(--wd-amber); font-weight: 700; text-decoration: underline; }
.wd-hero-notdienst a:hover { color: #FDE68A; }

/* RIGHT photo panel */
.wd-hero-photo {
  display: flex;
  justify-content: center;
}
@media (max-width: 859px) {
  .wd-hero-photo { display: none; }
}

.wd-hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.wd-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--wd-radius-lg);
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* Floating chips on hero photo */
.wd-hero-float-amber {
  position: absolute;
  top: -1rem;
  right: -1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wd-amber);
  color: var(--wd-ink);
  padding: 0.6rem 0.875rem;
  border-radius: var(--wd-radius);
  box-shadow: 0 6px 20px rgba(245,158,11,0.4);
  font-size: 0.82rem;
}
.wd-hero-float-amber svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
.wd-hero-float-amber strong { font-size: 1.05rem; font-weight: 800; display: block; line-height: 1; }
.wd-hero-float-amber span { font-size: 0.72rem; font-weight: 500; }

.wd-hero-float-price {
  position: absolute;
  bottom: 2.5rem;
  left: -1.25rem;
  background: var(--wd-indigo-dark);
  color: var(--wd-white);
  padding: 0.6rem 0.875rem;
  border-radius: var(--wd-radius);
  box-shadow: 0 6px 20px rgba(49,46,129,0.4);
  text-align: center;
}
.wd-float-val {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--wd-amber);
  line-height: 1;
}
.wd-float-lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-top: 0.15rem;
}

.wd-hero-float-stars {
  position: absolute;
  bottom: -0.75rem;
  right: 1rem;
  background: var(--wd-white);
  color: var(--wd-ink);
  padding: 0.45rem 0.75rem;
  border-radius: var(--wd-radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.wd-stars { color: var(--wd-amber); font-size: 0.9rem; letter-spacing: 0.05em; }

/* ------------------------------------------------------------------ */
/* 7 · TRUST STRIP                                                     */
/* ------------------------------------------------------------------ */
.wd-trust-strip {
  background: var(--wd-white);
  border-bottom: 1px solid var(--wd-border);
  padding-block: 1.1rem;
}
.wd-trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
.wd-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.wd-trust-item svg { width: 1.25rem; height: 1.25rem; color: var(--wd-indigo); flex-shrink: 0; }
.wd-trust-item strong { display: block; font-size: 0.95rem; font-weight: 800; color: var(--wd-ink); }
.wd-trust-item span { font-size: 0.75rem; color: var(--wd-muted); }
.wd-trust-sep {
  width: 1px;
  height: 1.75rem;
  background: var(--wd-border);
  display: none;
}
@media (min-width: 620px) { .wd-trust-sep { display: block; } }
.wd-trust-pe {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.wd-trust-pe:hover { opacity: 0.8; }
.wd-trust-pe svg { color: var(--wd-amber); }
.wd-trust-pe strong { color: var(--wd-ink); }
.wd-trust-pe span { color: var(--wd-muted); }

/* ------------------------------------------------------------------ */
/* 8 · ÜBER UNS (photo + text two-col layout)                          */
/* ------------------------------------------------------------------ */
.wd-about-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 860px) {
  .wd-about-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.wd-about-photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.75rem;
  align-items: start;
}
.wd-about-photo-main img,
.wd-about-photo-secondary img {
  width: 100%;
  border-radius: var(--wd-radius);
  object-fit: cover;
  box-shadow: var(--wd-card-shadow);
}
.wd-about-photo-main img { height: 320px; }
.wd-about-photo-secondary img { height: 200px; margin-top: 1.5rem; }

.wd-about-text .wd-section-label { display: block; margin-bottom: 0.5rem; }
.wd-about-text .wd-section-title { margin-bottom: 1rem; }
.wd-about-text p { color: var(--wd-muted); margin-bottom: 1rem; font-size: 0.975rem; }

.wd-about-list { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 1.25rem; }
.wd-about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.925rem;
  color: var(--wd-ink);
}
.wd-about-list li svg { width: 1.15rem; height: 1.15rem; flex-shrink: 0; color: var(--wd-indigo); margin-top: 0.1rem; }

/* ------------------------------------------------------------------ */
/* 9 · LEISTUNGEN (service card grid with optional photo)              */
/* ------------------------------------------------------------------ */
.wd-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.wd-service-card {
  background: var(--wd-white);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  overflow: hidden;
  box-shadow: var(--wd-card-shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.wd-service-card:hover {
  box-shadow: 0 8px 32px rgba(55,48,163,0.14);
  transform: translateY(-2px);
}

/* Service photo at top of card */
.wd-service-img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}
.wd-service-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s;
}
.wd-service-card:hover .wd-service-img-wrap img { transform: scale(1.04); }

/* Body padding — with or without image */
.wd-service-body,
.wd-service-body-noimg {
  padding: 1.25rem 1.35rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.wd-service-body-noimg { padding-top: 1.5rem; }

.wd-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.wd-service-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--wd-indigo-pale);
  border-radius: var(--wd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wd-indigo);
}
.wd-service-icon svg { width: 1.25rem; height: 1.25rem; }
.wd-service-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--wd-indigo);
  background: var(--wd-indigo-pale);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.wd-service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--wd-ink);
  margin-bottom: 0.5rem;
}
.wd-service-card p {
  font-size: 0.875rem;
  color: var(--wd-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.wd-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--wd-indigo);
  transition: gap 0.2s;
  margin-top: auto;
}
.wd-card-link svg { width: 0.9rem; height: 0.9rem; flex-shrink: 0; transition: transform 0.2s; }
.wd-card-link:hover { gap: 0.5rem; }
.wd-card-link:hover svg { transform: translateX(3px); }

/* ------------------------------------------------------------------ */
/* 10 · STADTTEILE GRID                                                */
/* ------------------------------------------------------------------ */
.wd-stadtteil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wd-stadtteil-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--wd-white);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  padding: 1rem 1.1rem;
  position: relative;
  text-decoration: none;
  color: var(--wd-ink);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.wd-stadtteil-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--wd-indigo);
  opacity: 0;
  transition: opacity 0.2s;
}
.wd-stadtteil-card:hover {
  border-color: var(--wd-indigo);
  box-shadow: 0 6px 20px rgba(55,48,163,0.1);
  transform: translateY(-1px);
}
.wd-stadtteil-card:hover::before { opacity: 1; }

.wd-st-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.625rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--wd-indigo);
  background: var(--wd-indigo-pale);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.wd-st-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--wd-indigo-pale);
  border-radius: var(--wd-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wd-indigo);
  flex-shrink: 0;
}
.wd-st-icon svg { width: 1.1rem; height: 1.1rem; }

.wd-st-content { flex: 1; min-width: 0; }
.wd-st-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--wd-ink);
  margin-top: 0.25rem;
}
.wd-st-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--wd-muted);
  margin-top: 0.15rem;
}

.wd-st-arrow {
  width: 1rem;
  height: 1rem;
  color: var(--wd-muted);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}
.wd-stadtteil-card:hover .wd-st-arrow { transform: translateX(3px); color: var(--wd-indigo); }

/* PLZ + transport row */
.wd-plz-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
.wd-plz-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--wd-amber-light);
  color: #92400E;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}
.wd-plz-note {
  font-size: 0.82rem;
  color: var(--wd-muted);
}

/* ------------------------------------------------------------------ */
/* 11 · PREISE                                                         */
/* ------------------------------------------------------------------ */
.wd-price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.wd-price-card {
  background: var(--wd-white);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  padding: 1.25rem 1rem 1rem;
  text-align: center;
  box-shadow: var(--wd-card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.wd-pc-featured {
  border-color: var(--wd-indigo);
  box-shadow: 0 0 0 2px var(--wd-indigo), var(--wd-card-shadow);
  background: var(--wd-indigo-pale);
}

.wd-pc-icon {
  width: 2rem;
  height: 2rem;
  color: var(--wd-indigo);
  margin-bottom: 0.25rem;
}
.wd-pc-featured .wd-pc-icon { color: var(--wd-indigo-dark); }
.wd-pc-icon svg { width: 100%; height: 100%; }

.wd-pc-service {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--wd-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wd-pc-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--wd-indigo);
  line-height: 1;
}
.wd-pc-featured .wd-pc-amount { color: var(--wd-indigo-dark); }
.wd-pc-time {
  font-size: 0.75rem;
  color: var(--wd-muted);
}

/* Price table */
.wd-price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--wd-radius);
  border: 1px solid var(--wd-border);
  margin-bottom: 1.25rem;
}
.wd-price-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--wd-white);
  font-size: 0.9rem;
}
.wd-price-table thead tr {
  background: var(--wd-indigo);
  color: var(--wd-white);
}
.wd-price-table th {
  padding: 0.875rem 1.1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wd-price-table tbody tr { border-bottom: 1px solid var(--wd-border); }
.wd-price-table tbody tr:last-child { border-bottom: none; }
.wd-price-table tbody tr:nth-child(even) { background: var(--wd-bg); }
.wd-price-table td { padding: 0.8rem 1.1rem; color: var(--wd-ink); }
.wd-td-price {
  font-weight: 800;
  color: var(--wd-indigo);
  white-space: nowrap;
}

.wd-price-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  background: var(--wd-indigo-pale);
  border: 1px solid rgba(55,48,163,0.15);
  border-radius: var(--wd-radius-sm);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: var(--wd-ink);
}
.wd-price-notice svg { width: 1.1rem; height: 1.1rem; color: var(--wd-indigo); flex-shrink: 0; margin-top: 0.1rem; }
.wd-price-notice strong { color: var(--wd-indigo-dark); }

/* ------------------------------------------------------------------ */
/* 12 · LOCAL SEO INTRO                                                */
/* ------------------------------------------------------------------ */
.wd-local-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 760px) {
  .wd-local-wrap {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
  }
}

.wd-local-text .wd-section-label { display: block; margin-bottom: 0.5rem; }
.wd-local-text .wd-section-title { margin-bottom: 1rem; }
.wd-local-text p {
  font-size: 0.965rem;
  color: var(--wd-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.wd-local-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wd-indigo);
  border-bottom: 2px solid var(--wd-indigo-pale);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.wd-local-link svg { width: 0.9rem; height: 0.9rem; flex-shrink: 0; }
.wd-local-link:hover { border-color: var(--wd-indigo); }

.wd-local-landmarks h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--wd-ink);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--wd-amber);
}
.wd-landmarks-list { display: flex; flex-direction: column; gap: 0.6rem; }
.wd-landmarks-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--wd-muted);
}
.wd-landmarks-list li svg {
  width: 1rem;
  height: 1rem;
  color: var(--wd-indigo);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ------------------------------------------------------------------ */
/* 13 · FAQ                                                            */
/* ------------------------------------------------------------------ */
.wd-faq { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.5rem; }

.wd-faq-item {
  background: var(--wd-white);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.wd-faq-item[open] { border-color: var(--wd-indigo); }

.wd-faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--wd-ink);
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}
.wd-faq-summary::-webkit-details-marker { display: none; }
.wd-faq-summary:hover { background: var(--wd-indigo-pale); }
.wd-faq-item[open] .wd-faq-summary { color: var(--wd-indigo); background: var(--wd-indigo-pale); }

.wd-faq-arrow {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: var(--wd-muted);
  transition: transform 0.3s;
}
.wd-faq-item[open] .wd-faq-arrow { transform: rotate(180deg); color: var(--wd-indigo); }
.wd-faq-arrow svg { width: 100%; height: 100%; }

.wd-faq-answer {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--wd-muted);
  line-height: 1.7;
}
.wd-faq-answer p strong { color: var(--wd-ink); }
.wd-faq-answer a { color: var(--wd-indigo); text-decoration: underline; }

/* ------------------------------------------------------------------ */
/* 14 · CTA BAND                                                       */
/* ------------------------------------------------------------------ */
.wd-cta-band {
  background: linear-gradient(135deg, var(--wd-indigo-dark) 0%, var(--wd-indigo) 100%);
  padding-block: 4.5rem;
  position: relative;
  overflow: hidden;
}
.wd-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 50%, rgba(245,158,11,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.wd-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 860px) {
  .wd-cta-inner { grid-template-columns: 1fr auto; align-items: center; }
}

.wd-cta-text { color: var(--wd-white); }
.wd-cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wd-amber);
  margin-bottom: 0.5rem;
}
.wd-cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.wd-cta-text p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.wd-cta-text strong { color: var(--wd-amber); }

.wd-cta-nap { display: flex; flex-direction: column; gap: 0.5rem; }
.wd-cta-nap-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.wd-cta-nap-item svg { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--wd-amber); }
.wd-cta-nap-item a { color: var(--wd-amber); font-weight: 700; text-decoration: underline; }
.wd-cta-nap-item a:hover { color: #FDE68A; }

.wd-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
}
.wd-cta-actions .wd-btn { justify-content: center; }

/* ------------------------------------------------------------------ */
/* 15 · FOOTER                                                         */
/* ------------------------------------------------------------------ */
.wd-footer {
  background: #1A1C2E;
  color: rgba(255,255,255,0.75);
}

.wd-footer-accent {
  background: var(--wd-indigo-dark);
  padding-block: 0.625rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.wd-footer-accent-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
.wd-footer-sep { color: rgba(255,255,255,0.3); }
.wd-footer-accent a { color: var(--wd-amber); }
.wd-footer-accent a:hover { text-decoration: underline; }

.wd-footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 3rem;
}
@media (min-width: 560px) { .wd-footer-main { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .wd-footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.wd-footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  margin-top: 0.875rem;
  margin-bottom: 0.5rem;
}
.wd-footer-felix-link { font-size: 0.8rem; margin-bottom: 1.25rem; }
.wd-footer-felix-link a { color: var(--wd-amber); font-weight: 700; }
.wd-footer-felix-link a:hover { text-decoration: underline; }

.wd-footer-contacts { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.wd-footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
}
.wd-footer-contact-row svg { width: 0.9rem; height: 0.9rem; flex-shrink: 0; color: var(--wd-indigo-light); }
.wd-footer-contact-row a { color: rgba(255,255,255,0.75); }
.wd-footer-contact-row a:hover { color: var(--wd-white); text-decoration: underline; }

/* ProvenExpert pill in footer */
.wd-footer-pe {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0.375rem 0.875rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  transition: background 0.2s;
}
.wd-footer-pe:hover { background: rgba(255,255,255,0.12); }
.wd-pe-stars { color: var(--wd-amber); font-size: 0.85rem; letter-spacing: 0.05em; }
.wd-pe-score { font-weight: 800; color: var(--wd-white); }

.wd-footer-heading {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.875rem;
}
.wd-footer-list { display: flex; flex-direction: column; gap: 0.375rem; }
.wd-footer-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.wd-footer-list a:hover { color: var(--wd-white); }

.wd-footer-hours { margin-top: 0; }
.wd-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  padding-block: 0.2rem;
}
.wd-hours-val { font-weight: 700; color: rgba(255,255,255,0.8); }

.wd-footer-legal {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 1.25rem;
}
.wd-footer-legal-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.wd-footer-legal-links {
  display: flex;
  gap: 1rem;
}
.wd-footer-legal-links a { color: rgba(255,255,255,0.45); }
.wd-footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ------------------------------------------------------------------ */
/* 16 · MOBILE BOTTOM BAR                                              */
/* ------------------------------------------------------------------ */
.wd-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--wd-white);
  border-top: 1px solid var(--wd-border);
  box-shadow: 0 -4px 24px rgba(55,48,163,0.1);
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 860px) { .wd-mobile-bar { display: none; } }

.wd-mobile-bar-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 1rem;
  background: var(--wd-indigo-pale);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wd-indigo);
  gap: 0.5rem;
}
.wd-mobile-bar-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.wd-mobile-call,
.wd-mobile-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}
.wd-mobile-call svg,
.wd-mobile-wa svg { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }

.wd-mobile-call {
  background: var(--wd-indigo);
  color: var(--wd-white);
}
.wd-mobile-call:hover { background: var(--wd-indigo-dark); }

.wd-mobile-wa {
  background: var(--wd-wa);
  color: var(--wd-white);
}
.wd-mobile-wa:hover { background: var(--wd-wa-hover); }

/* Body padding to prevent content hidden under fixed bar */
body { padding-bottom: 84px; }
@media (min-width: 860px) { body { padding-bottom: 0; } }

/* ------------------------------------------------------------------ */
/* 17 · WA FLOAT (desktop bottom-right)                                */
/* ------------------------------------------------------------------ */
.wd-wa-float {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 3.25rem;
  height: 3.25rem;
  background: var(--wd-wa);
  color: var(--wd-white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.wd-wa-float svg { width: 1.65rem; height: 1.65rem; }
.wd-wa-float:hover { transform: scale(1.08); background: var(--wd-wa-hover); }
@media (min-width: 860px) { .wd-wa-float { display: flex; } }

/* ------------------------------------------------------------------ */
/* 18 · PRINT / ACCESSIBILITY                                          */
/* ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .wd-topbar, .wd-mobile-bar, .wd-wa-float, .wd-header-tel, .wd-burger { display: none !important; }
  .wd-hero { background: #fff !important; color: #000 !important; }
  .wd-hero-photo { display: none; }
  a { text-decoration: underline; }
}
