/* ============================================================
   messie-raeumer.de — Brand-Design aus Logo
   Grün: #3d7a28  |  Gelb: #f5c200  |  Basis: Hellgrau-Grausystem
   Font: Nunito (Logo-Match)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800&display=swap');

:root {
  /* Brand-Farben aus dem Logo */
  --green:         #3d7a28;
  --green-dark:    #2b5a1c;
  --green-light:   #4e9933;
  --yellow:        #f5c200;
  --yellow-dark:   #d4a800;
  --yellow-light:  #ffd740;

  /* Aliase für bestehende Klassen */
  --primary:       #3d7a28;
  --primary-dark:  #2b5a1c;
  --primary-light: #4e9933;
  --gold:          #f5c200;
  --gold-light:    #ffd740;

  /* Grau-System: Hintergrund → leicht dunkler zwischen Sections */
  --bg-0:          #ffffff;   /* weiß – Header, Karten */
  --bg-1:          #f4f4f4;   /* hell – erste Section */
  --bg-2:          #ebebeb;   /* etwas dunkler – alternating */
  --bg-3:          #e2e2e2;   /* noch dunkler – z.B. FAQ */
  --bg-dark:       #1a2010;   /* dunkel – Footer, CTA */

  /* Kompatibilitäts-Aliase */
  --bg:            #f4f4f4;
  --bg-alt:        #ebebeb;
  --bg-section:    #e2e2e2;
  --white:         #ffffff;

  /* Text */
  --dark:          #1a2010;
  --text:          #2c3a20;
  --text-muted:    #6b7a5e;

  /* Borders & Schatten */
  --border:        #d8d8d8;
  --border-dark:   #c4c4c4;
  --shadow-sm:     0 1px 4px rgba(0,0,0,.07);
  --shadow:        0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.13);

  --radius:        6px;
  --radius-lg:     10px;
  --transition:    .2s ease;
  --max-width:     1240px;
  --font:          'Nunito', 'Segoe UI', Arial, sans-serif;
  --font-heading:  'Nunito', 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-1);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }

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

/* ── Typografie ── */
h1,h2,h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--dark);
  font-weight: 900;
}
h1 { font-size: clamp(2rem, 5.5vw, 3.4rem); font-style: italic; }
h2 { font-size: clamp(1.5rem, 3.8vw, 2.4rem); font-weight: 800; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-family: var(--font); font-weight: 700; color: var(--dark); }

.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: .5rem; }
.section-title p { color: var(--text-muted); max-width: 580px; margin: 0 auto; font-size: .97rem; }
.section-title .title-line {
  display: block; width: 44px; height: 3px;
  background: var(--yellow); margin: 1rem auto 0; border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .72rem 1.7rem;
  border-radius: var(--radius);
  font-size: .94rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; box-shadow: var(--shadow-sm); }
.btn-gold { background: var(--yellow); color: var(--dark); border-color: var(--yellow); font-weight: 800; }
.btn-gold:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-white { background: #fff; color: var(--green); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: var(--bg-1); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ── Topbar ── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  font-family: var(--font);
  padding: 6px 0;
  border-bottom: 2px solid var(--yellow);
}
.topbar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.topbar a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.topbar a:hover { color: var(--yellow); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.4rem; }
.topbar-badge {
  background: var(--yellow); color: var(--dark);
  font-weight: 800; padding: 1px 9px;
  border-radius: 3px; font-size: .73rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.topbar-icon { width: 12px; height: 12px; display: inline-block; vertical-align: middle; margin-right: 4px; opacity: .7; }

/* ── Header ── */
.site-header {
  background: #ffffff;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border-bottom: 3px solid var(--yellow);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 24px; height: 66px;
  max-width: var(--max-width); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo img.logo-img { height: 44px; width: auto; }

.nav-links { display: none; list-style: none; gap: 0; align-items: center; }
.nav-links a {
  color: var(--dark);
  font-size: .9rem; font-weight: 700;
  padding: 6px 13px; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--green); background: rgba(61,122,40,.07); }
.nav-links .nav-cta {
  background: var(--green); color: #fff !important;
  padding: 8px 20px; margin-left: 8px; font-weight: 800;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover { background: var(--green-dark); }

.burger {
  background: none; border: 2px solid var(--border);
  border-radius: var(--radius); padding: 7px 10px;
  cursor: pointer; display: flex; flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--dark); border-radius: 2px; }

.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 0 24px 16px; box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); font-weight: 700; padding: 12px 0;
  border-bottom: 1px solid var(--border); font-size: .93rem;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--green); font-weight: 800; }
.mobile-menu a:hover { color: var(--green); }

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .burger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ── Sections – Grau-System ── */
.section { padding: 4.5rem 0; background: var(--bg-1); }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }

/* Feine Trennlinie zwischen Sections */
.section + .section,
.section + .section-alt,
.section-alt + .section,
.section-alt + .section-alt {
  border-top: 1px solid var(--border);
}

/* ── Hero ── */
.hero {
  background: var(--green-dark);
  background-image: linear-gradient(150deg, #1a3810 0%, #2b5a1c 40%, #3d7a28 100%);
  color: #fff; padding: 4.5rem 0 3.5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--yellow);
}

/* Zwei-Spalten-Layout */
.hero-split {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-split { grid-template-columns: 1fr 420px; gap: 3.5rem; }
}

.hero-content { position: relative; z-index: 1; }

.hero-image {
  position: relative; z-index: 1;
  display: none;
}
@media (min-width: 900px) { .hero-image { display: block; } }
.hero-image img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  border: 3px solid rgba(255,255,255,.12);
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(245,194,0,.18); border: 1px solid rgba(245,194,0,.4);
  color: var(--yellow-light);
  font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 4px 14px; border-radius: 3px; margin-bottom: 1.2rem;
}
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero-lead { font-size: clamp(.97rem,2.2vw,1.1rem); color: rgba(255,255,255,.82); margin-bottom: 2.2rem; max-width: 580px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 3rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat strong { display: block; font-size: 1.9rem; font-family: var(--font-heading); color: var(--yellow-light); font-weight: 900; line-height: 1; }
.hero-stat span { font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .07em; margin-top: .2rem; display: block; }

/* ── Gold-Linie (section divider) ── */
.gold-line { height: 1px; background: var(--border); border: none; margin: 0; }

/* ── Cards ── */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .cards-grid { grid-template-columns: repeat(3,1fr); } }

.card {
  background: var(--bg-0);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-icon { margin-bottom: 1rem; color: var(--green); }
.card-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; background: var(--green);
  color: #fff; border-radius: 50%; font-size: 1rem; font-weight: 800; margin-bottom: 1rem;
}
.card h3 { margin-bottom: .5rem; color: var(--dark); font-size: 1.1rem; }
.card p { color: var(--text-muted); font-size: .9rem; line-height: 1.7; }
.card-gold-border { border-top: 3px solid var(--yellow); }

/* ── Process steps ── */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:640px){ .steps{grid-template-columns:repeat(2,1fr);} }
@media(min-width:900px){ .steps{grid-template-columns:repeat(4,1fr);} }

.step { text-align: center; padding: 1.5rem 1rem; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  border: 2px solid var(--yellow); border-radius: 50%;
  font-size: 1.25rem; font-weight: 900;
  color: var(--green); margin: 0 auto .9rem;
}
.step h4 { color: var(--dark); margin-bottom: .4rem; font-size: .97rem; }
.step p { color: var(--text-muted); font-size: .86rem; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

.pricing-card {
  background: var(--bg-0); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  position: relative; transition: box-shadow var(--transition);
}
.pricing-card.featured { border-color: var(--green); border-width: 2px; box-shadow: var(--shadow); }
.pricing-card.featured .pricing-head { background: var(--green); color: #fff; margin: -2rem -2rem 1.5rem; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.pricing-card.featured .pricing-head h3 { color: #fff; }
.pricing-head { background: var(--bg-2); border-radius: var(--radius-lg) var(--radius-lg) 0 0; margin: -2rem -2rem 1.5rem; padding: 1.2rem; }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--yellow); color: var(--dark);
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: 3px 12px; border-radius: 3px; white-space: nowrap;
}
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 0; }
.pricing-price { font-size: 2.3rem; font-weight: 900; color: var(--green); margin: .8rem 0; line-height: 1; }
.pricing-price small { font-size: .82rem; font-weight: 400; color: var(--text-muted); }
.pricing-list { list-style: none; text-align: left; margin: 1.2rem 0; display: flex; flex-direction: column; gap: .5rem; }
.pricing-list li { font-size: .88rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: .5rem; }
.pricing-list li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }

/* ── FAQ ── */
.faq-list {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 1px;
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.faq-item { background: var(--bg-0); border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none;
  text-align: left; padding: 1rem 1.4rem;
  font-size: .94rem; font-weight: 700; color: var(--dark);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; font-family: var(--font);
  transition: color var(--transition), background var(--transition);
}
.faq-question:hover { color: var(--green); background: rgba(61,122,40,.04); }
.faq-toggle {
  width: 22px; height: 22px; border: 2px solid var(--border-dark);
  border-radius: 50%; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0; transition: all var(--transition); line-height: 1;
}
.faq-question.open .faq-toggle { background: var(--green); color: #fff; border-color: var(--green); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .2s ease;
  padding: 0 1.4rem; color: var(--text-muted); font-size: .9rem; line-height: 1.75;
}
.faq-answer.open { max-height: 700px; padding: 0 1.4rem 1.2rem; }

/* ── Breadcrumb ── */
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.55); margin-bottom: 1.2rem; display: flex; flex-wrap: wrap; gap: .3rem; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,.78); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ── Page Hero (Stadt / Landkreis) ── */
.page-hero {
  background: var(--green-dark);
  background-image: linear-gradient(150deg, #1a3810 0%, #3d7a28 100%);
  color: #fff; padding: 3rem 0 2.5rem; position: relative;
}
.page-hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background: var(--yellow); }
.page-hero h1 { color: #fff; margin-bottom: .5rem; font-style: italic; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 600px; }

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: center;
}
.page-hero-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  border: 2px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}
.page-hero-img img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}
.page-hero-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.75);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .35rem .6rem;
}
@media (max-width: 860px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
}

/* ── Trust badges ── */
.trust-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.trust-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px; padding: .3rem .85rem;
  font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.88);
  text-transform: uppercase; letter-spacing: .06em;
}
.trust-badge.green { background: rgba(61,122,40,.25); border-color: rgba(61,122,40,.5); color: #fff; }
.trust-badge.dark  { background: rgba(61,122,40,.08); border-color: rgba(61,122,40,.2); color: var(--green-dark); }

/* ── Bundesländer-Grid ── */
.bl-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
@media (min-width: 500px) { .bl-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 780px) { .bl-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1100px) { .bl-grid { grid-template-columns: repeat(4,1fr); } }

.bl-card {
  background: var(--bg-0); padding: 1.2rem 1.4rem;
  text-decoration: none; color: var(--dark);
  display: flex; align-items: center; gap: .9rem;
  transition: background var(--transition), color var(--transition);
}
.bl-card:hover { background: var(--green); color: #fff; }
.bl-card:hover h3, .bl-card:hover .bl-count { color: rgba(255,255,255,.85); }
.bl-icon { font-size: 1.4rem; flex-shrink: 0; }
.bl-card h3 { font-size: .9rem; font-weight: 700; margin-bottom: .1rem; color: var(--dark); }
.bl-count { font-size: .75rem; color: var(--text-muted); }

/* ── Landkreis-Liste ── */
.lk-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
@media (min-width: 500px) { .lk-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 800px) { .lk-grid { grid-template-columns: repeat(3,1fr); } }

.lk-card {
  background: var(--bg-0); padding: .9rem 1.2rem;
  text-decoration: none; color: var(--dark);
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  transition: background var(--transition), color var(--transition);
}
.lk-card:hover { background: rgba(61,122,40,.06); color: var(--green); }
.lk-card-name { font-weight: 700; font-size: .88rem; }
.lk-card-count { font-size: .75rem; color: var(--text-muted); white-space: nowrap; }
.lk-arrow { color: var(--border-dark); font-size: .9rem; }

/* ── Städte-Chips ── */
.cities-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.city-chip {
  background: var(--bg-0); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .3rem .85rem;
  font-size: .83rem; color: var(--text); transition: all var(--transition);
}
.city-chip:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ── Stadtseite Layout ── */
.stadtseite-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 1020px) { .stadtseite-layout { grid-template-columns: 1fr 300px; } }

.content-block {
  background: var(--bg-0);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; margin-bottom: 1.2rem;
}
.content-block:last-child { margin-bottom: 0; }
.content-block h2 {
  color: var(--dark); margin-bottom: .9rem; font-size: 1.35rem;
  padding-bottom: .7rem; border-bottom: 2px solid var(--yellow);
}
.content-block h3 { color: var(--green); margin-bottom: .5rem; font-size: 1rem; }
.content-block p { color: var(--text-muted); margin-bottom: .8rem; line-height: 1.8; font-size: .93rem; }
.content-block p:last-child { margin-bottom: 0; }
.content-block ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.content-block ul li { font-size: .9rem; color: var(--text-muted); display: flex; gap: .6rem; line-height: 1.6; }
.content-block ul li::before { content: '—'; color: var(--yellow-dark); font-weight: 700; flex-shrink: 0; }
.content-block ol { list-style: none; display: flex; flex-direction: column; gap: .9rem; counter-reset: ol; }
.content-block ol li { font-size: .9rem; color: var(--text-muted); display: flex; gap: .8rem; counter-increment: ol; line-height: 1.7; }
.content-block ol li::before {
  content: counter(ol); min-width: 24px; height: 24px;
  background: var(--green); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; flex-shrink: 0; margin-top: .15rem;
}
.content-block strong { color: var(--dark); }

/* Sidebar */
.sidebar-block {
  background: var(--bg-0); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem;
}
.sidebar-block:last-child { margin-bottom: 0; }
.sidebar-head {
  background: var(--dark); color: rgba(255,255,255,.9);
  padding: .85rem 1.2rem; font-weight: 800;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .09em;
}
.sidebar-body { padding: 1.2rem; }
.sidebar-phone { font-size: 1.3rem; font-weight: 900; color: var(--green); display: block; margin-bottom: .3rem; }
.sidebar-email { font-size: .82rem; color: var(--text-muted); display: block; }
.sidebar-cta { display: block; text-align: center; margin-top: 1rem; width: 100%; }
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.sidebar-list li { font-size: .85rem; color: var(--text-muted); display: flex; gap: .5rem; align-items: flex-start; }
.sidebar-list li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }
.sidebar-price-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px solid var(--bg-2); font-size: .84rem; color: var(--text-muted); }
.sidebar-price-row:last-child { border-bottom: none; }
.sidebar-price-val { font-weight: 800; color: var(--green); font-size: .9rem; }

/* ── Kosten-Tabelle ── */
.price-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.price-table th { background: var(--dark); color: rgba(255,255,255,.9); padding: .75rem 1rem; text-align: left; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.price-table tr:nth-child(even) td { background: var(--bg-2); }
.price-table td { padding: .65rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.price-table .price-val { font-weight: 800; color: var(--green); }

/* ── Vor/Nachher ── */
.ba-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 700px) { .ba-grid { grid-template-columns: 1fr 1fr; } }

.ba-item { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--bg-0); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-img-wrap { position: relative; background: var(--bg-2); }
.ba-img-wrap img { width: 100%; height: 190px; object-fit: cover; }
.ba-label {
  position: absolute; bottom: 6px; left: 6px;
  background: rgba(0,0,0,.65); color: #fff;
  font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 8px; border-radius: 3px;
}
.ba-label.after { background: var(--green); }
.ba-caption { padding: .85rem 1rem; font-size: .84rem; color: var(--text-muted); }
.ba-caption strong { display: block; color: var(--dark); margin-bottom: .2rem; font-size: .88rem; }

/* ── Umgebung / Nachbarorte ── */
.umgebung-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.umgebung-tag {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .22rem .75rem;
  font-size: .8rem; color: var(--text-muted); transition: all var(--transition);
}
.umgebung-tag:hover { background: var(--green); color: #fff; border-color: var(--green); }

/* ── Check-list ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: .55rem; padding-left: 0; margin-top: .8rem; }
.check-list li { font-size: .88rem; color: var(--text-muted); display: flex; gap: .6rem; align-items: flex-start; }
.check-list li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }

/* ── Kontaktformular ── */
.contact-wrap { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .contact-wrap { grid-template-columns: 1fr 1.6fr; } }

.contact-info h3 { color: var(--dark); margin-bottom: 1.4rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.2rem; }
.contact-icon {
  width: 36px; height: 36px; background: var(--bg-2);
  border: 1px solid var(--border); color: var(--green);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.contact-detail p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; }
.contact-detail p strong { color: var(--dark); display: block; margin-bottom: .1rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.contact-detail a { color: var(--dark); font-weight: 800; font-size: 1rem; }
.contact-detail a:hover { color: var(--green); }

.form-card { background: var(--bg-0); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .3rem; }
.form-group label { font-size: .75rem; font-weight: 800; color: var(--dark); text-transform: uppercase; letter-spacing: .06em; }
.form-group input, .form-group textarea {
  padding: .65rem .9rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: .93rem; font-family: var(--font);
  color: var(--text); background: var(--bg-1);
  transition: border-color var(--transition), box-shadow var(--transition); width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,122,40,.12); background: #fff;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-full { grid-column: 1 / -1; }
.form-submit { margin-top: .5rem; width: 100%; padding: .85rem; font-size: .97rem; border-radius: var(--radius); }
.form-note { font-size: .76rem; color: var(--text-muted); margin-top: .8rem; text-align: center; }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--dark);
  color: #fff; padding: 4rem 0; text-align: center; position: relative;
}
.cta-banner::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: var(--yellow); }
.cta-banner h2 { color: #fff; margin-bottom: .7rem; }
.cta-banner p { color: rgba(255,255,255,.65); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; font-size: .97rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Footer ── */
.site-footer {
  background: #111a0a;
  color: rgba(255,255,255,.6); padding: 4rem 0 1.5rem;
  border-top: 3px solid var(--yellow);
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-logo { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p { font-size: .83rem; color: rgba(255,255,255,.42); max-width: 230px; margin-top: .9rem; line-height: 1.7; }
.footer-badges { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: 1rem; }
.footer-badge {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45); font-size: .7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: .06em;
}
.footer-col h4 {
  color: var(--yellow); font-size: .73rem; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 1rem; font-weight: 800;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { color: rgba(255,255,255,.45); font-size: .85rem; transition: color var(--transition); }
.footer-col ul a:hover { color: rgba(255,255,255,.9); }
.footer-col ul li { color: rgba(255,255,255,.35); font-size: .83rem; }
/* ── Footer Städte ── */
.footer-cities-link {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.2rem 0;
  margin-bottom: .5rem;
}
.footer-cities-link a {
  color: rgba(255,255,255,.4);
  font-size: .76rem;
  transition: color var(--transition);
}
.footer-cities-link a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.2rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem;
  font-size: .76rem; color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ── Phone Float ── */
.phone-float {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  background: var(--green); color: #fff;
  border-radius: var(--radius); padding: .7rem 1.2rem;
  display: flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .88rem;
  box-shadow: 0 4px 20px rgba(61,122,40,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.phone-float:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(61,122,40,.5); color: #fff; }
@media (min-width: 860px) { .phone-float { display: none; } }

/* ── Alerts ── */
.alert { padding: .9rem 1.2rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .9rem; }
.alert-success { background: #f0faf0; border-left: 3px solid var(--green); color: #1a4a10; }
.alert-error   { background: #fef2f2; border-left: 3px solid #dc2626; color: #991b1b; }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-gold { color: var(--yellow); }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}

@media(max-width:599px){
  .section{padding:3rem 0;}
  .hero{padding:3rem 0 2.5rem;}
  .cta-banner{padding:3rem 0;}
  .content-block{padding:1.4rem;}
  .sidebar-body{padding:1rem;}
}

/* ── Kompatibilitäts-Aliase ── */
.hero-badge {
  display: inline-block;
  background: rgba(245,194,0,.18); border: 1px solid rgba(245,194,0,.4);
  color: var(--yellow-light); font-size: .75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 4px 14px; border-radius: 3px; margin-bottom: 1.2rem;
}
.hero-trust { display: flex; flex-wrap: nowrap; gap: 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15); }
.trust-item { flex: 1; min-width: 0; padding-right: 1rem; }
.trust-item strong { display: block; font-size: 1.7rem; font-weight: 900; color: var(--yellow-light); line-height: 1; white-space: nowrap; }
.trust-item span   { font-size: .67rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; margin-top: .25rem; display: block; white-space: nowrap; }

.before-after-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 700px) { .before-after-grid { grid-template-columns: 1fr 1fr; } }

.contact-wrapper { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .contact-wrapper { grid-template-columns: 1fr 1.6fr; } }

.faq-question.active .faq-toggle { background: var(--green); color: #fff; border-color: var(--green); transform: rotate(45deg); }
.faq-answer.active { max-height: 700px; padding: 0 1.4rem 1.2rem; }
