/* Laden — freundlich & frisch: Weiß, sattes Grün, runde Formen */
:root {
  --bg: #ffffff;
  --panel: #f2f7f3;
  --gruen: #2e7d4f;
  --gruen-tief: #1f5c39;
  --text: #2c3531;
  --muted: #5f6b64;
  --radius: 16px;
  --schatten: 0 8px 26px rgba(30, 80, 50, .10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.7;
}
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 22px; }

/* ---- Header ---- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--panel);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; }
.logo { color: var(--gruen-tief); font-weight: 800; font-size: 1.12rem; text-decoration: none; }
nav a { color: var(--muted); text-decoration: none; margin-left: 24px; font-size: .95rem; font-weight: 600; }
nav a:hover { color: var(--gruen); }

/* ---- Hero ---- */
.hero {
  position: relative; color: #fff; padding: 100px 0 120px; overflow: hidden;
  background:
    radial-gradient(700px 380px at 90% -10%, rgba(255, 255, 255, .14), transparent 60%),
    linear-gradient(150deg, var(--gruen), var(--gruen-tief));
  border-radius: 0 0 36px 36px;
}
.kicker {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: #d8efe0; background: rgba(255,255,255,.12);
  border-radius: 999px; padding: 5px 14px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2rem, 5.2vw, 3.3rem); font-weight: 800; line-height: 1.14; }
.hero .claim { font-size: clamp(1.02rem, 2vw, 1.22rem); color: #ddefe4; margin: 16px 0 34px; max-width: 620px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta {
  display: inline-block; background: #fff; color: var(--gruen-tief); font-weight: 800;
  padding: 14px 34px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18); transition: transform .15s;
}
.cta:hover { transform: translateY(-2px); }
.tel-cta {
  display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700;
  text-decoration: none; padding: 13px 24px; border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 999px; transition: background .15s;
}
.tel-cta:hover { background: rgba(255,255,255,.14); }
.hero-fade { display: none; }

/* ---- Sektionen ---- */
section { padding: 80px 0; }
section.alt { background: var(--panel); }
h2 { font-size: clamp(1.5rem, 3vw, 1.95rem); margin-bottom: 32px; color: var(--gruen-tief); font-weight: 800; }

/* ---- Karten ---- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); gap: 20px; }
.card {
  background: var(--panel); border-radius: var(--radius); padding: 26px 24px;
  transition: transform .2s, box-shadow .2s;
}
section.alt .card { background: var(--bg); box-shadow: var(--schatten); }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(30,80,50,.15); }
.card .icon {
  width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 14px;
  background: rgba(46, 125, 79, .12); color: var(--gruen); border-radius: 12px;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; font-size: 1.06rem; color: var(--gruen-tief); }
.card p { color: var(--muted); font-size: .95rem; }

/* ---- USPs ---- */
.usps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-bottom: 32px; }
.usp { display: flex; gap: 14px; align-items: flex-start; background: var(--bg);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--schatten); }
.usp .punkt { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: var(--gruen); color: #fff; font-weight: 800; display: grid; place-items: center; }
.usp h3 { font-size: 1rem; margin-bottom: 4px; }
.usp p { color: var(--muted); font-size: .92rem; }
.ueber { max-width: 720px; color: var(--muted); }

/* ---- FAQ ---- */
details {
  background: var(--panel); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
summary { cursor: pointer; padding: 18px 22px; font-weight: 700; list-style: none; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; color: var(--gruen);
  font-size: 1.3rem; font-weight: 800; transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 22px 18px; color: var(--muted); }

/* ---- Kontakt ---- */
.kontakt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 34px; align-items: start; }
.kontakt-info a { color: var(--gruen); text-decoration: none; font-weight: 700; }
.kontakt-info h3 { margin: 18px 0 6px; font-size: 1rem; color: var(--gruen-tief); }
.kontakt-info .tel-cta { color: var(--gruen-tief); border-color: var(--gruen); margin-top: 16px; }
.karte iframe { width: 100%; height: 320px; border: 0; border-radius: var(--radius); box-shadow: var(--schatten); }

/* ---- Footer ---- */
footer { background: var(--panel); color: #74807a; padding: 24px 0; font-size: .88rem; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
footer a { color: #74807a; }

/* ---- Sanftes Einblenden ---- */
.card, .usp, section h2, .ueber { opacity: 0; transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease; }
.sichtbar { opacity: 1 !important; transform: none !important; }
.reveal-group > *:nth-child(2) { transition-delay: .08s; }
.reveal-group > *:nth-child(3) { transition-delay: .16s; }
.reveal-group > *:nth-child(4) { transition-delay: .24s; }
.reveal-group > *:nth-child(5) { transition-delay: .32s; }
.reveal-group > *:nth-child(6) { transition-delay: .4s; }

@media (max-width: 640px) {
  nav a { margin-left: 14px; font-size: .88rem; }
  .hero { padding: 76px 0 92px; border-radius: 0 0 24px 24px; }
  section { padding: 58px 0; }
}

/* ---- Bewertungs-Badge (nur wenn eine echte Bewertung gefunden wurde) ---- */
.bewertung {
  display: inline-flex; align-items: center; gap: 8px; margin: 4px 0 26px;
  padding: 8px 16px; border-radius: 999px; font-size: .92rem; font-weight: 700;
  background: rgba(255, 200, 60, .15); border: 1px solid rgba(255, 200, 60, .45);
}
.bewertung .sterne { color: #ffc83c; letter-spacing: 2px; }
.bewertung .quelle { font-weight: 400; opacity: .75; font-size: .82rem; }
