/* RundUmWachtberg Landingpage – Flyer-Look: Papier, Creme-Karten, Waldgrün, Cartoon-Marco */

:root {
  --paper: #F8F6F0;
  --paper-2: #EEF0EA;
  --cream: #F4ECDD;
  --cream-2: #EAE0CC;
  --forest: #1C3A2A;
  --forest-mid: #2D5A3D;
  --leaf: #3D7A52;
  --moss: #E3EDE6;
  --sand: #C4A882;
  --earth: #8B6F47;
  --ink: #23271F;
  --muted: #62685C;
  --line: rgba(28, 58, 42, 0.16);
  --wa: #25D366;
  --wa-dark: #128C4A;
  --radius: 20px;
  --shadow: 0 10px 30px -14px rgba(28, 58, 42, 0.35);
  --shadow-sm: 0 4px 14px -8px rgba(28, 58, 42, 0.35);
  --font: "Nunito", "Nunito Sans", system-ui, sans-serif;
  --hand: "Caveat", cursive;
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-mid); }
button { font-family: inherit; cursor: pointer; }
.wrap { width: min(var(--max), 100% - 2.4rem); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Typografie ---------- */
h1, h2, h3 { font-weight: 900; line-height: 1.08; color: var(--forest); letter-spacing: -0.015em; }
h1 { font-size: clamp(2.3rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.25rem; }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--leaf); margin-bottom: 0.9rem;
}
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--muted); max-width: 40rem; }
.muted { color: var(--muted); }
.hand { font-family: var(--hand); font-weight: 700; color: var(--earth); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 52px; padding: 0.8rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  font-weight: 800; font-size: 1.02rem; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--forest-mid); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--moss); }
.btn-wa { background: var(--wa); color: #06331b; }
.btn-wa:hover { background: #2fe174; }
.btn-wa svg { width: 22px; height: 22px; flex: none; }
.btn-lg { min-height: 60px; padding: 1rem 2rem; font-size: 1.1rem; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Topbar & Header ---------- */
.topbar { background: var(--forest); color: #fff; font-size: 0.88rem; font-weight: 700; }
.topbar .wrap { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; padding: 0.5rem 0; }
.topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.topbar svg { width: 16px; height: 16px; opacity: .85; }
@media (max-width: 760px) { .topbar .wrap { gap: 1rem; font-size: .82rem; } .topbar .web { display: none; } }

.header { position: sticky; top: 0; z-index: 40; background: rgba(248, 246, 240, 0.88); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; padding: 0.55rem 0; gap: 1rem; }
.logo img { height: 64px; width: auto; }
.header .btn { min-height: 44px; padding: .5rem 1.1rem; font-size: .95rem; }
.header nav { display: flex; gap: 1.4rem; font-weight: 800; font-size: .95rem; }
.header nav a { color: var(--forest); text-decoration: none; }
.header nav a:hover { color: var(--leaf); }
@media (max-width: 760px) { .header nav { display: none; } .logo img { height: 52px; } }

/* ---------- Deko (Skizzen aus dem Flyer) ---------- */
.deco { position: absolute; pointer-events: none; mix-blend-mode: multiply; opacity: .5; z-index: 0; }
.wind { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.deco-leaves { top: -10px; right: -40px; width: clamp(180px, 22vw, 340px); }
.deco-tree { left: -60px; bottom: -40px; width: clamp(160px, 20vw, 320px); opacity: .38; }
.swoosh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.swoosh::before {
  content: ""; position: absolute; width: 140%; height: 60%; left: -20%; top: 30%;
  background: var(--paper-2); border-radius: 50%; transform: rotate(-14deg);
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(2rem, 6vw, 4.5rem) 0 0; }
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.5rem; align-items: end; }
.hero-copy { padding-bottom: clamp(2rem, 5vw, 4rem); }
.hero h1 span { display: block; }
.hero .lead { margin-top: 1rem; }
.hero h1 .q { color: var(--forest-mid); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-marco { position: relative; align-self: end; width: 100%; text-align: center; }
.hero-marco img { width: min(135%, 720px); max-width: none; margin-left: auto; margin-right: -6%; filter: drop-shadow(0 18px 24px rgba(28,58,42,.25)); }

/* Sprechblase */
.bubble {
  position: relative; background: var(--cream); border: 2px solid var(--forest); border-radius: var(--radius);
  padding: 1.2rem 1.4rem 1.3rem; box-shadow: var(--shadow-sm); margin-bottom: 1.6rem; max-width: 560px;
}
.bubble::after, .bubble::before {
  content: ""; position: absolute; right: -22px; top: 44px; border: 12px solid transparent; border-left-color: var(--forest); border-right: 0;
}
.bubble::after { right: -18px; border-left-color: var(--cream); }
.bubble .hi { font-family: var(--hand); font-size: 2rem; line-height: 1; color: var(--forest); margin-bottom: .45rem; }
.bubble p { font-size: 1.02rem; }
.bubble .sig { margin-top: .6rem; font-family: var(--hand); font-size: 1.35rem; color: var(--earth); }

.trust { position: relative; z-index: 1; background: var(--forest); color: #fff; }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.1rem 0; }
.trust div { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: .95rem; }
.trust svg { width: 22px; height: 22px; flex: none; color: var(--sand); }
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-marco { order: -1; justify-self: center; width: 100%; }
  .hero-marco img { width: min(90%, 440px); margin-inline: auto; }
  .bubble::before, .bubble::after { right: auto; left: 60px; top: -24px; border: 12px solid transparent; border-bottom-color: var(--forest); border-top: 0; }
  .bubble::after { top: -20px; border-bottom-color: var(--cream); }
  .trust .wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .trust .wrap { grid-template-columns: 1fr; gap: .5rem; } }

/* Hero auf Viewport-Hoehe (Desktop): Topbar + Header = ca. 122px */
@media (min-width: 861px) {
  .hero { --chrome: 122px; height: calc(100svh - var(--chrome)); min-height: 560px; max-height: 980px; }
  .hero .wrap { height: 100%; }
  .hero-marco img { height: calc(100svh - var(--chrome) - clamp(2rem, 6vw, 4.5rem)); max-height: 800px; object-fit: contain; object-position: center bottom; }
}
@media (min-width: 861px) {
  .hero-copy { align-self: center; padding-bottom: 0; padding-top: 0; }
  .hero .eyebrow { white-space: nowrap; letter-spacing: .14em; font-size: .74rem; }
  .bubble { max-width: 600px; }
}
@media (min-width: 861px) and (max-height: 900px) {
  .hero { padding-top: 1.5rem; }
  .bubble { padding: 1.1rem 1.3rem 1.15rem; margin-bottom: 1.3rem; }
  .bubble .hi { font-size: 1.9rem; }
  .bubble p { font-size: 1.02rem; }
  .bubble .sig { font-size: 1.3rem; margin-top: .5rem; }
  .hero h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
  .hero .lead { font-size: 1.15rem; margin-top: .8rem; }
  .hero-ctas { margin-top: 1.3rem; }
  .hero-ctas .btn-lg { min-height: 58px; padding: .9rem 1.8rem; font-size: 1.08rem; }
}

/* ---------- Sections ---------- */
.section { --sec-pad: clamp(3.2rem, 8vw, 6rem); position: relative; padding: var(--sec-pad) 0; }
.section-head { max-width: 46rem; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--forest); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--sand); }
.section-dark .lead { color: rgba(255,255,255,.8); }

/* Flyer-Karten */
.card {
  background: var(--cream); border: 2px solid var(--forest); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.4rem;
}
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.service { text-align: center; padding: 1.8rem 1.2rem 1.5rem; transition: transform .2s ease, box-shadow .2s ease; }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon-circle {
  width: 76px; height: 76px; border-radius: 50%; background: var(--moss); border: 2px solid var(--forest);
  display: grid; place-items: center; margin: 0 auto 1rem;
}
.icon-circle svg { width: 54px; height: 54px; }
.service h3 { margin-bottom: .35rem; }
.service p { color: var(--muted); font-size: .98rem; }
.service .tag { display: inline-block; margin-top: .7rem; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--leaf); background: var(--moss); padding: .2rem .6rem; border-radius: 999px; }
.services-note { margin-top: 1.4rem; color: var(--muted); font-size: 1rem; max-width: 46rem; }
.services-note b { color: var(--forest); }
@media (max-width: 900px) { .services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }

/* ---------- Rechner / Wizard ---------- */
.wizard-wrap { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 2rem; align-items: start; }
@media (max-width: 960px) { .wizard-wrap { grid-template-columns: 1fr; } .wizard-side { display: none; } }
.wizard { background: #fff; border: 2px solid var(--forest); border-radius: 26px; box-shadow: var(--shadow); overflow: hidden; }
.wizard-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.4rem; background: var(--cream); border-bottom: 2px solid var(--forest); }
.wizard-top .step-label { font-weight: 900; color: var(--forest); font-size: .95rem; }
.progress { flex: 1; height: 8px; background: rgba(28,58,42,.15); border-radius: 99px; overflow: hidden; max-width: 260px; }
.progress span { display: block; height: 100%; background: var(--leaf); border-radius: 99px; transition: width .35s ease; }
.wizard-body { padding: clamp(1.3rem, 3vw, 2.2rem); min-height: 320px; }
.step { animation: stepIn .35s ease both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
.step h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin-bottom: .35rem; }
.step .hint { color: var(--muted); margin-bottom: 1.3rem; }

.choices { display: grid; gap: .8rem; }
.choices.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choices.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 680px) { .choices.cols-3, .choices.cols-2 { grid-template-columns: 1fr; } }
.choice {
  position: relative; display: flex; gap: .9rem; align-items: flex-start; text-align: left;
  background: var(--paper); border: 2px solid var(--line); border-radius: 16px; padding: 1rem 1.05rem;
  transition: border-color .15s, background .15s, transform .15s; min-height: 64px; width: 100%; min-width: 0;
}
.choice:has(.check) { padding-right: 2.6rem; }
/* Drei-Spalten-Karten: Icon oben, Text darunter, Preis unten */
.choices.cols-3 .choice { flex-direction: column; align-items: stretch; gap: .7rem; padding: 1.05rem 1.1rem 1.1rem; }
.choices.cols-3 .choice:has(.check) { padding-right: 1.1rem; }
.choices.cols-3 .choice .price { margin-left: 0; margin-top: auto; padding-top: .7rem; border-top: 1px solid var(--line); text-align: left; font-size: 1rem; align-self: stretch; }
/* Zwei-Spalten-Karten: Icon links, Titel und Preis untereinander */
.choices.cols-2 .choice { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: start; align-content: start; column-gap: .9rem; row-gap: .3rem; }
.choices.cols-2 .choice .ic { grid-row: 1 / span 2; }
.choices.cols-2 .choice .price { grid-column: 2; margin-left: 0; align-self: start; font-size: .92rem; }
.choice:hover { border-color: var(--leaf); transform: translateY(-2px); }
.choice[aria-pressed="true"], .choice.on { border-color: var(--forest); background: var(--cream); box-shadow: 0 0 0 3px rgba(61,122,82,.18); }
.choice .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--forest); color: #fff; display: grid; place-items: center; flex: none; }
.choice .ic svg { width: 24px; height: 24px; }
.choice b { display: block; color: var(--forest); font-size: 1.05rem; line-height: 1.2; }
.choice small { display: block; color: var(--muted); font-size: .9rem; margin-top: .2rem; line-height: 1.35; }
.choice .price { margin-left: auto; font-weight: 900; color: var(--leaf); white-space: nowrap; font-size: .95rem; align-self: center; }
.choice .check { position: absolute; top: 10px; right: 10px; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); background: #fff; display: grid; place-items: center; }
.choice .check svg { width: 13px; height: 13px; opacity: 0; color: #fff; }
.choice.on .check { background: var(--leaf); border-color: var(--leaf); }
.choice.on .check svg { opacity: 1; }

.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { border: 2px solid var(--line); background: var(--paper); border-radius: 999px; padding: .5rem 1rem; font-weight: 800; color: var(--forest); font-size: .95rem; transition: all .15s; }
.chip:hover { border-color: var(--leaf); }
.chip.on { background: var(--forest); border-color: var(--forest); color: #fff; }

.stepper { display: flex; align-items: center; gap: .6rem; }
.stepper button { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--forest); background: #fff; color: var(--forest); font-size: 1.4rem; font-weight: 900; line-height: 1; }
.stepper button:hover { background: var(--moss); }
.stepper output { min-width: 3.2rem; text-align: center; font-weight: 900; font-size: 1.5rem; color: var(--forest); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: .4rem; }
.field-row label { display: block; font-weight: 800; color: var(--forest); margin-bottom: .5rem; }
.field-row small { display: block; color: var(--muted); font-weight: 600; margin-top: .4rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.wizard-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem clamp(1.3rem, 3vw, 2.2rem) 1.4rem; border-top: 1px solid var(--line); background: #fff; }
.link-btn { background: none; border: 0; font-weight: 800; color: var(--muted); padding: .5rem 0; text-decoration: underline; text-underline-offset: 3px; }
.link-btn:hover { color: var(--forest); }
.link-btn:empty { display: none; }
.wizard-nav .btn { margin-left: auto; }

/* Seitenleiste neben dem Rechner */
.wizard-side { position: sticky; top: 100px; }
.wizard-side .card { text-align: center; padding: 1.2rem 1.2rem 1.4rem; }
.wizard-side img { width: 70%; margin: -.5rem auto .6rem; -webkit-mask-image: linear-gradient(#000 70%, transparent 100%); mask-image: linear-gradient(#000 70%, transparent 100%); }
.wizard-side .hand { font-size: 1.5rem; line-height: 1.15; color: var(--forest); }
.wizard-side p { font-size: .95rem; color: var(--muted); margin-top: .5rem; }

/* Kostenvoranschlag (Rechnungs-Look) */
.estimate { border: 2px solid var(--forest); border-radius: 18px; overflow: hidden; background: #fff; }
.estimate-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.3rem; background: var(--forest); color: #fff; }
.estimate-head b { font-size: 1.08rem; display: block; line-height: 1.25; margin-bottom: .2rem; }
.estimate-head small { color: rgba(255,255,255,.75); font-weight: 700; display: block; }
.estimate-head .no { text-align: right; font-size: .78rem; font-weight: 800; color: var(--sand); letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; flex: none; }
.estimate table { width: 100%; border-collapse: collapse; }
.estimate td { padding: .75rem 1.3rem; border-bottom: 1px solid var(--line); vertical-align: top; font-size: .98rem; }
.estimate td:last-child { text-align: right; white-space: nowrap; font-weight: 800; font-variant-numeric: tabular-nums; }
.estimate td small { display: block; color: var(--muted); font-weight: 600; font-size: .85rem; }
.estimate tr.total td { border-bottom: 0; padding-top: 1rem; padding-bottom: 1rem; background: var(--cream); font-size: 1.1rem; font-weight: 900; color: var(--forest); }
.estimate tr.total td:last-child { font-size: 1.5rem; }
.estimate tr.total small { color: var(--muted); font-size: .85rem; font-weight: 700; }
.estimate tr.eff td { background: var(--moss); border-bottom: 0; color: var(--forest); font-weight: 800; }
.estimate tr.eff td:last-child { font-size: 1.25rem; color: var(--leaf); }
.estimate-note { padding: 1rem 1.3rem; background: var(--paper); border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.estimate-note b { color: var(--forest); }
.estimate-note p + p { margin-top: .5rem; }
/* Zusammenfassung der Angaben (Schritt 4, ohne Preise) */
.estimate.summary td { text-align: left; white-space: normal; font-weight: 700; color: var(--ink); }
.estimate.summary td small { margin-bottom: .15rem; text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; color: var(--leaf); font-weight: 800; }

.result-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 1.6rem; align-items: start; margin-top: 1rem; }
.result-grid > * { min-width: 0; }
@media (max-width: 800px) { .result-grid { grid-template-columns: minmax(0, 1fr); } }
.lead-box { background: var(--cream); border: 2px solid var(--forest); border-radius: 18px; padding: 1.3rem; }
.lead-box h4 { font-size: 1.2rem; color: var(--forest); margin-bottom: .3rem; font-weight: 900; }
.lead-box .hint { color: var(--muted); font-size: .93rem; margin-bottom: 1rem; }
.lead-box label { display: block; font-weight: 800; font-size: .9rem; color: var(--forest); margin-bottom: .3rem; }
.lead-box input, .lead-box textarea {
  width: 100%; font: inherit; font-size: 1rem; padding: .75rem .9rem; border-radius: 12px; border: 2px solid var(--line); background: #fff; color: var(--ink); margin-bottom: .85rem;
}
.lead-box input:focus, .lead-box textarea:focus { outline: none; border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(61,122,82,.18); }
.lead-box .btn { width: 100%; }
.lead-box .or { text-align: center; color: var(--muted); font-weight: 800; font-size: .85rem; margin: .8rem 0; letter-spacing: .1em; text-transform: uppercase; }
.lead-box .privacy { font-size: .78rem; color: var(--muted); margin-top: .7rem; text-align: center; }
.success { text-align: center; padding: 1.5rem 1rem; }
.success .hand { font-size: 2rem; color: var(--forest); }
.success p { color: var(--muted); margin-top: .4rem; }

/* ---------- Ablauf ---------- */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: s; }
.steps3 .card { position: relative; padding-top: 2.2rem; }
.steps3 .card::before {
  counter-increment: s; content: counter(s); position: absolute; top: -20px; left: 20px; width: 42px; height: 42px; border-radius: 50%;
  background: var(--sand); color: var(--forest); font-weight: 900; font-size: 1.2rem; display: grid; place-items: center; border: 2px solid var(--forest);
}
.steps3 h3 { margin-bottom: .35rem; }
.steps3 p { color: var(--muted); font-size: .98rem; }
@media (max-width: 800px) { .steps3 { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Warum Marco (dunkel) ---------- */
.why { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: end; }
.why > .reveal:first-child { align-self: center; padding-bottom: 1rem; }
.quotes { display: grid; gap: 1rem; }
.quote { border-left: 4px solid var(--sand); padding: .2rem 0 .2rem 1.2rem; font-family: var(--hand); font-size: 1.7rem; line-height: 1.2; color: #fff; }
.quote small { display: block; font-family: var(--font); font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 700; margin-top: .3rem; }
.why-marco { display: flex; justify-content: flex-end; align-self: end; margin-bottom: calc(-1 * var(--sec-pad)); margin-right: clamp(-90px, calc((var(--max) - 100vw) / 2), 0px); }
.why-marco img { width: min(100%, 560px); filter: drop-shadow(0 12px 24px rgba(0,0,0,.35)); }
.section-dark { overflow: hidden; }
/* Hintergrundvideo im "Warum"-Abschnitt: stark waldgruen abgedunkelt, damit Text und Figur lesbar bleiben */
.why-section { isolation: isolate; }
.why-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: var(--forest); }
.why-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) brightness(.7); opacity: 0; transition: opacity 1.2s ease; }
.why-video.is-ready { opacity: 1; }
.why-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,24,17,.72) 0%, rgba(12,24,17,.58) 45%, rgba(12,24,17,.32) 100%); }
@media (max-width: 860px) { .why-shade { background: linear-gradient(180deg, rgba(12,24,17,.74) 0%, rgba(12,24,17,.55) 60%, rgba(12,24,17,.45) 100%); } }
@media (max-width: 860px) { .why { grid-template-columns: 1fr; gap: 2rem; } .why > .reveal:first-child { padding-bottom: 0; } .why-marco { justify-content: center; margin-right: 0; } .why-marco img { width: min(84%, 400px); } }

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; }
.faq details { background: #fff; border: 2px solid var(--line); border-radius: 14px; margin-bottom: .7rem; overflow: hidden; }
.faq details[open] { border-color: var(--forest); }
.faq summary { list-style: none; cursor: pointer; padding: 1rem 1.2rem; font-weight: 900; color: var(--forest); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--leaf); flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 1.2rem 1.1rem; color: var(--muted); }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--cream); border-block: 2px solid var(--forest); }
.cta-band .wrap { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: clamp(2rem, 5vw, 3.5rem) 0; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: .8rem; }
@media (max-width: 800px) { .cta-band .wrap { grid-template-columns: 1fr; } }

/* ---------- Footer (Stil der Hauptseite) ---------- */
footer { position: relative; overflow: hidden; background: #1A1A18; color: rgba(245,242,236,.85); font-size: .92rem; }
.foot-line { position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--sand); }
.foot-glow { position: absolute; left: -10%; top: -30%; width: 55%; height: 70%; border-radius: 50%; background: rgba(28,58,42,.6); filter: blur(120px); pointer-events: none; }
.foot-inner { position: relative; z-index: 1; padding: 3.4rem 0 1.6rem; }
.foot-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.2rem 2rem; padding-bottom: 2.4rem; }
.foot-head img { height: 64px; width: auto; }
.foot-quote { font-family: var(--hand); font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.2; color: rgba(245,242,236,.88); max-width: 34ch; text-align: right; }
.foot-grid { display: grid; grid-template-columns: auto minmax(0, 1.1fr) minmax(0, 1.3fr); gap: 2rem 3.4rem; }
.foot-eyebrow { font-size: .7rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); margin-bottom: .95rem; }
footer ul { list-style: none; display: grid; gap: .4rem; font-size: .88rem; line-height: 1.5; }
footer a { color: rgba(245,242,236,.82); text-decoration: none; transition: color .15s; }
footer a:hover { color: var(--sand); }
.foot-card { align-self: start; border: 1px solid rgba(245,242,236,.1); background: rgba(245,242,236,.035); border-radius: 16px; padding: 1rem 1.25rem 1.1rem; }
.foot-phone { display: block; font-size: 1.35rem; font-weight: 900; line-height: 1; color: #F5F2EC; margin-top: .1rem; }
.foot-mail { display: block; font-size: .88rem; margin-top: .45rem; }
.foot-card p { font-size: .78rem; line-height: 1.5; color: rgba(245,242,236,.5); margin-top: .6rem; }
.foot-cta { display: inline-flex; align-items: center; gap: .45rem; margin-top: .8rem; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--sand); }
.foot-cta:hover { color: #F5F2EC; }
.foot-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.foot-chips li { border: 1px solid rgba(245,242,236,.15); border-radius: 999px; padding: .15rem .65rem; font-size: .72rem; letter-spacing: .05em; color: rgba(245,242,236,.75); }
.foot-note { margin-top: .85rem; font-size: .8rem; line-height: 1.5; color: rgba(245,242,236,.55); }
.foot-legal { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: .8rem 1.5rem; margin-top: 2.6rem; padding-top: 1.2rem; border-top: 1px solid rgba(245,242,236,.12); font-size: .78rem; color: rgba(245,242,236,.55); }
.foot-claim { color: rgba(196,168,130,.9); }
.foot-links { display: flex; gap: 1.3rem; }
.foot-links a { color: rgba(245,242,236,.55); }
.foot-links a:hover { color: #F5F2EC; }
@media (max-width: 960px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-grid > :last-child { grid-column: 1 / -1; } }
@media (max-width: 760px) {
  .foot-inner { padding-bottom: 6rem; }
  .foot-head { align-items: flex-start; }
  .foot-quote { text-align: left; }
}
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- Mobile Sticky-Bar ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none; gap: .6rem; padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(248,246,240,.95); backdrop-filter: blur(10px); border-top: 2px solid var(--forest);
}
.sticky-bar .btn { flex: 1; min-height: 48px; padding: .6rem .8rem; font-size: .95rem; }
@media (max-width: 760px) { .sticky-bar { display: flex; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .step { animation: none; }
}

/* ---------- Unterseiten (Impressum/Datenschutz) ---------- */
.legal-page { padding: 3rem 0 5rem; max-width: 46rem; }
.legal-page h1 { font-size: 2.2rem; margin-bottom: 1.2rem; }
.legal-page h2 { font-size: 1.3rem; margin: 1.8rem 0 .5rem; }
.legal-page p, .legal-page li { color: var(--ink); margin-bottom: .6rem; }
.legal-page ul { padding-left: 1.2rem; }

/* ---------- Mobil (Handy, bis 680px) ---------- */
@media (max-width: 680px) {
  /* Hero: Figur kleiner, Sprechblase kompakter, Buttons volle Breite */
  .hero { padding-top: 1.2rem; }
  .hero-marco img { width: min(72%, 290px); }
  .bubble { padding: 1rem 1.1rem 1.1rem; margin-bottom: 1.2rem; }
  .bubble .hi { font-size: 1.6rem; }
  .bubble p { font-size: .98rem; }
  .bubble .sig { font-size: 1.2rem; }
  .hero-copy { padding-bottom: 2rem; }
  .hero-ctas .btn-lg { width: 100%; justify-content: center; }
  /* Leistungen: kompakte Zeilen-Karten statt hoher Kacheln */
  .service { display: grid; grid-template-columns: 52px minmax(0, 1fr); column-gap: .9rem; text-align: left; padding: 1rem 1.1rem; align-items: center; }
  .service .icon-circle { width: 56px; height: 56px; margin: 0; grid-row: 1 / span 3; }
  .service .icon-circle svg { width: 36px; height: 36px; }
  .service h3 { font-size: 1.15rem; }
  .service p { font-size: .93rem; }
  .service .tag { margin-top: .5rem; justify-self: start; }
  /* Wizard: Karten als Zeilen mit Icon links */
  .wizard-body { min-height: 0; }
  .choices { gap: .6rem; }
  .choices.cols-3 .choice { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: start; align-content: start; column-gap: .8rem; row-gap: .25rem; padding: .9rem 1rem; }
  .choices.cols-3 .choice .ic { grid-row: 1 / span 2; width: 38px; height: 38px; }
  .choices.cols-3 .choice .ic svg { width: 22px; height: 22px; }
  .choices.cols-3 .choice .price { grid-column: 2; margin-top: 0; padding-top: 0; border-top: 0; font-size: .92rem; }
  .choices.cols-2 .choice { padding: .9rem 1rem; }
  .choices.cols-3 .choice:has(.check), .choices.cols-2 .choice:has(.check) { padding-right: 2.4rem; }
  .choice b { font-size: 1rem; }
  .step h3 { font-size: 1.3rem; }
  .chip { min-height: 44px; padding: .55rem 1rem; }
  .wizard-nav { flex-wrap: wrap; }
  .wizard-nav .btn { flex: 1 1 auto; justify-content: center; }
  /* Kostenvoranschlag und Formular */
  .estimate-head { flex-direction: column; gap: .4rem; padding: 1rem .9rem; }
  .estimate-head .no { text-align: left; }
  .estimate td { padding: .7rem .9rem; }
  .estimate-note { padding-left: .9rem; padding-right: .9rem; }
  .lead-box { padding: 1.1rem; }
  .lead-box input, .lead-box textarea { font-size: 16px; }
  /* Abschnitte kompakter, CTA-Buttons volle Breite */
  .section { --sec-pad: 2.6rem; }
  .trust .wrap { padding: .9rem 0; }
  .cta-band .actions .btn { width: 100%; justify-content: center; }
  .lead-box .btn, .hero-ctas .btn, .cta-band .btn { white-space: normal; }
}

/* ---------- Mobil: Hero mit Figur in der Sprechblase ---------- */
.bubble-fig { display: none; }
@media (max-width: 680px) {
  .hero { padding-top: 1rem; }
  .hero-copy { display: contents; }
  .hero .wrap { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; padding-bottom: 1.4rem; }
  /* Reihenfolge: Eyebrow, Ueberschrift, Einleitung, dann Sprechblase mit Figur */
  .hero .eyebrow { margin: 0 0 .6rem; font-size: .7rem; }
  .hero h1 { font-size: 2.15rem; }
  .hero .lead { font-size: 1rem; margin: .6rem 0 0; }
  .lead-more { display: none; }
  .bubble { grid-row: 4; grid-column: 1; display: flow-root; max-width: none; padding: .9rem 1rem .9rem; margin: 1.1rem 0 0; }
  .bubble::before, .bubble::after { display: none; }
  .bubble .hi { font-size: 1.45rem; margin-bottom: .35rem; }
  .bubble p { font-size: .93rem; line-height: 1.45; }
  .bubble .sig { margin-top: 2.4rem; font-size: 1.2rem; line-height: 1.1; }
  /* Figur: fester Bereich rechts, Bild sitzt unten auf der Blasenkante; der Text laeuft um Kopf und Schulter */
  .bubble-fig { display: flex; align-items: flex-end; float: right; width: 56%; height: 300px; margin: -.2rem -.4rem -.9rem .4rem;
    shape-outside: polygon(40% 37%, 67% 37%, 72% 52%, 100% 60%, 100% 100%, 0% 100%, 0% 74%, 10% 66%, 22% 60%, 33% 56%, 36% 48%); shape-margin: 8px; }
  .bubble-fig img { display: block; width: 100%; height: auto; }
  .hero-marco { display: none; }
  .hero-ctas { display: none; }
}

/* ---------- Schieberegler (Grundstücksgröße) ---------- */
.slider { padding: .2rem 0 .6rem; }
.slider output { display: block; font-size: 2.1rem; font-weight: 900; color: var(--forest); line-height: 1.1; margin-bottom: .8rem; font-variant-numeric: tabular-nums; }
.slider input[type="range"] { --p: 25%; -webkit-appearance: none; appearance: none; width: 100%; height: 44px; background: transparent; margin: 0; cursor: pointer; }
.slider input[type="range"]::-webkit-slider-runnable-track { height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--leaf) var(--p), rgba(28,58,42,.15) var(--p)); }
.slider input[type="range"]::-moz-range-track { height: 10px; border-radius: 999px; background: rgba(28,58,42,.15); }
.slider input[type="range"]::-moz-range-progress { height: 10px; border-radius: 999px; background: var(--leaf); }
.slider input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 30px; height: 30px; margin-top: -10px; border-radius: 50%; background: #fff; border: 3px solid var(--forest); box-shadow: 0 2px 8px rgba(28,58,42,.3); }
.slider input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--forest); box-shadow: 0 2px 8px rgba(28,58,42,.3); }
.slider input[type="range"]:focus-visible { outline: 3px solid rgba(61,122,82,.35); outline-offset: 4px; border-radius: 999px; }
.slider-scale { display: flex; justify-content: space-between; font-size: .78rem; font-weight: 800; color: var(--muted); margin-top: .2rem; }

/* Honeypot-Feld gegen Spam-Bots, für Menschen unsichtbar */
.hp{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
