@charset "UTF-8";
/* ============================================================
   HLW Visuals · Eigentuemer-Portal (Verkaufen / Bewertung / Ratgeber)
   Ergaenzt style.css – nutzt dieselben Design-Tokens.
   ============================================================ */

/* ---------- Breadcrumbs ---------- */
.crumbs { padding: calc(var(--nav-h) + 18px) 0 0; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); }
.crumbs li { display: flex; align-items: center; gap: 8px; }
.crumbs li + li::before { content: "›"; color: var(--line); }
.crumbs a:hover { color: var(--green); }
.crumbs [aria-current] { color: var(--ink-2); }

/* ---------- Vertrauens-Leiste ---------- */
.trustbar { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--card); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 26px 0; }
.trustbar__item { display: flex; flex-direction: column; gap: 2px; }
.trustbar__item b { font-family: var(--font-display); font-size: clamp(24px, 3vw, 32px); color: var(--ink); font-weight: 480; }
.trustbar__item span { font-size: 13px; color: var(--muted); }
@media (max-width: 720px) { .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

/* ---------- Bewertungsrechner ---------- */
.rechner { background: var(--paper-2); }
.rechner__inner { max-width: 720px; margin: 0 auto; }
.wiz {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(22px, 4vw, 40px);
  box-shadow: 0 30px 70px -50px rgba(27, 23, 18, .5);
}
.wiz__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.wiz__head h3 { font-size: clamp(20px, 3vw, 26px); }
.wiz__count { font-size: 13px; color: var(--muted); white-space: nowrap; }
.wiz__bar { height: 5px; border-radius: 999px; background: var(--line-soft); overflow: hidden; margin-bottom: 28px; }
.wiz__bar i { display: block; height: 100%; width: 0; background: var(--green); border-radius: 999px; transition: width .4s var(--ease); }

.step { display: none; }
.step.is-active { display: block; animation: wizfade .35s var(--ease); }
@keyframes wizfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.step > label.q, .step > .q { display: block; font-family: var(--font-display); font-size: clamp(19px, 2.6vw, 24px); color: var(--ink); margin-bottom: 6px; }
.step .hint { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.wiz input, .wiz select {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  padding: 14px 16px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.wiz input:focus, .wiz select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-tint); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .grid-2 { grid-template-columns: 1fr; } }

/* Auswahl-Kacheln */
.opts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.opts--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 520px) { .opts, .opts--3 { grid-template-columns: 1fr 1fr; } }
.opt {
  position: relative; display: flex; flex-direction: column; gap: 3px;
  padding: 16px; text-align: left;
  border: 1px solid var(--line); border-radius: 12px; background: var(--paper);
  cursor: pointer; transition: border-color .2s, background .2s, transform .15s;
}
.opt:hover { border-color: var(--green); transform: translateY(-1px); }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt b { font-size: 15px; color: var(--ink); font-weight: 600; }
.opt span { font-size: 12.5px; color: var(--muted); }
.opt:has(input:checked) { border-color: var(--green); background: var(--green-tint); box-shadow: 0 0 0 2px var(--green) inset; }

/* Toggle-Zeilen (Garage/PV/Pool) */
.toggle-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); margin-bottom: 10px; }
.toggle-row b { font-size: 15px; color: var(--ink); font-weight: 600; }
.toggle-row span { font-size: 12.5px; color: var(--muted); display: block; }
.switch { position: relative; width: 52px; height: 30px; flex: none; }
.switch input { position: absolute; opacity: 0; }
.switch i { position: absolute; inset: 0; background: var(--line); border-radius: 999px; transition: background .2s; }
.switch i::after { content: ""; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; background: #fff; border-radius: 50%; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.switch input:checked + i { background: var(--green); }
.switch input:checked + i::after { transform: translateX(22px); }

.wiz__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.wiz__nav .btn { flex: 1; }
.btn[hidden] { display: none; }

/* Lead-Gate */
.gate .lock { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.gate p.gate-lead { color: var(--ink-2); margin-bottom: 20px; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--green); }
.consent a { text-decoration: underline; }

/* Ergebnis */
.result { text-align: center; }
.result .kicker { justify-content: center; }
.result__range { font-family: var(--font-display); font-weight: 480; color: var(--ink); font-size: clamp(30px, 6vw, 52px); margin: 10px 0 4px; letter-spacing: -.02em; }
.result__sub { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.result__note { font-size: 12.5px; color: var(--muted); background: var(--paper); border: 1px solid var(--line-soft); border-radius: 10px; padding: 14px 16px; margin-top: 18px; text-align: left; }
.result__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
.spinner { width: 30px; height: 30px; border: 3px solid var(--line); border-top-color: var(--green); border-radius: 50%; margin: 24px auto; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.err { color: #a3341f; font-size: 13.5px; margin-top: 12px; }

/* ---------- Prozess-Schritte ---------- */
.proc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 860px) { .proc { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .proc { grid-template-columns: 1fr; } }
.proc__step { padding: 24px; border: 1px solid var(--line-soft); border-radius: 12px; background: var(--card); }
.proc__num { font-family: var(--font-display); font-size: 30px; color: var(--green); font-weight: 480; }
.proc__step h3 { font-size: 19px; margin: 10px 0 8px; }
.proc__step p { font-size: 14.5px; color: var(--ink-2); }

/* ---------- Lokale Info-Kacheln ---------- */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { padding: 26px; border: 1px solid var(--line-soft); border-radius: 12px; background: var(--card); }
.info-card h3 { font-size: 20px; margin-bottom: 10px; }
.info-card p { font-size: 15px; color: var(--ink-2); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chips li { font-size: 13px; padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2); background: var(--paper); }

/* ---------- Inline Conversion-Band ---------- */
.cband { background: var(--green-tint); border-radius: 14px; padding: clamp(24px, 4vw, 40px); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cband h2 { font-size: clamp(24px, 3.4vw, 34px); }
.cband p { color: var(--ink-2); margin-top: 6px; }
.cband .btn--primary { white-space: nowrap; }

/* ---------- Verwandte Seiten / interne Links ---------- */
.linkset { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 760px) { .linkset { grid-template-columns: 1fr; } }
.linkset a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border: 1px solid var(--line-soft); border-radius: 12px; background: var(--card); font-weight: 600; color: var(--ink); transition: border-color .2s, transform .15s; }
.linkset a:hover { border-color: var(--green); transform: translateY(-2px); }
.linkset a::after { content: "→"; color: var(--green); }

/* ---------- Standort-Hub Grid (Verkaufen) ---------- */
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 860px) { .city-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .city-grid { grid-template-columns: 1fr; } }
.city-card { display: flex; flex-direction: column; gap: 3px; padding: 20px 22px; border: 1px solid var(--line-soft); border-radius: 12px; background: var(--card); transition: border-color .2s, transform .15s; }
.city-card:hover { border-color: var(--green); transform: translateY(-2px); }
.city-card b { font-family: var(--font-display); font-size: 21px; font-weight: 480; color: var(--ink); }
.city-card span { font-size: 13px; color: var(--muted); }

/* ---------- Blog / Ratgeber ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; background: var(--card); transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -40px rgba(27,23,18,.55); }
.post-card__img { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__cat { font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.post-card__body h3 { font-size: 21px; }
.post-card__body p { font-size: 14.5px; color: var(--ink-2); flex: 1; }
.post-card__meta { font-size: 12.5px; color: var(--muted); }

/* Artikel-Typografie */
.article { max-width: 760px; margin: 0 auto; }
.article__meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--muted); margin-bottom: 26px; }
.article h2 { font-size: clamp(24px, 3.6vw, 34px); margin: 40px 0 14px; }
.article h3 { font-size: clamp(19px, 2.6vw, 23px); margin: 28px 0 10px; }
.article p { font-size: 17px; line-height: 1.75; color: var(--ink-2); margin-bottom: 16px; }
.article ul { margin: 0 0 18px; padding-left: 4px; }
.article ul li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 16.5px; color: var(--ink-2); }
.article ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; background: var(--green); border-radius: 50%; }

/* ---------- Verkauf-CTA-Leiste (mobil sticky) ---------- */
.sell-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--ink) 96%, transparent); backdrop-filter: blur(10px); }
.sell-bar a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border-radius: 999px; font-size: 14px; font-weight: 600; color: #f6f3ec; border: 1px solid rgba(246,243,236,.28); }
.sell-bar a.primary { flex: 1.5; background: var(--green); border-color: var(--green); color: #fff; }
.sell-bar svg { width: 18px; height: 18px; }
@media (max-width: 860px) { .sell-bar { display: flex; } body { } }

/* ============================================================
   WEBDESIGN-ANGEBOT (Website-Erstellung)
   ============================================================ */
/* Feature-Karten mit Nummer/Akzent */
.wd-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .wd-features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .wd-features { grid-template-columns: 1fr; } }
.wd-feature { padding: 26px 24px; border: 1px solid var(--line-soft); border-radius: 14px; background: var(--card); position: relative; overflow: hidden; }
.wd-feature::before { content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: var(--green); opacity: .85; }
.wd-feature h3 { font-size: 20px; margin-bottom: 8px; }
.wd-feature p { font-size: 14.5px; color: var(--ink-2); }

/* Checkliste mit Haken */
.checklist { display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 34px; font-size: 16px; color: var(--ink-2); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: var(--green-tint); }
.checklist li::after { content: ""; position: absolute; left: 7px; top: 6px; width: 8px; height: 5px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }

/* Spotlight (dunkler CMS-Block) */
.wd-spotlight { background: var(--green-deep); color: #eef2ec; border-radius: 18px; padding: clamp(28px, 5vw, 56px); display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
@media (max-width: 820px) { .wd-spotlight { grid-template-columns: 1fr; } }
.wd-spotlight .kicker { color: #a8c3b0; }
.wd-spotlight .kicker::before { background: #a8c3b0; }
.wd-spotlight h2 { color: #fff; }
.wd-spotlight p { color: #cfdcd0; }
.wd-spotlight .checklist li { color: #eef2ec; }
.wd-spotlight .checklist li::before { background: rgba(255,255,255,.14); }
.wd-spotlight .checklist li::after { border-color: #bfe3cc; }

/* Referenz-Showcase mit Geräte-Rahmen */
.ref-show { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
@media (max-width: 820px) { .ref-show { grid-template-columns: 1fr; } }
.ref-devices { position: relative; }
.ref-devices .laptop { border: 10px solid #1b1712; border-radius: 14px; overflow: hidden; box-shadow: 0 40px 80px -50px rgba(27,23,18,.6); background: #1b1712; }
.ref-devices .laptop img { display: block; width: 100%; }
.ref-devices .phone { position: absolute; right: -6px; bottom: -28px; width: 26%; border: 6px solid #1b1712; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(27,23,18,.65); background: #1b1712; }
.ref-devices .phone img { display: block; width: 100%; }
@media (max-width: 520px) { .ref-devices .phone { bottom: -18px; width: 30%; } }
.ref-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }

/* Pakete */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
@media (max-width: 860px) { .pkg-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.pkg { border: 1px solid var(--line); border-radius: 16px; background: var(--card); padding: 30px 26px; display: flex; flex-direction: column; }
.pkg--featured { border-color: var(--green); box-shadow: 0 0 0 2px var(--green) inset, 0 30px 70px -50px rgba(34,59,44,.6); }
.pkg__tag { align-self: flex-start; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); background: var(--green-tint); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.pkg h3 { font-size: 24px; margin-bottom: 6px; }
.pkg__price { font-family: var(--font-display); font-size: 20px; color: var(--ink); margin-bottom: 4px; }
.pkg__note { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pkg ul { display: grid; gap: 10px; margin-bottom: 24px; }
.pkg ul li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink-2); }
.pkg ul li::before { content: ""; position: absolute; left: 2px; top: 1px; width: 18px; height: 18px; border-radius: 50%; background: var(--green-tint); }
.pkg ul li::after { content: ""; position: absolute; left: 7px; top: 5px; width: 6px; height: 4px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
.pkg .btn { margin-top: auto; }

/* Webdesign-Hero: heller Text auf Bild (nutzt phero, aber Schrift immer weiß) */
.phero--wd .phero__scrim { background: linear-gradient(180deg, rgba(18,16,12,.55), rgba(18,16,12,.78)); }
