/* ============================================================
   Bazid Daoud GaLaBau v4 "Von nebenan"
   Plakativ-freundliches Nachbarschafts-Handwerk.
   Grosse gruene Vollflaechen, Fragen als Ueberschriften,
   Outfit + Inter self-hosted, Radius 28/40, Pill-Buttons.
   ============================================================ */

@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #4c8a0b;
  --brand-deep: #3a6a08;
  --logo-green: #599e08;
  --lime: #a3e635;
  --lime-deep: #84cc12;
  --green-night: #16210f;
  --green-forest: #23400f;
  --green-sage: #7c9869;
  --green-tint: #eef4e3;
  --green-tint-2: #e2ecd0;
  --cream: #faf7f0;
  --cream-2: #f4efe4;
  --sand: #eae3d3;
  --card: #fffdf8;
  --ink: #242b1c;
  --ink-soft: #57604a;
  --paper-ink: #f5f1e4;
  --paper-soft: rgba(245, 241, 228, 0.78);
  --honey: #d9a13b;
  --shadow-1: 0 1px 2px rgba(36, 43, 28, 0.06), 0 8px 24px rgba(36, 43, 28, 0.08);
  --shadow-2: 0 2px 4px rgba(36, 43, 28, 0.06), 0 12px 32px rgba(36, 43, 28, 0.08), 0 24px 56px rgba(36, 43, 28, 0.10);
  --light-edge: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r-lg: 28px;
  --r-xl: 40px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: "Outfit", system-ui, sans-serif; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--brand); color: #fff; padding: 10px 20px; border-radius: 999px;
  font-family: "Outfit", sans-serif; font-weight: 600; text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

.container { max-width: 1248px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; }

/* ---------- Reveals: nur mit JS aktiv, Hero bleibt immer statisch ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { transform: none; transition: opacity 0.4s ease; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 17px;
  min-height: 56px; padding: 14px 30px; border-radius: 999px;
  text-decoration: none; border: 0; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-xl { min-height: 60px; padding: 16px 34px; font-size: 18px; }
.btn:active { transform: scale(0.98); }
.btn-solid { background: var(--brand); color: #fff; box-shadow: var(--shadow-1); }
.btn-solid:hover { background: var(--brand-deep); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-cream { background: var(--cream); color: var(--brand-deep); box-shadow: var(--shadow-1); }
.btn-cream:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-line { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px rgba(36, 43, 28, 0.28); }
.btn-line:hover { background: rgba(36, 43, 28, 0.05); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.btn-wa { background: var(--green-forest); color: var(--paper-ink); box-shadow: var(--shadow-1); }
.btn-wa:hover { background: var(--green-night); transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(36, 43, 28, 0.10);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  min-height: 104px;
}
.nav-logo img { height: 76px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "Outfit", sans-serif; font-weight: 500; font-size: 17px;
  color: var(--ink); text-decoration: none;
  padding: 10px 18px; border-radius: 999px; background: transparent; border: 0; cursor: pointer;
  transition: background 0.2s var(--ease);
}
.nav-link:hover { background: var(--green-tint); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.btn-nav { min-height: 52px; padding: 12px 26px; }
.wa-round {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 999px;
  background: var(--green-tint-2); color: var(--brand-deep);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.wa-round:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.nav-burger {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 999px;
  color: var(--ink);
}
.nav-burger:hover { background: var(--green-tint); }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop-btn .ico { transition: transform 0.25s var(--ease); }
.nav-drop.open .nav-drop-btn .ico { transform: rotate(180deg); }
.drop-panel {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 320px;
  background: var(--card); border: 1px solid rgba(36, 43, 28, 0.10);
  border-radius: 20px; box-shadow: var(--shadow-2), var(--light-edge);
  padding: 12px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}
.nav-drop.open .drop-panel,
.nav-drop:focus-within .drop-panel { opacity: 1; visibility: visible; transform: none; }
@media (hover: hover) {
  .nav-drop:hover .drop-panel { opacity: 1; visibility: visible; transform: none; }
}
.drop-list { list-style: none; }
.drop-list a {
  display: flex; align-items: center; gap: 12px;
  font-family: "Outfit", sans-serif; font-weight: 500; font-size: 16px;
  color: var(--ink); text-decoration: none;
  padding: 11px 14px; border-radius: 12px;
  transition: background 0.15s var(--ease);
}
.drop-list a:hover { background: var(--green-tint); }
.drop-list .ico { color: var(--brand); flex: none; }
.drop-note {
  margin-top: 8px; padding: 12px 14px 6px; font-size: 14px; color: var(--ink-soft);
  border-top: 1px solid rgba(36, 43, 28, 0.10);
}
.drop-note a { color: var(--brand-deep); font-weight: 600; text-decoration: none; }
.drop-note a:hover { text-decoration: underline; }

/* Mobile-Menü */
.mobile-menu {
  position: fixed; inset: 104px 0 0 0; z-index: 99;
  background: var(--cream); overflow-y: auto; padding: 24px;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; max-width: 480px; margin: 0 auto; }
.mm-link, .mm-group-btn {
  display: flex; align-items: center; justify-content: space-between;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 22px;
  color: var(--ink); text-decoration: none; background: transparent; border: 0;
  padding: 16px 18px; border-radius: 16px; cursor: pointer; text-align: left;
}
.mm-link:hover, .mm-group-btn:hover { background: var(--green-tint); }
.mm-group-btn .ico { transition: transform 0.25s var(--ease); }
.mm-group-btn[aria-expanded="true"] .ico { transform: rotate(180deg); }
.mm-sub { list-style: none; padding: 0 0 8px 18px; }
.mm-sub a {
  display: block; font-size: 18px; font-family: "Outfit", sans-serif; font-weight: 500;
  color: var(--ink-soft); text-decoration: none; padding: 12px 16px; border-radius: 12px;
}
.mm-sub a:hover { background: var(--green-tint); color: var(--ink); }
.mm-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 0; background: var(--cream); }
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em;
  max-width: 20ch;
}
.marker-wrap { position: relative; display: inline-block; color: var(--brand-deep); }
.marker {
  position: absolute; left: 0; right: 0; bottom: -10px; width: 100%; height: 14px;
}
.hero-sub {
  margin-top: 28px; font-size: 19px; color: var(--ink-soft); max-width: 52ch;
}
.hero-ask { margin-top: 48px; }
.hero-ask-label {
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 21px; color: var(--ink);
}
.hero-chips {
  margin-top: 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: 820px;
}
.chip {
  display: inline-flex; align-items: center;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 16px;
  color: var(--brand-deep); background: var(--green-tint-2);
  padding: 14px 24px; border-radius: 999px; text-decoration: none;
  min-height: 52px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.chip:hover { background: var(--brand); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-1); }
.chip-alt { background: transparent; box-shadow: inset 0 0 0 1px rgba(36, 43, 28, 0.22); color: var(--ink-soft); }
.chip-alt:hover { background: var(--brand); color: #fff; box-shadow: var(--shadow-1); }
.hero-photo { margin-top: 56px; width: 100%; }
.hero-photo img {
  width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-2);
}
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 36px;
  padding: 28px 0 0; font-size: 15px; font-weight: 500; color: var(--ink-soft);
}
.trust-item { display: inline-flex; align-items: center; gap: 8px; }
.trust-item .ico { color: var(--brand); flex: none; }
.trust-item .star { color: var(--honey); }

/* ---------- Sektionen ---------- */
.sec { padding: 128px 0; }
.sec-thek { background: var(--cream); }
.sec-tint { background: var(--green-tint-2); }
.sec-social { background: var(--cream); }
.sec-form { background: var(--cream); }
.sec-head { max-width: 760px; margin-bottom: 56px; }
.q {
  display: flex; align-items: baseline; gap: 16px;
  font-size: clamp(30px, 4vw, 40px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.15;
}
.q-dot {
  flex: none; width: 10px; height: 10px; border-radius: 999px; background: var(--brand);
  transform: translateY(-4px);
}
.q-light { color: var(--paper-ink); }
.q-dot-light { background: var(--paper-ink); }
.q-dot-lime { background: var(--lime); }
.sec-intro { margin-top: 16px; font-size: 19px; color: var(--ink-soft); }

/* ---------- Theken-Slider ---------- */
.thek-wrap { position: relative; }
.thek {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px max(24px, calc((100vw - 1200px) / 2)) 24px;
  scrollbar-width: none;
}
.thek::-webkit-scrollbar { display: none; }
.thek-card {
  flex: 0 0 340px; scroll-snap-align: start;
}
.thek-card figure { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-1); }
.thek-card img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.thek-card:hover img { transform: scale(1.04); }
.thek-card figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22, 33, 15, 0.72) 0%, rgba(22, 33, 15, 0.18) 38%, rgba(22, 33, 15, 0) 60%);
  pointer-events: none;
}
.thek-title {
  position: absolute; left: 24px; right: 24px; bottom: 20px; z-index: 1;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 24px; color: var(--paper-ink);
}
.thek-q {
  margin-top: 16px; padding: 0 6px;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 19px; color: var(--brand-deep);
}
.thek-nav { display: flex; gap: 12px; margin-top: 8px; }
.round-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 999px; border: 1px solid rgba(36, 43, 28, 0.14);
  background: var(--card); color: var(--ink); cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.round-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-2px); }

/* ---------- Über Bazid: Brand-Vollflaeche ---------- */
.sec-brand { background: var(--brand); color: var(--paper-ink); }
.ueber-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
}
.ueber-person { display: flex; align-items: center; gap: 20px; }
.face { border-radius: 999px; object-fit: cover; }
.face-lg { width: 112px; height: 112px; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.35), var(--shadow-1); }
.ueber-name {
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 22px; color: #fff; line-height: 1.3;
}
.ueber-name span { display: block; font-family: "Inter", sans-serif; font-weight: 500; font-size: 15px; color: var(--paper-soft); }
.ueber-quote {
  margin-top: 32px;
  font-family: "Outfit", sans-serif; font-weight: 700; font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2; letter-spacing: -0.015em; color: #fff;
}
.ueber-body { margin-top: 24px; font-size: 19px; line-height: 1.6; color: #fff; font-weight: 500; max-width: 56ch; }
.ueber-facts { list-style: none; margin-top: 32px; display: grid; gap: 14px; }
.ueber-facts li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; font-weight: 600; color: #fff;
}
.ueber-facts .ico { flex: none; margin-top: 3px; color: var(--lime); }
.ueber-facts .star { color: var(--honey); }
.ueber-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.ueber-photo img { border-radius: var(--r-lg); box-shadow: var(--shadow-2); width: 100%; }
.ueber-photo figcaption {
  margin-top: 14px; font-size: 15px; font-weight: 600; color: #fff;
}

/* ---------- Vorher/Nachher Hover-Swap ---------- */
.vn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vn-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  background: var(--card); box-shadow: var(--shadow-1);
}
.vn-img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.vn-nach {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.45s var(--ease);
}
.vn-card:hover .vn-nach, .vn-card:focus-visible .vn-nach, .vn-card.swapped .vn-nach { opacity: 1; }
.vn-tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 14px;
  background: var(--cream); color: var(--ink); border-radius: 999px; padding: 7px 16px;
  box-shadow: var(--shadow-1);
}
.vn-tag-nach { display: none; color: var(--brand-deep); }
.vn-card:hover .vn-tag-vor, .vn-card:focus-visible .vn-tag-vor, .vn-card.swapped .vn-tag-vor { display: none; }
.vn-card:hover .vn-tag-nach, .vn-card:focus-visible .vn-tag-nach, .vn-card.swapped .vn-tag-nach { display: inline; }
.vn-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 40px 20px 16px;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 17px; color: var(--paper-ink);
  background: linear-gradient(to top, rgba(22, 33, 15, 0.72), rgba(22, 33, 15, 0));
}

/* ---------- Beispielstimmen ---------- */
.stimmen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.stimme-card {
  background: var(--card); border-radius: 20px; padding: 32px;
  box-shadow: var(--shadow-1), var(--light-edge);
}
.stimme-stars { display: flex; gap: 3px; }
.stimme-text { margin-top: 16px; font-size: 17px; line-height: 1.6; color: var(--ink); }
.stimme-name {
  margin-top: 20px; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 16px;
}
.stimme-name span { display: block; font-family: "Inter", sans-serif; font-weight: 400; font-size: 14px; color: var(--ink-soft); }
.stimmen-note {
  margin-top: 24px; font-size: 15px; font-weight: 600; color: var(--ink-soft);
  display: inline-block; background: var(--cream); border-radius: 999px; padding: 10px 22px;
  border: 1px solid rgba(36, 43, 28, 0.12);
}

/* ---------- Social-Vorschau ---------- */
.social-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 14px; color: var(--brand-deep);
  background: var(--green-tint-2); border-radius: 999px; padding: 8px 18px;
  margin-right: 14px; margin-bottom: 8px; vertical-align: middle;
}
.social-wrap { position: relative; }
.social-strip {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px max(24px, calc((100vw - 1200px) / 2)) 24px;
  scrollbar-width: none;
}
.social-strip::-webkit-scrollbar { display: none; }
.social-tile {
  position: relative; flex: 0 0 300px; scroll-snap-align: start;
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-1);
}
.social-tile img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.social-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 64px 20px 20px;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 19px; line-height: 1.3; color: var(--paper-ink);
  background: linear-gradient(to top, rgba(22, 33, 15, 0.78), rgba(22, 33, 15, 0));
}
.social-play {
  position: absolute; top: 16px; right: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(250, 247, 240, 0.92); color: var(--ink);
}
.social-cta {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 20px;
  aspect-ratio: 9 / 16;
  background: var(--brand); color: #fff; padding: 28px;
}
.social-cta p { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 21px; line-height: 1.35; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 16px; }
.faq-item {
  background: var(--card); border-radius: 20px;
  box-shadow: var(--shadow-1), var(--light-edge);
  overflow: hidden;
}
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: transparent; border: 0; cursor: pointer; text-align: left;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 20px; color: var(--ink);
  padding: 24px 28px; min-height: 56px;
}
.faq-plus { flex: none; color: var(--brand); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-panel {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.no-js .faq-panel, html:not(.js) .faq-panel { grid-template-rows: 1fr; }
.faq-item.open .faq-panel { grid-template-rows: 1fr; }
.faq-body { overflow: hidden; }
.faq-body p { padding: 0 28px 26px; color: var(--ink-soft); font-size: 17px; max-width: 64ch; }

/* ---------- Formular ---------- */
.form-grid {
  display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start;
}
.form-aside {
  background: var(--green-tint); border-radius: var(--r-lg); padding: 36px 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px;
  position: sticky; top: 128px;
}
.form-aside-name { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 21px; }
.form-aside-text { font-size: 16px; color: var(--ink-soft); }
.form-aside-demo { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.dialog-form {
  background: var(--card); border-radius: var(--r-lg); padding: 40px;
  box-shadow: var(--shadow-2), var(--light-edge);
  border: 1px solid rgba(36, 43, 28, 0.08);
}
.form-progress {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-bottom: 32px;
}
.form-progress-text { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px; color: var(--ink-soft); }
.form-progress-text b { color: var(--brand-deep); }
.form-progress-pills { display: flex; gap: 6px; }
.form-progress-pills i {
  width: 34px; height: 8px; border-radius: 999px; background: var(--green-tint-2);
  transition: background 0.3s var(--ease);
}
.form-progress-pills i.on { background: var(--brand); }
.fstep { border: 0; }
.js .fstep { display: none; }
.js .fstep.active { display: block; animation: step-in 0.3s var(--ease); }
@keyframes step-in {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: none; }
}
.fstep + .fstep { margin-top: 48px; }
.js .fstep + .fstep { margin-top: 0; }
.fstep-legend {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding: 0;
}
.fstep-legend .face { width: 48px; height: 48px; flex: none; box-shadow: 0 0 0 3px var(--green-tint-2); }
.fstep-q { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 24px; line-height: 1.25; letter-spacing: -0.01em; }

/* Service-Karten */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.svc-card input { position: absolute; opacity: 0; pointer-events: none; }
.svc-inner {
  display: flex; align-items: center; gap: 10px;
  min-height: 60px; padding: 12px 16px; border-radius: 16px;
  background: var(--cream); border: 1px solid rgba(36, 43, 28, 0.12);
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.svc-inner b { font-weight: 600; }
.svc-inner .ico { color: var(--brand); flex: none; }
.svc-inner:hover { background: var(--green-tint); }
.svc-check { display: none; margin-left: auto; color: var(--brand-deep); }
.svc-card input:checked + .svc-inner {
  background: var(--green-tint-2); border-color: var(--brand);
}
.svc-card input:checked + .svc-inner .svc-check { display: block; }
.svc-card input:focus-visible + .svc-inner { outline: 2px solid var(--brand); outline-offset: 2px; }

/* Felder */
.field { margin-top: 22px; }
.svc-fields > .field:first-child { margin-top: 0; }
.field label, .field-label {
  display: block; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 16px;
  margin-bottom: 8px;
}
.field input[type="text"], .field input[type="tel"], .field input[type="email"],
.field input[type="number"], .field textarea {
  width: 100%; min-height: 52px; padding: 13px 18px;
  font: inherit; font-size: 17px; color: var(--ink);
  background: var(--cream); border: 1px solid rgba(36, 43, 28, 0.18); border-radius: 14px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(76, 138, 11, 0.18);
}
.field-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.mini-chip {
  min-height: 44px; padding: 8px 20px; border-radius: 999px;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px;
  background: var(--green-tint); color: var(--brand-deep); border: 0; cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.mini-chip:hover, .mini-chip.on { background: var(--brand); color: #fff; }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick span {
  display: inline-flex; align-items: center; min-height: 48px; padding: 10px 22px;
  border-radius: 999px; background: var(--cream); border: 1px solid rgba(36, 43, 28, 0.16);
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px; cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.pick span:hover { background: var(--green-tint); }
.pick input:checked + span { background: var(--green-tint-2); border-color: var(--brand); color: var(--brand-deep); }
.pick input:focus-visible + span { outline: 2px solid var(--brand); outline-offset: 2px; }
.js .svc-fields { display: none; }
.js .svc-fields.active { display: block; }
.svc-fields + .svc-fields { margin-top: 32px; }
.js .svc-fields + .svc-fields { margin-top: 0; }

.field input[type="date"] {
  width: 100%; min-height: 52px; padding: 13px 18px;
  font: inherit; font-size: 17px; color: var(--ink);
  background: var(--cream); border: 1px solid rgba(36, 43, 28, 0.18); border-radius: 14px;
}
.field input[type="date"]:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(76, 138, 11, 0.18); }
.js .termin-datum { display: none; }
.js .termin-datum.show { display: block; }
.dropzone {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px; border: 1px dashed rgba(36, 43, 28, 0.32); border-radius: 16px;
  background: var(--cream); cursor: pointer; font-size: 15px; color: var(--ink-soft);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.dropzone:hover { border-color: var(--brand); background: var(--green-tint); }
.dropzone .ico { color: var(--brand); flex: none; }
.dropzone b { color: var(--ink); font-weight: 600; }
.dropzone input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.dropzone-file { margin-top: 10px; font-size: 14px; font-weight: 600; color: var(--brand-deep); }
.consent { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 15px; color: var(--ink-soft); }
.consent input {
  width: 22px; height: 22px; margin-top: 2px; accent-color: var(--brand); flex: none;
}
.ferror { margin-top: 10px; font-size: 14px; font-weight: 600; color: #a33b12; }
.fstep-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 36px;
}
.btn-back {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 0; cursor: pointer;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 16px; color: var(--ink-soft);
  padding: 12px 18px; border-radius: 999px;
}
.btn-back:hover { background: var(--green-tint); color: var(--ink); }

/* Danke-Schritt */
.thanks-check { flex: none; }
.thanks-path { stroke-dasharray: 40; stroke-dashoffset: 40; }
.fstep.active .thanks-path { animation: draw-check 0.6s var(--ease) 0.2s forwards; }
html:not(.js) .thanks-path { stroke-dashoffset: 0; }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
.thanks-intro { font-size: 17px; color: var(--ink-soft); }
.thanks-summary {
  margin-top: 20px; display: grid; gap: 10px;
  background: var(--cream); border-radius: 16px; padding: 24px;
}
.thanks-summary div { display: flex; gap: 12px; font-size: 16px; }
.thanks-summary dt { font-weight: 600; font-family: "Outfit", sans-serif; min-width: 140px; }
.thanks-summary dd { color: var(--ink-soft); }
.thanks-demo {
  margin-top: 24px; font-size: 15px; color: var(--ink-soft);
  background: var(--green-tint); border-radius: 14px; padding: 16px 20px;
}
.thanks-demo b { color: var(--ink); }
.thanks-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }

/* ---------- Kontakt: Waldgruen ---------- */
.sec-forest { background: var(--green-forest); color: var(--paper-ink); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.kontakt-info address { font-style: normal; display: grid; gap: 22px; }
.kontakt-line {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 17px; line-height: 1.55; color: var(--paper-ink); font-weight: 500;
}
.kontakt-line .ico { flex: none; margin-top: 4px; color: var(--lime); }
.kontakt-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.kontakt-btns .btn-wa { background: var(--cream); color: var(--brand-deep); }
.kontakt-btns .btn-wa:hover { background: #fff; }
.kontakt-note { margin-top: 26px; font-size: 16px; font-weight: 500; color: var(--paper-soft); max-width: 46ch; }
.kontakt-map iframe {
  width: 100%; height: 420px; border: 0; border-radius: var(--r-lg);
  box-shadow: var(--shadow-2); display: block;
}

/* ---------- Footer ---------- */
.footer { background: var(--cream); padding: 96px 0 120px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer-mark { width: 240px; height: auto; }
.footer-line { font-size: 16px; color: var(--ink-soft); }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.footer-nav a {
  font-family: "Outfit", sans-serif; font-weight: 500; font-size: 16px; color: var(--ink);
  text-decoration: none; padding: 8px 16px; border-radius: 999px;
}
.footer-nav a:hover { background: var(--green-tint); }
.footer-demo { font-size: 14px; color: var(--ink-soft); }

/* ---------- Sticky-Kontakt ---------- */
.sticky-kontakt { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 90; }
.sticky-griff {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 84px; border-radius: 20px 0 0 20px;
  background: var(--brand); color: #fff; box-shadow: var(--shadow-2);
  transition: background 0.2s var(--ease), width 0.2s var(--ease);
}
.sticky-griff:hover { background: var(--brand-deep); width: 62px; }
.sticky-panel {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 320px; background: var(--card); border-radius: 24px;
  border: 1px solid rgba(36, 43, 28, 0.10);
  box-shadow: var(--shadow-2), var(--light-edge);
  padding: 24px;
}
.js .sticky-panel { transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.js .sticky-panel.opening { opacity: 0; transform: translateY(-50%) translateX(16px); }
.sticky-close {
  position: absolute; top: 14px; right: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px; border: 0; background: transparent;
  color: var(--ink-soft); cursor: pointer;
}
.sticky-close:hover { background: var(--green-tint); color: var(--ink); }
.sticky-status {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--ink); padding-right: 40px;
}
.status-dot { flex: none; width: 9px; height: 9px; border-radius: 999px; background: var(--brand); }
.status-dot.off { background: var(--honey); }
.sticky-btns { display: grid; gap: 10px; margin-top: 18px; }
.sticky-btns .btn { min-height: 50px; padding: 10px 20px; font-size: 16px; }
.sticky-addr { margin-top: 16px; font-size: 14px; color: var(--ink-soft); }
.sticky-form { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(36, 43, 28, 0.10); }
.sticky-form-title { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 12px; }
.sticky-form input {
  width: 100%; min-height: 46px; padding: 10px 16px; margin-bottom: 10px;
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--cream); border: 1px solid rgba(36, 43, 28, 0.18); border-radius: 12px;
}
.sticky-form input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(76, 138, 11, 0.18); }
.sticky-form .btn { min-height: 48px; font-size: 15px; }
.sticky-demo { margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--ink-soft); text-align: center; }

/* ---------- Mobile Bar ---------- */
.mobile-bar { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-inner { min-height: 84px; gap: 16px; }
  .nav-logo img { height: 56px; }
  .btn-nav { display: none; }
  .mobile-menu { inset: 84px 0 0 0; }
  .ueber-grid { grid-template-columns: 1fr; gap: 48px; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-aside { position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; text-align: center; }
  .form-aside .btn { width: auto; }
}
@media (max-width: 860px) {
  .sec { padding: 88px 0; }
  .hero { padding: 48px 0 0; }
  .vn-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .stimmen { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; margin-top: 48px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .field-2col { grid-template-columns: 1fr; }
  .thek-card { flex: 0 0 78vw; max-width: 320px; }
  .social-tile { flex: 0 0 66vw; max-width: 280px; }
}
@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .hero-sub { font-size: 17px; }
  .hero-chips .chip { font-size: 15px; padding: 12px 18px; min-height: 48px; }
  .hero-photo img { border-radius: 24px; }
  .dialog-form { padding: 28px 20px; }
  .fstep-q { font-size: 21px; }
  .sec-head { margin-bottom: 40px; }
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: var(--cream); border-top: 1px solid rgba(36, 43, 28, 0.12);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 8px;
  }
  .mobile-bar a {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; border-radius: 999px; text-decoration: none;
    font-family: "Outfit", sans-serif; font-weight: 600; font-size: 15px;
    background: var(--green-tint-2); color: var(--brand-deep);
  }
  .mobile-bar a:first-child { background: var(--brand); color: #fff; }
  .sticky-kontakt { display: none; }
  .footer { padding-bottom: 96px; }
  .thanks-summary dt { min-width: 110px; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .thek-card { flex: 0 0 84vw; }
}
