/*
Theme Name: Entrümpelungen Wolters – Bento Bold
Theme URI: https://entruempelungen-wolters.de
Description: WordPress-Theme für Entrümpelungen Wolters im Bento-Bold-Design – schnell, flexibel, preiswert. Bento-Grid-Hero, Pill-Style, Space Grotesk + Inter.
Version: 1.0
Author: Entrümpelungen Wolters
Text Domain: entruempelungen-wolters
*/

:root {
  /* === FARBSCHEMA – pro Kunde anpassen === */
  --bg:            #fafaf7;       /* Haupt-Hintergrund */
  --bg-section:    #ffffff;       /* Card / weiße Sektion */
  --bg-soft:       #f3f1ea;       /* sanft beige Sektion */
  --bg-dark:       #15151a;       /* dunkler Bereich */
  --bg-dark2:      #0d0d12;       /* Footer */
  --accent:        #f0ed3e;       /* Wolters-Gelb */
  --accent-dark:   #d8d51c;
  --accent-soft:   rgba(240,237,62,0.18);
  --accent-text:   #15151a;       /* Textfarbe AUF Akzent (Gelb → schwarzer Text!) */
  --text:          #15151a;
  --text-muted:    #5a5a5a;
  --text-light:    #8d8d8d;
  --border:        rgba(21,21,26,0.10);
  --border-light:  rgba(21,21,26,0.06);
  --shadow-sm:     0 1px 3px rgba(21,21,26,0.06), 0 1px 2px rgba(21,21,26,0.04);
  --shadow:        0 4px 16px rgba(21,21,26,0.06), 0 2px 8px rgba(21,21,26,0.04);
  --shadow-lg:     0 16px 48px rgba(21,21,26,0.10), 0 4px 16px rgba(21,21,26,0.06);
  --shadow-xl:     0 32px 80px rgba(21,21,26,0.18), 0 8px 24px rgba(21,21,26,0.08);

  /* === TYPOGRAFIE === */
  --font-head:     'Space Grotesk', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;

  /* === RUNDUNGEN (konsequent rund) === */
  --radius-sm:     12px;
  --radius:        20px;
  --radius-lg:     28px;
  --radius-xl:     36px;
  --radius-pill:   999px;

  /* === LAYOUT === */
  --section-pad:   6rem 5vw;
  --container:     1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}
h1 { font-size: clamp(2.6rem, 7vw, 5.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 500; letter-spacing: -0.03em; }
h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
p  { color: var(--text-muted); }

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

/* === EYEBROW (Pill, klein) === */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text);
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.section-eyebrow::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--accent); flex-shrink: 0;
}
.section-title { color: var(--text); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; line-height: 1.7; }

/* === BUTTONS (alle pill-shaped) === */
.btn-primary, .btn-yellow, .btn-outline, .btn-white, .btn-outline-white, .btn-whatsapp, .btn-call, .btn-wa-dark, .btn-mail-dark {
  font-family: var(--font-body);
  border-radius: var(--radius-pill);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--text); color: white; padding: 1rem 1.85rem;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none;
  transition: transform 0.18s, box-shadow 0.2s, background 0.2s;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-lg); color: white; }

.btn-yellow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--accent); color: var(--accent-text); padding: 1rem 1.85rem;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none;
  transition: transform 0.18s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 6px 20px rgba(255,90,31,0.30);
}
.btn-yellow:hover { background: var(--accent-dark); transform: translateY(-2px); color: var(--accent-text); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--bg-section); color: var(--text); padding: 1rem 1.85rem;
  font-size: 0.95rem; font-weight: 600;
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--text); color: var(--text); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-white {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: white; color: var(--text); padding: 1rem 1.85rem;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.18s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--text); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: transparent; color: white; padding: 1rem 1.85rem;
  border: 1px solid rgba(255,255,255,0.30);
  font-size: 0.95rem; font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.06); color: white; }

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--bg-section); color: var(--text); padding: 1rem 1.85rem;
  font-size: 0.95rem; font-weight: 600;
  border: 1px solid var(--border);
  transition: transform 0.18s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--text); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: #25D366; flex-shrink: 0; }

/* === HEADER / NAV === */
#site-header {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
  z-index: 200; height: 64px;
  width: calc(100% - 2rem); max-width: var(--container);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  display: flex; align-items: center; padding: 0 1.25rem 0 1.5rem;
  justify-content: space-between;
}
.site-logo img { height: 38px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s;
  font-weight: 500; padding: 0.5rem 0.95rem;
  display: flex; align-items: center; gap: 0.3rem;
  border-radius: var(--radius-pill);
}
.nav-menu > li > a:hover { color: var(--text); background: var(--bg-soft); }
.nav-menu > li > a.has-dropdown::after { content: '▾'; font-size: 0.55rem; opacity: 0.5; }
.nav-menu .nav-cta {
  background: var(--text); color: white !important; padding: 0.6rem 1.25rem;
  font-weight: 600; font-size: 0.85rem;
  transition: background 0.2s, transform 0.18s; margin-left: 0.5rem;
  box-shadow: var(--shadow-sm);
}
.nav-menu .nav-cta:hover { background: #000; color: white !important; transform: translateY(-1px); }

.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 12px;
  background: transparent;
  z-index: 300;
}
.nav-dropdown-inner {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); min-width: 240px; padding: 0.6rem;
  list-style: none;
}
.nav-menu > li:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 0.6rem 0.9rem; font-size: 0.875rem;
  color: var(--text-muted); border-radius: var(--radius-sm);
  transition: all 0.15s; font-weight: 400;
}
.nav-dropdown a:hover { background: var(--bg-soft); color: var(--text); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; cursor: pointer; border-radius: 50%; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* === HERO – asymmetrisch, große Type, ohne Bild === */
.hero {
  padding: calc(64px + 5rem) 5vw 4rem;
  background: var(--bg);
  position: relative;
}
.hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: end;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--bg-section); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 0.5rem 1.1rem; margin-bottom: 2rem;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text); width: fit-content;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--accent-soft); }
  50% { box-shadow: 0 0 0 6px var(--accent-soft); }
}
.hero-title {
  color: var(--text);
  margin-bottom: 1.75rem;
  letter-spacing: -0.045em;
  line-height: 0.98;
  font-weight: 500;
}
.hero-title em {
  font-style: normal; color: var(--accent);
  font-weight: 600;
}
.hero-sub {
  font-size: 1.15rem; color: var(--text-muted); max-width: 540px;
  margin-bottom: 2.5rem; line-height: 1.6;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* Hero rechte Seite – Floating-Karte mit Kontakt */
.hero-side {
  display: flex; flex-direction: column; gap: 1rem;
}
.hero-contact-card {
  background: var(--bg-dark); color: white;
  padding: 2rem; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
}
.hero-contact-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: var(--accent); opacity: 0.18;
  border-radius: 50%; filter: blur(40px);
}
.hero-contact-label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 0.5rem;
  position: relative;
}
.hero-contact-phone {
  font-family: var(--font-head); font-size: 1.85rem; font-weight: 600;
  color: white; letter-spacing: -0.03em; margin-bottom: 0.4rem;
  position: relative;
}
.hero-contact-hours { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; position: relative; }
.hero-contact-actions { display: flex; flex-direction: column; gap: 0.6rem; position: relative; }
.hero-contact-actions .btn-yellow,
.hero-contact-actions .btn-outline-white { width: 100%; justify-content: center; }
.hero-contact-actions .btn-outline-white { padding: 0.85rem 1.5rem; }

/* Trust-Strip unter Hero */
.hero-trust-strip {
  max-width: var(--container); margin: 4rem auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: 0 5vw;
}
.trust-strip-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-section); border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.trust-strip-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.trust-strip-item strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.trust-strip-item span { font-size: 0.72rem; color: var(--text-light); }

/* === BENTO GRID – Sektion direkt unter Hero === */
.bento-section { padding: 6rem 5vw 4rem; background: var(--bg); }
.bento-inner { max-width: var(--container); margin: 0 auto; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.bento-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.bento-card.bento-image {
  padding: 0;
}
.bento-card.bento-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.bento-card.bento-dark {
  background: var(--bg-dark); color: white;
}
.bento-card.bento-dark h3 { color: white; }
.bento-card.bento-dark p { color: rgba(255,255,255,0.7); }
.bento-card.bento-accent {
  background: var(--accent); color: var(--accent-text);
}
.bento-card.bento-accent h3 { color: var(--accent-text); }
.bento-card.bento-accent p { color: var(--accent-text); opacity: 0.9; }

/* Bento spans */
.bento-2x1 { grid-column: span 2; }
.bento-2x2 { grid-column: span 2; grid-row: span 2; }
.bento-3x1 { grid-column: span 3; }
.bento-1x2 { grid-row: span 2; }

.bento-card .bento-num {
  font-family: var(--font-head); font-size: 3.5rem; font-weight: 500;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.4rem;
}
.bento-card .bento-label {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.5;
}
.bento-card.bento-dark .bento-label { color: rgba(255,255,255,0.65); }
.bento-card.bento-accent .bento-num,
.bento-card.bento-accent .bento-label { color: var(--accent-text); }

.bento-card h3 { margin-bottom: 0.5rem; }
.bento-card p { font-size: 0.9rem; line-height: 1.55; }

/* === TESTIMONIALS (Trustindex) – direkt nach Hero === */
.testimonials-section {
  padding: 5rem 5vw;
  background: var(--bg);
}
.testimonials-inner {
  max-width: var(--container); margin: 0 auto; text-align: center;
}
.testimonials-section .section-eyebrow { margin-left: auto; margin-right: auto; }
.testimonials-section .section-sub { margin-left: auto; margin-right: auto; }

/* === LEISTUNGEN === */
.leistungen-section {
  padding: var(--section-pad);
  background: var(--bg-soft);
}
.leistungen-inner { max-width: var(--container); margin: 0 auto; }
.leistungen-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 2rem; margin-bottom: 3.5rem;
}
.leistungen-header h2 { max-width: 600px; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: block; box-shadow: var(--shadow-sm);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-icon {
  width: 56px; height: 56px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
  transition: background 0.25s, color 0.25s;
}
.service-card:hover .service-icon {
  background: var(--accent); color: var(--accent-text);
}
.service-card h3 { color: var(--text); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text); text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.45rem 1rem; background: var(--bg-soft);
  border-radius: var(--radius-pill);
  transition: all 0.2s;
}
.service-card:hover .service-link { background: var(--accent); color: var(--accent-text); }

/* === PROZESS – große Schritt-Karten in Reihe === */
.prozess-section { padding: var(--section-pad); background: var(--bg); }
.prozess-inner { max-width: var(--container); margin: 0 auto; }
.prozess-header { text-align: center; margin-bottom: 4rem; }
.prozess-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.prozess-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}
.prozess-step {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--text); color: white;
  border-radius: 50%;
  font-family: var(--font-head); font-weight: 600; font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.prozess-step:nth-child(2) .step-num { background: var(--accent); color: var(--accent-text); }
.prozess-step h3 { color: var(--text); margin-bottom: 0.6rem; }
.prozess-step p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* === VORHER / NACHHER – echter Slider === */
.vorher-nachher-section { padding: var(--section-pad); background: var(--bg-soft); }
.vn-inner { max-width: var(--container); margin: 0 auto; }
.vn-header { text-align: center; margin-bottom: 3.5rem; }
.vn-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.vn-header .section-sub { margin: 0 auto; }
.vn-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  user-select: none;
  aspect-ratio: 16 / 9;
  background: var(--bg-dark);
}
.vn-slider-img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.vn-slider-img-after { clip-path: inset(0 0 0 50%); transition: clip-path 0.05s; }
.vn-slider-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 4px; background: white;
  transform: translateX(-50%);
  cursor: ew-resize;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}
.vn-slider-handle::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 56px; height: 56px;
  background: white; border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-lg);
}
.vn-slider-handle::after {
  content: '⟷';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem; color: var(--text); font-weight: 700;
  pointer-events: none;
}
.vn-label-before, .vn-label-after {
  position: absolute; top: 1.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.vn-label-before {
  left: 1.5rem;
  background: rgba(0,0,0,0.7); color: white;
  backdrop-filter: blur(8px);
}
.vn-label-after {
  right: 1.5rem;
  background: var(--accent); color: var(--accent-text);
}
.vn-hint {
  display: flex; justify-content: center; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.85rem; color: var(--text-muted);
}
.vn-hint::before, .vn-hint::after {
  content: ''; flex: 1; max-width: 40px; height: 1px;
  background: var(--border);
}

/* === ÜBER UNS === */
.ueber-section { padding: var(--section-pad); background: var(--bg); }
.ueber-inner { max-width: var(--container); margin: 0 auto; }
.ueber-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.ueber-text h2 { margin-bottom: 1.5rem; }
.ueber-text p {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 1.2rem;
}
.ueber-features { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.ueber-features li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  font-size: 0.92rem; color: var(--text); font-weight: 500;
}
.ueber-features li::before {
  content: '✓';
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--accent); color: var(--accent-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
}
.ueber-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.ueber-image-wrap img { width: 100%; height: auto; display: block; }
.ueber-image-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--bg-section);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.85rem;
}
.ueber-image-badge-icon {
  width: 40px; height: 40px;
  background: var(--accent); color: var(--accent-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ueber-image-badge-text strong { display: block; font-size: 0.9rem; color: var(--text); }
.ueber-image-badge-text span { font-size: 0.75rem; color: var(--text-muted); }

/* === REGIONEN === */
.regionen-section { padding: var(--section-pad); background: var(--bg-soft); }
.regionen-inner { max-width: var(--container); margin: 0 auto; }
.regionen-header { text-align: center; margin-bottom: 3rem; }
.regionen-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.regionen-header .section-sub { margin: 0 auto; }
.regionen-grid {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center;
}
.region-pill {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.region-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-text);
  transform: translateY(-2px);
}

/* === FAQ === */
.faq-section { padding: var(--section-pad); background: var(--bg); }
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.85rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.faq-item:hover { border-color: var(--accent); }
.faq-item.open { box-shadow: var(--shadow); border-color: var(--accent); }
.faq-q {
  font-size: 1rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q::after {
  content: '+';
  color: var(--accent-text); background: var(--accent);
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 600; flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-a {
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.7; margin-top: 1rem;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q::after { content: '−'; }

/* === KONTAKT === */
.kontakt-section { padding: var(--section-pad); background: var(--bg-soft); }
.kontakt-inner { max-width: var(--container); margin: 0 auto; }
.kontakt-header { text-align: center; margin-bottom: 3.5rem; }
.kontakt-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 3rem; align-items: start;
}
.kontakt-info p {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 2rem;
}
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.contact-details li {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-section);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem; color: var(--text);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.contact-details li .ci {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-details li a { color: var(--text); font-weight: 500; }

/* === FORM === */
.contact-form-wrap {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.95rem 1.15rem;
  color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  background: var(--bg-section);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }
.form-privacy { font-size: 0.75rem; color: var(--text-light); margin-top: 1rem; line-height: 1.55; }

/* === PAGE HERO (Sub-Pages) === */
.page-hero {
  padding: calc(64px + 6rem) 5vw 4.5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border-light);
}
.page-hero-inner { max-width: var(--container); margin: 0 auto; }
.page-hero h1 {
  color: var(--text);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.045em;
  line-height: 1;
  font-weight: 500;
}
.page-hero h1 em { font-style: normal; color: var(--accent); font-weight: 600; }
.page-hero .lead {
  font-size: 1.15rem; color: var(--text-muted);
  max-width: 680px; line-height: 1.6;
}
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  font-size: 0.78rem; color: var(--text-light);
  margin-bottom: 1.75rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.4; }

.page-hero-actions {
  display: flex; gap: 0.85rem; margin-top: 2.25rem; flex-wrap: wrap;
}
.region-nearby {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem;
}
.nearby-link {
  font-size: 0.78rem; color: var(--text-muted);
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.nearby-link:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-text); }

/* === CONTENT SECTIONS (Sub-Page Body) === */
.content-section { padding: var(--section-pad); background: var(--bg); }
.content-section.alt { background: var(--bg-soft); }
.content-section .container { max-width: var(--container); }
.content-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 4rem; align-items: start;
}
.content-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.1rem; }
.content-text h3 { color: var(--text); margin: 1.75rem 0 0.6rem; font-size: 1.15rem; }
.checklist { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li {
  display: flex; gap: 0.85rem; align-items: flex-start;
  font-size: 0.92rem; color: var(--text);
}
.checklist li::before {
  content: '✓';
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--accent); color: var(--accent-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  margin-top: 1px;
}
.info-box {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.info-box h4 {
  color: var(--text); font-size: 0.95rem; font-weight: 600;
  margin-bottom: 0.45rem;
  display: flex; align-items: center; gap: 0.55rem;
}
.info-box h4::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.info-box p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* === CTA BANNER === */
.cta-banner {
  background: var(--bg-dark);
  padding: 5rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--accent); opacity: 0.18;
  border-radius: 50%; filter: blur(80px);
}
.cta-banner::after {
  content: ''; position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  background: var(--accent); opacity: 0.10;
  border-radius: 50%; filter: blur(80px);
}
.cta-banner-inner { max-width: 800px; margin: 0 auto; position: relative; }
.cta-banner h2 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.03em;
}
.cta-banner h2 em { font-style: normal; color: var(--accent); font-weight: 600; }
.cta-banner p {
  color: rgba(255,255,255,0.65); margin-bottom: 2.5rem;
  font-size: 1.05rem; line-height: 1.6;
}
.cta-banner-actions { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
#site-footer {
  background: var(--bg-dark2);
  padding: 5rem 5vw 0;
  color: rgba(255,255,255,0.7);
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { height: 40px; width: auto; }
.footer-brand-text { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 1.25rem; line-height: 1.65; max-width: 320px; }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.25rem; font-weight: 600;
  font-family: var(--font-body);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  padding: 1.75rem 0;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* === STICKY MOBILE CTA === */
.sticky-mobile {
  display: none;
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  background: var(--accent); color: var(--accent-text);
  padding: 1rem 1.5rem;
  text-align: center; font-weight: 600; font-size: 0.95rem;
  z-index: 300;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xl);
}

/* === LEGAL === */
.legal-section {
  padding: calc(64px + 6rem) 5vw 4rem;
  max-width: 880px;
  margin: 0 auto;
}
.legal-section h1 { color: var(--text); margin-bottom: 2rem; font-size: clamp(2rem, 4vw, 3rem); }
.legal-section h2 {
  color: var(--text); font-size: 1.2rem;
  font-family: var(--font-head); font-weight: 600;
  margin: 2.25rem 0 0.6rem;
}
.legal-section p, .legal-section li {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 0.75rem;
}
.legal-section ul { padding-left: 1.5rem; }
.legal-section a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }

/* === FAQ DESKTOP GRID (für Sub-Pages, optional) === */
.faq-desktop-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem; margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .faq-desktop-grid { display: flex; flex-direction: column; }
}

/* === COUNTER === */
.stat-num { transition: opacity 0.3s; }

/* === RESPONSIVE TABLET === */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-side { max-width: 480px; }
  .hero-trust-strip { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column; position: absolute;
    top: 80px; left: 0; right: 0;
    background: white; border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem; gap: 0.4rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-dropdown { position: static; box-shadow: none; border: none; padding-top: 0; }
  .nav-dropdown-inner { box-shadow: none; border: none; background: var(--bg-soft); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .bento-2x2 { grid-column: span 2; grid-row: span 2; }
  .bento-3x1 { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .prozess-grid { grid-template-columns: 1fr; }
  .ueber-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .sticky-mobile { display: block; }
  body { padding-bottom: 80px; }
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 767px) {
  :root { --section-pad: 4rem 1.25rem; }
  #site-header {
    top: 0.6rem; width: calc(100% - 1.2rem);
    padding: 0 0.75rem 0 1rem;
    height: 60px;
  }
  .site-logo img { height: 32px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column; position: absolute;
    top: 70px; left: 0; right: 0;
    background: white; border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem; gap: 0.4rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-dropdown { position: static; box-shadow: none; border: none; padding-top: 0; }
  .nav-dropdown-inner { box-shadow: none; border: none; background: var(--bg-soft); padding: 0.4rem; }
  .hero { padding: calc(60px + 3rem) 1.25rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-title { font-size: 2.5rem; line-height: 1; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions > * { justify-content: center; }
  .hero-trust-strip {
    grid-template-columns: 1fr; gap: 0.6rem; margin-top: 3rem; padding: 0 1.25rem;
  }
  .bento-section { padding: 4rem 1.25rem 3rem; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card { min-height: 200px; }
  .bento-card.bento-image { min-height: 240px; }
  .bento-2x2, .bento-3x1, .bento-2x1, .bento-1x2 {
    grid-column: span 1; grid-row: span 1;
  }
  .leistungen-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .prozess-grid { grid-template-columns: 1fr; }
  .vn-slider { aspect-ratio: 4 / 5; }
  .vn-label-before, .vn-label-after { font-size: 0.66rem; padding: 0.4rem 0.85rem; top: 1rem; }
  .vn-label-before { left: 1rem; }
  .vn-label-after { right: 1rem; }
  .vn-slider-handle::before { width: 44px; height: 44px; }
  .vn-slider-handle::after { font-size: 1.2rem; }
  .ueber-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero { padding: calc(60px + 3rem) 1.25rem 3rem; }
  .page-hero h1 { font-size: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-mobile { display: block; }
  body { padding-bottom: 80px; }
  .cta-banner { padding: 4rem 1.25rem; }
}

/* === ÜBER UNS – Werte-Sektion (Schnell. Flexibel. Preiswert.) === */
.ueber-werte-section { padding: var(--section-pad); background: var(--bg-soft); }
.ueber-werte-inner { max-width: var(--container); margin: 0 auto; }
.ueber-werte-header { text-align: center; margin-bottom: 3.5rem; }
.ueber-werte-header .section-eyebrow { margin-left: auto; margin-right: auto; }
.ueber-werte-header .section-sub { margin: 0 auto; }

.ueber-werte-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 4rem;
}
.werte-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.werte-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.werte-icon {
  width: 56px; height: 56px;
  background: var(--accent); color: var(--accent-text);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem; font-weight: 700;
}
.werte-card h3 { color: var(--text); margin-bottom: 0.6rem; font-size: 1.4rem; }
.werte-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }

.ueber-werte-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  background: var(--bg-section);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}
.ueber-werte-image { border-radius: var(--radius-lg); overflow: hidden; }
.ueber-werte-image img { width: 100%; height: auto; display: block; }
.ueber-werte-list h3 { color: var(--text); margin-bottom: 1.5rem; font-size: 1.2rem; }

/* === REGIONEN-NOTE-BOX (Übersichtsseite) === */
.regionen-note {
  margin-top: 3rem;
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.regionen-note h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.regionen-note p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }
.regionen-note a {
  color: var(--text); font-weight: 600;
  border-bottom: 2px solid var(--accent);
  transition: background 0.2s;
}
.regionen-note a:hover { background: var(--accent-soft); }

/* === RESPONSIVE für neue Sektionen === */
@media (min-width: 768px) and (max-width: 1023px) {
  .ueber-werte-grid { grid-template-columns: 1fr; }
  .ueber-werte-features { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 767px) {
  .ueber-werte-grid { grid-template-columns: 1fr; }
  .ueber-werte-features { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
}
