/* Löwen Immobilien24 — öffentliche Website
   Premium-minimal: warmes Weiß, Charcoal, gedämpftes Gold. Keine Verläufe, kein Glassmorphism. */

:root {
    --ink:        #15171c;
    --ink-2:      #2c313b;
    --ink-soft:   #5c626e;
    --paper:      #ffffff;
    --cream:      #f7f4ee;
    --cream-2:    #efe9df;
    --line:       #e7e2d8;
    --gold:       #a47e36;
    --gold-deep:  #87662a;
    --gold-tint:  #f3ead6;
    --green:      #2f7d4f;
    --blue:       #2a5d8f;
    --red:        #b23b3b;
    --radius:     4px;
    --radius-lg:  8px;
    --shadow:     0 1px 2px rgba(21,23,28,.04), 0 8px 30px rgba(21,23,28,.06);
    --shadow-lg:  0 20px 60px rgba(21,23,28,.12);
    --maxw:       1180px;
    --ease:       cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-weight: 600; line-height: 1.12; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { display: inline-block; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .9rem; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: .95rem;
    padding: .85rem 1.5rem; border-radius: var(--radius); border: 1.5px solid transparent;
    cursor: pointer; transition: all .2s var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: .5rem .9rem; font-size: .85rem; }

/* ---------- Scroll-Reveal (Motion) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--line); transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(21,23,28,.08); }
/* Transparent über dem Hero (nur Startseite), wird beim Scrollen solide */
.header-transparent { position: fixed; left: 0; right: 0; top: 0; background: transparent; border-bottom-color: transparent; backdrop-filter: none; }
.header-transparent:not(.scrolled) .brand-mark { color: #fff; }
.header-transparent:not(.scrolled) .brand-sub { color: var(--gold-tint); }
.header-transparent:not(.scrolled) .main-nav > ul > li > a { color: rgba(255,255,255,.92); }
.header-transparent:not(.scrolled) .main-nav a:hover { color: #fff; }
.header-transparent:not(.scrolled) .nav-cta a { background: transparent; color: rgba(255,255,255,.92) !important; }
.header-transparent:not(.scrolled) .navtoggle-btn span,
.header-transparent:not(.scrolled) .navtoggle-btn::before,
.header-transparent:not(.scrolled) .navtoggle-btn::after { background: #fff; }
.header-transparent.scrolled { background: rgba(255,255,255,.96); backdrop-filter: saturate(1.4) blur(8px); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-weight: 700; font-size: 1.5rem; letter-spacing: .12em; color: var(--ink); }
.brand-sub { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }
.brand-sub sup { font-size: .6em; }
.main-nav ul { display: flex; align-items: center; gap: .4rem; list-style: none; }
.main-nav a { padding: .6rem .9rem; font-weight: 500; font-size: .95rem; color: var(--ink-2); border-radius: var(--radius); transition: color .2s; white-space: nowrap; }
.main-nav a:hover { color: var(--gold-deep); }
.nav-cta a { display: inline-flex; align-items: center; gap: .35rem; background: transparent; color: var(--ink-2) !important; padding: .45rem .55rem; font-size: .9rem; font-weight: 600; border: 0; }
.nav-cta a:hover { color: var(--gold-deep) !important; background: transparent; }
.nav-cta .navcta-ico { display: inline-flex; align-items: center; }
.nav-cta2 a { background: var(--gold); color: #fff !important; padding: .6rem 1.05rem; border-radius: var(--radius); font-weight: 700; }
.nav-cta2 a:hover { background: var(--gold-deep); }
.navtoggle, .navtoggle-btn { display: none; }

/* ---------- Flash ---------- */
.flash { padding: .85rem 0; font-weight: 500; font-size: .95rem; }
.flash .container { padding: 0 24px; }
.flash-success { background: #eaf4ee; color: #1f5e3c; border-bottom: 1px solid #c9e4d4; }
.flash-error { background: #fbeaea; color: #8e2a2a; border-bottom: 1px solid #f0cccc; }

/* ---------- Hero ---------- */
.hero { background: var(--cream); border-bottom: 1px solid var(--line); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: clamp(44px, 6vw, 84px) 24px; }
.hero h1 { margin: .2rem 0 1.2rem; }
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero .lead { margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { margin-top: 1.8rem; font-size: .85rem; color: var(--ink-soft); display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; }
.hero-trust .stars { color: var(--gold); font-weight: 600; letter-spacing: .05em; }
.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-badge { position: absolute; left: -16px; bottom: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px 22px; box-shadow: var(--shadow); }
.hero-badge strong { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.15rem; display: block; }
.hero-badge span { font-size: .82rem; color: var(--ink-soft); }

/* Such-Band */
.searchband { background: var(--ink); }
.searchband-form { display: flex; gap: 14px; align-items: flex-end; padding: 22px 24px; flex-wrap: wrap; }
.searchband-form label { flex: 1 1 180px; font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: #aeb3bd; display: flex; flex-direction: column; gap: .4rem; }
.searchband-form .btn { flex: 0 0 auto; }

/* ---------- Form controls (shared) ---------- */
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password], select, textarea {
    width: 100%; font-family: inherit; font-size: .95rem; color: var(--ink);
    padding: .7rem .85rem; border: 1px solid var(--line); border-radius: var(--radius);
    background: #fff; transition: border-color .15s, box-shadow .15s; font-weight: 500;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-tint); }
textarea { resize: vertical; line-height: 1.55; }
label.field { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-2); }
label.field input, label.field select, label.field textarea { margin-top: .4rem; font-weight: 500; }
.field-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.field-row .field { flex: 1 1 0; min-width: 140px; }
.wizard-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.wizard-grid .field { margin: 0; }
.wizard-grid .field.is-hidden { display: none; }
.input-with-unit { display: flex; gap: 8px; }
.input-with-unit input { flex: 1 1 auto; min-width: 0; }
.input-with-unit select { flex: 0 0 auto; width: auto; }
.wizard-error { background: #fdecec; border: 1px solid #f3b4b4; color: #b3261e; border-radius: 10px; padding: .7rem .9rem; font-size: .9rem; font-weight: 500; margin: 0 0 1rem; }
.pr-form .field.is-hidden { display: none; }
.pr-error { background: #fdecec; border: 1px solid #f3b4b4; color: #b3261e; border-radius: 10px; padding: .7rem .9rem; font-size: .9rem; font-weight: 500; margin: 0 0 1rem; }
.pr-error[hidden] { display: none; }
@media (max-width: 640px) { .wizard-grid { grid-template-columns: 1fr; } }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin: 64px auto; }
.service { background: #fff; padding: 36px 32px; transition: background .2s; }
.service:hover { background: var(--cream); }
.service-no { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1rem; color: var(--gold); font-weight: 600; }
.service h3 { margin: .6rem 0 .6rem; }
.service p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1rem; }
.service a { font-weight: 600; color: var(--gold-deep); font-size: .9rem; }
.service a:hover { color: var(--ink); }

/* ---------- Services grid (4) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.services-grid .service { background: #fff; padding: 32px 26px; }
.services-grid .service:hover { background: var(--cream); }
.section-head-center { justify-content: center; text-align: center; margin-bottom: 44px; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-step { text-align: center; padding: 12px; }
.process-num { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: #fff; font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 1.1rem; }
.process-step h3 { margin-bottom: .6rem; }
.process-step p { color: var(--ink-soft); font-size: .95rem; }
.process-grid { counter-reset: step; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq summary { padding: 18px 22px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: color .15s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--gold-deep); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold-deep); }
.faq details p { padding: 0 22px 20px; color: var(--ink-soft); }
.faq details p a { color: var(--gold-deep); text-decoration: underline; }

/* ---------- Sections ---------- */
.section { padding: 54px 0; }
.section-alt { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-pad { padding: 40px 0 60px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 36px; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.check-list { list-style: none; margin: 1.4rem 0 2rem; }
.check-list li { position: relative; padding-left: 1.8rem; margin-bottom: .7rem; color: var(--ink-2); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }
.stat-card { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 40px; display: grid; gap: 28px; }
.stat-card .stat strong { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 2rem; display: block; color: #fff; }
.stat-card .stat span { color: #b9bdc7; font-size: .9rem; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; aspect-ratio: 4/3; background: var(--cream-2); overflow: hidden; display: block; }
.card-media-link { position: absolute; inset: 0; display: block; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }

/* Karten-Bilderslider (Übersicht) */
.card-slider .cs-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s var(--ease); }
.card-slider .cs-slide.is-active { opacity: 1; }
.cs-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 34px; height: 34px; border-radius: 50%; border: 0; background: rgba(255,255,255,.55); color: var(--ink); font-size: 1.4rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s var(--ease), background .2s; backdrop-filter: blur(3px); }
.card-media:hover .cs-arrow { opacity: 1; }
.cs-arrow:hover { background: #fff; }
.cs-prev { left: 10px; }
.cs-next { right: 10px; }
.cs-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 5px; pointer-events: none; }
.cs-dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.55); transition: background .25s, width .25s; }
.cs-dots i.is-active { background: #fff; width: 16px; border-radius: 3px; }
@media (hover: none) { .cs-arrow { opacity: .9; } }
.card-noimg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-family: 'Schibsted Grotesk', system-ui, sans-serif; letter-spacing: .1em; }
.card-sold .card-media img { filter: grayscale(.6) brightness(.92); }
.badge { position: absolute; font-size: .72rem; font-weight: 600; padding: .35rem .7rem; border-radius: 100px; letter-spacing: .02em; }
.badge-deal { top: 12px; left: 12px; background: rgba(21,23,28,.85); color: #fff; backdrop-filter: blur(4px); }
.badge-status { top: 12px; right: 12px; color: #fff; }
.badge-reserviert { background: var(--blue); }
.badge-verkauft, .badge-vermietet { background: var(--red); }

/* Status als großes Diagonalband: links unten → rechts oben (Ecke zu Ecke) */
.card-status { position: absolute; top: 50%; left: 50%; width: 150%; text-align: center; z-index: 5; color: #fff; font-weight: 800; font-size: 1.05rem; letter-spacing: .14em; text-transform: uppercase; padding: .5rem 0; background: var(--red); box-shadow: 0 6px 18px rgba(0,0,0,.3); transform: translate(-50%, -50%) rotate(-45deg); transform-origin: center; pointer-events: none; white-space: nowrap; }
.card-status-reserviert { background: var(--blue); }
.card-status-verkauft, .card-status-vermietet { background: var(--red); }
.card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.card-loc { font-size: .8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.card-title { font-size: 1.15rem; margin: .4rem 0 .9rem; line-height: 1.25; }
.card-title a:hover { color: var(--gold-deep); }
.card-facts { display: flex; gap: 1.2rem; font-size: .9rem; color: var(--ink-2); padding-bottom: 1rem; margin-top: auto; }
.card-facts strong { font-weight: 700; }
.card-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 1rem; }
.card-price { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.3rem; font-weight: 600; }
.card-price .per { font-size: .8rem; color: var(--ink-soft); font-family: 'Inter'; font-weight: 500; }
.card-link { font-weight: 600; font-size: .9rem; color: var(--gold-deep); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; padding: 72px 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: #b9bdc7; margin: .8rem 0 2rem; }
.cta-inner .hero-actions { justify-content: center; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Page head ---------- */
.page-head { background: var(--cream); border-bottom: 1px solid var(--line); padding: 56px 0; }
.page-head h1 { margin-top: .3rem; }
.page-head h1 em { font-style: italic; color: var(--gold-deep); }
.page-head .lead { margin-top: 1rem; }

/* ---------- Filter bar ---------- */
.filter-bar-wrap { margin-top: -28px; position: relative; z-index: 5; }
.filter-bar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 18px; display: flex; gap: 12px; flex-wrap: wrap; }
.filter-bar select, .filter-bar input { flex: 1 1 160px; }
.filter-bar .btn { flex: 0 0 auto; }
.result-count { color: var(--ink-soft); font-size: .9rem; margin-bottom: 1.5rem; }
.empty { text-align: center; padding: 80px 20px; }
.empty h3 { margin-bottom: .6rem; }

/* ---------- Detail ---------- */
.breadcrumb { padding: 20px 24px; font-size: .85rem; color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--gold-deep); }
.detail-top { padding-top: 18px; }
.detail-tags { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: .7rem; }
.detail-tags .badge { position: static; }
.detail-tags .ref { font-size: .8rem; color: var(--ink-soft); }
/* Titel unter der Galerie – deutlich kleiner (ImmoScout-Stil) */
.detail-top h1 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); line-height: 1.25; margin: 0; }
.detail-loc { color: var(--ink-soft); margin-top: .5rem; font-size: 1.02rem; }

.gallery { margin-top: 8px; }
.gallery-main { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream-2); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-empty { display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-family: 'Schibsted Grotesk', system-ui, sans-serif; }
.gallery-sold { position: absolute; top: 20px; right: 20px; background: var(--red); color: #fff; padding: .5rem 1.2rem; border-radius: 100px; font-weight: 600; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.thumb { flex: 0 0 110px; aspect-ratio: 4/3; border: 2px solid transparent; border-radius: var(--radius); overflow: hidden; cursor: pointer; padding: 0; background: none; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--gold); }

.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; padding-top: 48px; padding-bottom: 80px; align-items: start; }
/* Kontakt-Box bleibt beim Scrollen sichtbar */
@media (min-width: 901px) { .detail-aside { position: sticky; top: 88px; } }
/* Objektbeschreibung einklappbar */
.desc-collapse { transition: max-height .25s; }
.desc-collapse.is-collapsed { max-height: 110px; overflow: hidden; position: relative; }
.desc-collapse.is-collapsed::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 52px; background: linear-gradient(transparent, #fff); }
.desc-more { margin-top: .7rem; background: none; border: none; color: var(--gold-deep); font-weight: 600; font-size: .92rem; cursor: pointer; padding: 0; }
.desc-more:hover { text-decoration: underline; }
.price-box { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 28px; }
.price-label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.price-value { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 2.2rem; font-weight: 600; }
.price-value small { font-size: 1rem; color: var(--ink-soft); }
.price-prov { font-size: .85rem; color: var(--ink-soft); text-align: right; max-width: 200px; }

/* Flex statt Grid: max. 4 pro Reihe, letzte Reihe füllt sich (keine leeren grauen Zellen) */
.keyfacts { display: flex; flex-wrap: wrap; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 36px; }
.keyfact { background: #fff; padding: 20px; text-align: center; flex: 1 1 calc(25% - 1px); min-width: 130px; }
.keyfact strong { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.5rem; display: block; }
.keyfact span { font-size: .8rem; color: var(--ink-soft); }

.detail-block { margin-bottom: 40px; }
.detail-block h2 { margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--gold-tint); }
.detail-block p { color: var(--ink-2); }
.feature-tags { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1rem; }
.feature-tags li { background: var(--cream); border: 1px solid var(--line); border-radius: 100px; padding: .4rem .9rem; font-size: .88rem; font-weight: 500; }
.feature-tags li::before { content: '✓ '; color: var(--gold-deep); }

.data-tables { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; align-items: start; }
.data-col { display: flex; flex-direction: column; gap: 28px; }
.detail-map { overflow: hidden; border-radius: 8px; border: 1px solid var(--line); }
.provision-note { margin-top: 1rem; }
.qualifikation { margin-top: 1.6rem; }
.qualifikation h3 { font-size: 1rem; color: var(--gold-deep); margin-bottom: .7rem; }
.data-table h3 { font-size: 1rem; margin-bottom: .8rem; color: var(--gold-deep); }
.data-table dl { border-top: 1px solid var(--line); }
.data-table dl > div { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.data-table dt { color: var(--ink-soft); }
.data-table dd { font-weight: 600; text-align: right; }
.energy-class { display: inline-block; padding: .15rem .6rem; border-radius: var(--radius); color: #fff; font-weight: 700; background: var(--green); }
/* EU-Energieeffizienz-Farbskala A → H */
.energy-a { background: #2e9b4e; } .energy-b { background: #5cb036; } .energy-c { background: #a7c722; }
.energy-d { background: #e6c200; color: #2c2c2c; } .energy-e { background: #f2a200; } .energy-f { background: #e8771f; }
.energy-g { background: #d9532a; } .energy-h { background: #c5283d; }
/* Energie-Zeile auf der Karte (GEG §87 Pflichtangaben) */
.card-energy { display: flex; align-items: center; flex-wrap: wrap; gap: .45rem; margin: .85rem 0 0; padding-top: .85rem; border-top: 1px solid var(--line); font-size: .78rem; color: var(--ink-soft); line-height: 1.4; }
.card-energy .energy-class { font-size: .75rem; padding: .1rem .5rem; }
.card-energy-txt { flex: 1; min-width: 0; }
.energy-d, .energy-e { background: #c8a13a; }
.energy-f, .energy-g, .energy-h { background: var(--red); }

.detail-aside { position: sticky; top: 100px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.contact-card h2 { font-size: 1.25rem; }
.contact-card p { font-size: .92rem; color: var(--ink-soft); margin: .6rem 0 1.2rem; }
.inquiry-form { margin-top: 1.2rem; display: grid; gap: .7rem; }
.form-hint { font-size: .78rem; color: var(--ink-soft); }
.form-hint a { color: var(--gold-deep); text-decoration: underline; }

/* ---------- Wizard ---------- */
.wizard-section { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding-top: 48px; padding-bottom: 80px; align-items: stretch; }
.wizard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.wizard-progress { margin-bottom: 32px; }
.wizard-progress-bar { height: 6px; background: var(--cream-2); border-radius: 100px; overflow: hidden; }
.wizard-progress-bar span { display: block; height: 100%; background: var(--gold); transition: width .4s var(--ease); }
.wizard-steps-label { display: flex; justify-content: space-between; margin-top: .8rem; font-size: .78rem; color: var(--ink-soft); font-weight: 600; gap: 6px; }
.wizard-steps-label span { transition: color .2s; }
.wizard-steps-label span.active { color: var(--gold-deep); }
.wizard-step { display: none; border: none; }
.wizard-step.is-active { display: block; animation: fadeIn .35s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wizard-step legend { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 1.4rem; }
.step-hint { color: var(--ink-soft); font-size: .92rem; margin-bottom: 1.4rem; margin-top: -.8rem; }
.wizard .field-row { margin-bottom: 1.1rem; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; margin-bottom: 1.8rem; }
.choice { position: relative; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 24px 16px; text-align: center; cursor: pointer; transition: all .18s var(--ease); }
.choice:hover { border-color: var(--gold); background: var(--cream); }
.choice input { position: absolute; opacity: 0; }
.choice-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.choice-label { font-weight: 600; font-size: .95rem; }
.choice:has(input:checked) { border-color: var(--gold); background: var(--gold-tint); box-shadow: 0 0 0 3px var(--gold-tint); }

/* Reiche Variante: Linien-Icon + Titel + Untertitel (wie Mockup) */
.choice-grid-rich { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.choice-grid-rich .choice { padding: 22px 16px 20px; display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.choice-grid-rich .choice-icon { width: 88px; height: 64px; margin-bottom: .7rem; }
.choice-grid-rich .choice-icon svg { width: 100%; height: 100%; }
.choice-grid-rich .choice-label { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.08rem; font-weight: 600; }
.choice-sub { font-size: .82rem; color: var(--ink-soft); line-height: 1.35; }
.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; gap: 1rem; }
.checkbox-line { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--ink-2); cursor: pointer; margin-top: 1rem; }
.checkbox-line input { width: auto; margin-top: .25rem; }
.checkbox-line a { color: var(--gold-deep); text-decoration: underline; }

.wizard-aside { display: flex; }
.wizard-aside .trust-box { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; justify-content: center; width: 100%; }
.trust-box h3 { color: #fff; margin-bottom: 1rem; }
.trust-box .check-list li { color: #d7dae1; }
.trust-box .check-list li::before { color: var(--gold); }
.trust-contact { margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.15); }
.trust-contact span { font-size: .85rem; color: #b9bdc7; display: block; margin-bottom: .7rem; }
.trust-box .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.trust-box .btn-ghost:hover { background: #fff; color: var(--ink); }
.page-head-sell .lead { max-width: 70ch; }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; padding: 56px 24px 80px; }
.contact-list { list-style: none; margin-top: 1.2rem; }
.contact-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.contact-list li span { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.contact-list li a { font-size: 1.1rem; font-weight: 600; margin-top: .2rem; }
.contact-list li a:hover { color: var(--gold-deep); }
.card-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); display: grid; gap: 1rem; }
.card-form h2 { font-size: 1.4rem; }

/* ---------- Legal / errors ---------- */
.legal-text { max-width: 760px; padding: 48px 24px 80px; }
.legal-text h2 { font-size: 1.3rem; margin: 2rem 0 .7rem; }
.legal-text p { color: var(--ink-2); margin-bottom: .8rem; }
.legal-note { background: var(--cream); border-left: 3px solid var(--gold); padding: 1rem 1.2rem; font-size: .88rem; color: var(--ink-soft); margin-top: 2rem; }
.legal-note code { background: #fff; padding: .1rem .4rem; border-radius: 3px; }
.error-page { text-align: center; padding: 100px 24px; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.error-page h1 { margin: .4rem 0 .6rem; }
.error-page .btn { margin: .3rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c3c7cf; padding: 64px 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.brand-footer .brand-mark { color: #fff; }
.footer-tag { color: #fff; margin-top: 1rem; font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.1rem; }
.footer-region { color: #8b909b; font-size: .9rem; margin-top: .3rem; }
.site-footer h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.1rem; font-weight: 600; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: .7rem; font-size: .92rem; }
.site-footer ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px; font-size: .85rem; color: #8b909b; display: flex; justify-content: space-between; align-items: center; gap: 10px 18px; flex-wrap: wrap; }
.footer-credit { margin-left: auto; }
.footer-credit a { color: #8b909b; text-decoration: none; }
.footer-credit a:hover { color: var(--gold, #c9a227); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .hero-inner, .split, .detail-layout, .wizard-section, .contact-layout { grid-template-columns: 1fr; }
    .services, .process-grid { grid-template-columns: 1fr; }
    .hero-media { order: -1; }
    .hero-media img { aspect-ratio: 16/10; }
    .hero-badge { left: 12px; }
    .searchband-form { flex-direction: column; align-items: stretch; }
    .searchband-form .btn { width: 100%; }
    .detail-aside, .wizard-aside .trust-box, .trust-box { position: static; }
    .main-nav ul { position: fixed; inset: 76px 0 auto 0; flex-direction: column; background: #fff; border-bottom: 1px solid var(--line); padding: 16px 24px; gap: 0; transform: translateY(-150%); transition: transform .3s var(--ease); box-shadow: var(--shadow); }
    .main-nav a { display: block; padding: .9rem 0; border-bottom: 1px solid var(--line); }
    .nav-cta a { display: inline-block; margin-top: .8rem; }
    .navtoggle:checked ~ ul { transform: translateY(0); }
    .navtoggle-btn { display: block; width: 28px; height: 22px; position: relative; cursor: pointer; }
    .navtoggle-btn span, .navtoggle-btn::before, .navtoggle-btn::after { content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); transition: .25s; }
    .navtoggle-btn span { top: 10px; } .navtoggle-btn::before { top: 2px; } .navtoggle-btn::after { top: 18px; }
}
@media (max-width: 560px) {
    .price-value { font-size: 1.7rem; }
    .wizard, .card-form, .contact-card { padding: 22px; }
    .hero-trust { flex-direction: column; gap: .1rem; }
}

/* =================================================================
   STARTSEITE (morfis-Stil) — Buttons, Hero, Sektionen, Animationen
   ================================================================= */

.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-1px); }
.btn-light-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-light-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.eyebrow-light { color: var(--gold-tint); }
.h-light { color: #fff; }
.lead-light { color: rgba(255,255,255,.82); }
.check-list-light li { color: rgba(255,255,255,.88); }
.check-list-light li::before { color: var(--gold); }

/* ---- HERO (Vollbild, Video/Bild + Overlay) ---- */
.mhero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.mhero-bg { position: absolute; inset: 0; z-index: 0; }
.mhero-bg img, .mhero-bg video { width: 100%; height: 100%; object-fit: cover; }
.mhero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(15,17,22,.86) 0%, rgba(15,17,22,.66) 45%, rgba(15,17,22,.32) 100%); }
.mhero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px; align-items: center; padding: 132px 24px 90px; width: 100%; }
.mhero-copy h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.04; margin: .4rem 0 1.3rem; }
.mhero-copy h1 em { font-style: italic; color: var(--gold); }
.mhero-copy .lead { color: rgba(255,255,255,.85); margin-bottom: 2rem; }
.mhero-rating { margin-top: 2rem; display: flex; align-items: center; gap: .5rem; font-size: .95rem; color: rgba(255,255,255,.85); }
.mhero-rating .stars { color: var(--gold); letter-spacing: .08em; }
.mhero-rating strong { color: #fff; font-size: 1.05rem; }
.mhero-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); padding: 22px; backdrop-filter: blur(10px); }
.mhero-photo { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; background: rgba(255,255,255,.06); }
.mhero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.photo-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem; background: linear-gradient(135deg, var(--gold-deep), var(--ink)); }
.photo-placeholder span { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 3rem; font-weight: 700; color: #fff; }
.photo-placeholder small { color: rgba(255,255,255,.7); letter-spacing: .1em; text-transform: uppercase; font-size: .7rem; }
.mhero-card-body strong { display: block; font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.25rem; }
.mhero-card-body span { display: block; color: rgba(255,255,255,.7); font-size: .85rem; margin-bottom: .9rem; }
.card-call { display: inline-block; color: var(--gold); font-weight: 600; }
.mhero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; color: #fff; font-size: 1.4rem; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---- Band-Strip (Kostenfrei & unverbindlich) ---- */
.band-strip { background: var(--ink); color: #fff; }
.band-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.band-strip-inner > div { padding: 26px 20px; text-align: center; }
.band-strip-inner strong { display: block; font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.05rem; color: var(--gold-tint); margin-bottom: .25rem; }
.band-strip-inner span { font-size: .85rem; color: rgba(255,255,255,.65); }

/* ---- Reviews ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; }
.review-stars { color: var(--gold); letter-spacing: .1em; margin-bottom: 1rem; }
.review blockquote { font-size: 1.05rem; line-height: 1.6; color: var(--ink-2); margin-bottom: 1.4rem; }
.review figcaption strong { display: block; }
.review figcaption span { font-size: .85rem; color: var(--ink-soft); }
.review-summary { display: flex; align-items: center; justify-content: center; gap: .6rem; margin-top: 32px; font-size: 1rem; color: var(--ink-soft); flex-wrap: wrap; }
.review-summary .stars { color: var(--gold); font-size: 1.2rem; }
.review-summary strong { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.2rem; color: var(--ink); }

/* ---- Dark section ---- */
.section-dark { background: var(--ink); color: #fff; }
.section-tight { padding: 40px 0; }

/* ---- Mehrwert cards ---- */
.mehrwert-cards { display: grid; gap: 16px; }
.mehrwert-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 24px; display: flex; align-items: center; gap: 20px; }
.mc-no { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 2.2rem; font-weight: 600; color: var(--gold); flex: 0 0 auto; min-width: 96px; }
.mehrwert-card p { color: rgba(255,255,255,.82); font-size: .95rem; }

/* ---- Partners ---- */
.partners-label { text-align: center; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.4rem; }
.partners { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.partners span { border: 1px solid var(--line); border-radius: 100px; padding: .6rem 1.4rem; font-weight: 600; color: var(--ink-2); font-size: .9rem; background: #fff; transition: border-color .2s, color .2s; }
.partners span:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ---- Counters ---- */
.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.counter { text-align: center; }
.counter strong { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 600; color: var(--gold-deep); display: block; line-height: 1; }
.counter span { color: var(--ink-soft); font-size: .92rem; margin-top: .5rem; display: block; }

/* ---- Strategy ---- */
.strategy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.strategy-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; border-left: 3px solid var(--gold); }
.strategy-tag { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .9rem; }
.strategy-problem { color: var(--ink-soft); font-style: italic; margin-bottom: .7rem; }
.strategy-solution { color: var(--ink-2); }

/* ---- Why grid ---- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; transition: transform .25s var(--ease), box-shadow .25s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-check { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--gold-tint); color: var(--gold-deep); font-weight: 700; margin-bottom: 1rem; }
.why-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.why-card p { color: var(--ink-soft); font-size: .95rem; }

/* ---- Before/After Slider ---- */
.ba-slider { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; user-select: none; cursor: ew-resize; box-shadow: var(--shadow); }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; border-right: 2px solid #fff; }
.ba-before-wrap .ba-before { width: 200%; max-width: none; }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,.3); color: var(--ink); font-size: .9rem; pointer-events: none; }
.ba-label { position: absolute; bottom: 14px; font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; background: rgba(21,23,28,.7); color: #fff; padding: .3rem .7rem; border-radius: 100px; pointer-events: none; }
.ba-label-l { left: 14px; } .ba-label-r { right: 14px; }

/* ---- 5 Schritte ---- */
.steps5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step5 { text-align: center; position: relative; padding: 12px; }
.step5-no { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold); font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 1rem; }
.step5 h3 { color: var(--ink); font-size: 1.05rem; margin-bottom: .5rem; }
.step5 p { color: var(--ink-soft); font-size: .88rem; }
.section-dark .step5 h3 { color: #fff; }
.section-dark .step5 p { color: rgba(255,255,255,.7); }

/* ---- Stories ---- */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.story-metric { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--gold-deep); display: block; line-height: 1; margin-bottom: .8rem; }
.story h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.story-obj { font-size: .85rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .9rem; }
.story p:last-child { color: var(--ink-2); font-size: .95rem; }

/* ---- WhatsApp Band ---- */
.wa-band { background: #0b3d2e; color: #fff; padding: 48px 0; }
.wa-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.wa-inner h2 { color: #fff; }
.wa-inner p { color: rgba(255,255,255,.8); margin-top: .4rem; }
.btn-wa { background: #25d366; color: #073b27; border-color: #25d366; font-size: 1.05rem; padding: 1rem 1.8rem; }
.btn-wa:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-1px); }
.wa-ico { font-size: 1.2rem; }

/* ---- Region / Karte ---- */
.region-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.region-map iframe { width: 100%; height: 360px; border: 0; border-radius: var(--radius-lg); filter: grayscale(.2); }
.map-hint { font-size: .82rem; color: var(--ink-soft); margin-top: .8rem; text-align: center; }
.map-hint a { color: var(--gold-deep); text-decoration: underline; }
.region-table table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.region-table th { text-align: left; font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); padding: 12px 16px; background: var(--cream); }
.region-table td { padding: 13px 16px; border-top: 1px solid var(--line); font-size: .95rem; }
.region-table td a { color: var(--gold-deep); font-weight: 600; }
.trend { font-weight: 700; text-align: center; }
.trend-up { color: var(--green); } .trend-down { color: var(--red); } .trend-flat { color: var(--ink-soft); }

/* ---- Kontakt-CTA ---- */
.contact-cta .card-form { background: #fff; }
.contact-quick { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: .7rem; }
.contact-quick a { color: #fff; font-weight: 600; font-size: 1.05rem; }
.contact-quick a:hover { color: var(--gold); }

/* ---- Responsive (Startseite) ---- */
@media (max-width: 1024px) {
    .reviews-grid, .why-grid, .stories-grid, .counters { grid-template-columns: repeat(2, 1fr); }
    .steps5 { grid-template-columns: repeat(2, 1fr); }
    .strategy-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .mhero-inner { grid-template-columns: 1fr; padding-top: 110px; }
    .mhero-card { max-width: 340px; }
    .band-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .region-layout { grid-template-columns: 1fr; }
    .wa-inner { flex-direction: column; text-align: center; align-items: stretch; }
}
@media (max-width: 600px) {
    .reviews-grid, .why-grid, .stories-grid, .counters, .steps5, .band-strip-inner { grid-template-columns: 1fr; }
    .mhero-copy h1 { font-size: 2.4rem; }
    .mehrwert-card { flex-direction: column; text-align: center; gap: 10px; }
}

/* ===== Nummerierte Sektionsköpfe ===== */
.sec-head { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
.sec-head-center { justify-content: center; text-align: left; }
.sec-no { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 700; line-height: .9; color: var(--gold); opacity: .9; flex: 0 0 auto; }
.section-dark .sec-no { color: var(--gold); }
.section-intro { text-align: center; max-width: 64ch; margin: -20px auto 40px; color: var(--ink-soft); }
.section-dark .section-intro { color: rgba(255,255,255,.7); }

/* Trust-Features */
.trust-features { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; padding: 0; }
.trust-features li { font-size: .85rem; font-weight: 500; color: var(--ink-2); background: var(--cream); border: 1px solid var(--line); border-radius: 100px; padding: .4rem .9rem; }
.trust-features li::before { content: '✓ '; color: var(--gold-deep); }
.review-badge { display: inline-block; margin-top: .4rem; font-size: .7rem; font-style: normal; color: var(--gold-deep); background: var(--gold-tint); padding: .1rem .5rem; border-radius: 4px; }
.review figcaption span { display: block; }

/* Sechs Zahlen */
.zahlen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.zahl { background: #fff; padding: 30px 26px; text-align: center; }
.zahl strong { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-deep); display: block; line-height: 1; }
.zahl strong.zahl-text { font-size: 1.5rem; }
.zahl-label { display: block; font-weight: 600; margin: .6rem 0 .3rem; }
.zahl-desc { font-size: .85rem; color: var(--ink-soft); }

/* Drei Spalten (dunkel) */
.three-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-card-dark { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 28px; }
.feat-card-dark h3 { color: #fff; margin-bottom: .6rem; }
.feat-card-dark p { color: rgba(255,255,255,.8); font-size: .95rem; }

/* Problem/Solution */
.ps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ps-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; }
.ps-cost { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--red); background: #fbeeee; padding: .25rem .6rem; border-radius: 4px; margin-bottom: .9rem; }
.ps-problem { font-size: 1.15rem; margin-bottom: .4rem; }
.ps-problem-desc { color: var(--ink-soft); font-size: .92rem; margin-bottom: 1.1rem; }
.ps-solution { border-top: 1px solid var(--line); padding-top: 1rem; }
.ps-solution strong { color: #3f9d63; display: block; margin-bottom: .2rem; }
.ps-solution span { font-size: .92rem; color: var(--ink-2); }

/* Szenarien */
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 40px; }
.scenario-card { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius-lg); padding: 26px; transition: transform .25s var(--ease), box-shadow .25s; }
.scenario-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.scenario-card h3 { margin-bottom: .5rem; }
.scenario-card p { color: var(--ink-soft); font-size: .95rem; }
.mini-cta { text-align: center; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; }
.mini-cta h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.mini-cta p { color: var(--ink-soft); margin-bottom: 1.4rem; }

/* Vorteile */
.vorteil-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.vorteil-no { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1rem; color: var(--gold); font-weight: 600; }
.vorteil-tag { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin: .3rem 0 1rem; }
.vorteil-card h3 { font-size: 1.3rem; margin-bottom: .7rem; }
.vorteil-card p { color: var(--ink-soft); }

/* Homestaging Stats */
.stage-stats { display: grid; gap: 14px; margin: 1.8rem 0; }
.stage-stats > div { display: flex; align-items: baseline; gap: 14px; }
.stage-stats strong { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.3rem; color: var(--gold-deep); min-width: 90px; }
.stage-stats span { color: var(--ink-soft); font-size: .92rem; }

/* Service 6 */
.service6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); overflow: hidden; }
.service6-card { background: var(--ink); padding: 28px; }
.s6-no { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold); font-family: 'Schibsted Grotesk', system-ui, sans-serif; margin-bottom: 1rem; }
.service6-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: .4rem; }
.service6-card p { color: rgba(255,255,255,.7); font-size: .9rem; }

/* 5 Schritte hell */
.step5-no-dark { border-color: var(--gold); color: var(--gold-deep); }
.step5-h-dark { color: var(--ink); } .step5-p-dark { color: var(--ink-soft); }

/* Case studies */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }

/* Aus der Praxis – Karussell (von links nach rechts) */
.cases-carousel { position: relative; }
.cc-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px; margin: 0 -4px; scrollbar-width: none; -ms-overflow-style: none; }
.cc-track::-webkit-scrollbar { display: none; }
.cases-carousel .case { scroll-snap-align: start; flex: 0 0 calc((100% - 48px) / 3); box-sizing: border-box; }
.cc-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 1.6rem; line-height: 1; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,.12); display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.cc-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.cc-prev { left: -10px; }
.cc-next { right: -10px; }
@media (max-width: 900px) { .cases-carousel .case { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 640px) { .cases-carousel .case { flex: 0 0 88%; padding: 24px; } .cc-arrow { display: none; } }
.case-loc { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--gold-deep); }
.case-obj { font-size: .9rem; color: var(--ink-soft); margin: .3rem 0 1rem; }
.case-result { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1rem 0; margin-bottom: 1rem; }
.case-result strong { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.25rem; display: block; }
.case-result span { font-size: .85rem; color: var(--gold-deep); }
.case p:last-child { color: var(--ink-2); font-size: .92rem; }

/* Säulen */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; border-top: 3px solid var(--gold); }
.pillar-letter { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: #fff; font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.3rem; margin-bottom: 1rem; }
.pillar h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.pillar-tag { color: var(--gold-deep); font-style: italic; margin-bottom: 1rem; }
.pillar ul { list-style: none; }
.pillar ul li { position: relative; padding-left: 1.5rem; margin-bottom: .6rem; font-size: .92rem; color: var(--ink-2); }
.pillar ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }

/* Prozess 9 */
.process9 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proc9-item { display: flex; gap: 16px; align-items: flex-start; }
.proc9-no { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); opacity: .8; line-height: 1; }
.proc9-item h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.proc9-item p { color: var(--ink-soft); font-size: .9rem; }

/* Regionale Expertise */
.regions { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.region-col h3 { font-size: 1.2rem; margin-bottom: 1.2rem; padding-bottom: .6rem; border-bottom: 2px solid var(--gold-tint); }
.region-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.region-chip { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; transition: border-color .2s, transform .2s; }
.region-chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.rc-no { font-size: .72rem; color: var(--gold); font-weight: 700; }
.region-chip strong { display: block; font-size: .95rem; margin: .2rem 0; }
.region-chip small { color: var(--ink-soft); font-size: .78rem; }

/* Finaler CTA */
.cta-final { text-align: center; }
.cta-final-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 1rem; }
.cta-final-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); padding: 28px; transition: background .2s, transform .2s; }
.cta-final-card:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.cta-final-card strong { display: block; color: #fff; font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.3rem; margin-bottom: .3rem; }
.cta-final-card span { color: var(--gold); font-weight: 600; }

/* Floating WhatsApp */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; align-items: center; background: #25d366; color: #fff; border-radius: 50px; box-shadow: 0 8px 24px rgba(0,0,0,.25); text-decoration: none; transition: box-shadow .2s; }
.wa-float:hover { box-shadow: 0 10px 30px rgba(0,0,0,.32); }
.wa-icon { flex: 0 0 auto; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
.wa-panel { display: flex; align-items: center; gap: 10px; overflow: hidden; white-space: nowrap; padding-left: 16px; }
.wa-ava { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.65); flex: 0 0 auto; }
.wa-ava-text { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.2); font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: .9rem; }
.wa-text { display: flex; flex-direction: column; line-height: 1.25; }
.wa-text strong { font-size: .9rem; }
.wa-text small { font-size: .72rem; opacity: .92; }

/* Responsive ergänzungen */
@media (max-width: 1024px) {
    .zahlen-grid, .ps-grid, .scenario-grid, .three-cols, .service6, .cases-grid, .pillars, .process9, .cta-final-grid { grid-template-columns: repeat(2, 1fr); }
    .regions { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .zahlen-grid, .ps-grid, .scenario-grid, .three-cols, .service6, .cases-grid, .pillars, .process9, .cta-final-grid, .region-chips { grid-template-columns: 1fr; }
    .sec-head { gap: 12px; }
}

/* ===== Testimonials – Premium-Redesign ===== */
.rating-bar { display: flex; align-items: center; justify-content: center; gap: 12px; margin: -16px auto 40px; padding: 12px 24px; background: var(--cream); border: 1px solid var(--line); border-radius: 100px; width: fit-content; flex-wrap: wrap; }
.rating-google { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .95rem; color: var(--ink); padding-right: 12px; border-right: 1px solid var(--line); }
.rating-google svg { display: block; }
@media (max-width: 560px) {
    .rating-bar { width: auto; max-width: 100%; border-radius: 14px; padding: 12px 16px; gap: 6px 10px; margin: 0 auto 32px; }
    .rating-google { border-right: 0; padding-right: 0; flex-basis: 100%; justify-content: center; }
    .rating-bar .rating-score, .rating-score { font-size: 1.25rem; }
}
.rating-score { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 1.6rem; color: var(--ink); line-height: 1; }
.rating-stars { color: var(--gold); letter-spacing: .12em; font-size: 1.05rem; }
.stars-wrap { position: relative; display: inline-block; letter-spacing: .12em; line-height: 1; white-space: nowrap; }
.stars-wrap .stars-empty { color: #d9d2c4; }
.stars-wrap .stars-fill { position: absolute; left: 0; top: 0; overflow: hidden; color: var(--gold); white-space: nowrap; }
.rating-meta { color: var(--ink-soft); font-size: .9rem; }
.filter-check { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--ink-soft); white-space: nowrap; cursor: pointer; }
.filter-check input { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.sold-section { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 36px; }
.sold-section .lead { color: var(--ink-soft); margin: 4px 0 26px; }
.reviews-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.review { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 20px 20px; box-shadow: var(--shadow); display: flex; flex-direction: column; overflow: hidden; }
.review::after { content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%; background: var(--gold); opacity: 0; transition: opacity .25s; }
.review:hover::after { opacity: 1; }
.review-quote-mark { position: absolute; top: 6px; right: 18px; font-family: Georgia, serif; font-size: 4.5rem; line-height: 1; color: var(--gold-tint); pointer-events: none; }
.review-stars { color: var(--gold); letter-spacing: .08em; margin-bottom: .9rem; position: relative; }
.review blockquote { font-size: .92rem; line-height: 1.6; color: var(--ink-2); margin: 0 0 1.4rem; position: relative; display: -webkit-box; -webkit-line-clamp: 7; line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.review.is-clamped { cursor: pointer; }
.review.is-clamped blockquote { margin-bottom: .5rem; }
.review-more { display: inline-flex; align-items: center; gap: .25rem; background: none; border: 0; padding: 0; margin: 0 0 1.2rem; color: var(--gold-deep); font-weight: 600; font-size: .85rem; cursor: pointer; font-family: inherit; }
.review-more::after { content: '→'; transition: transform .2s; }
.review.is-clamped:hover .review-more::after { transform: translateX(3px); }
/* Bewertungs-Modal */
.review-modal[hidden] { display: none; }
.review-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.review-modal-backdrop { position: absolute; inset: 0; background: rgba(20,18,15,.55); }
.review-modal-box { position: relative; background: #fff; border-radius: var(--radius-lg); max-width: 560px; width: 100%; padding: 38px 34px 32px; box-shadow: 0 30px 80px rgba(0,0,0,.32); max-height: 85vh; overflow: auto; animation: rmIn .25s var(--ease); }
@keyframes rmIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.review-modal-close { position: absolute; top: 10px; right: 14px; background: none; border: 0; font-size: 1.9rem; line-height: 1; color: var(--ink-soft); cursor: pointer; }
.review-modal-close:hover { color: var(--ink); }
.review-modal-stars { color: var(--gold); letter-spacing: .1em; font-size: 1.15rem; margin-bottom: 1rem; }
.review-modal-text { font-size: 1.06rem; line-height: 1.7; color: var(--ink-2); margin: 0 0 1.6rem; }
.review-modal-who { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.review-modal-avatar { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; }
.review-modal-who strong { display: block; }
.review-modal-who > div span { font-size: .85rem; color: var(--ink-soft); }
/* Bewertungs-Slider (mehr als 5) */
.reviews-grid.reviews-slider { display: flex; grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px; }
.reviews-grid.reviews-slider::-webkit-scrollbar { display: none; }
.reviews-grid.reviews-slider .review { flex: 0 0 calc((100% - 4 * 16px) / 5); scroll-snap-align: start; }
@media (max-width: 1100px) { .reviews-grid.reviews-slider .review { flex-basis: calc((100% - 2 * 16px) / 3); } }
@media (max-width: 760px) { .reviews-grid.reviews-slider .review { flex-basis: calc((100% - 16px) / 2); } }
@media (max-width: 520px) { .reviews-grid.reviews-slider .review { flex-basis: 86%; } }
.reviews-slider-wrap { position: relative; }
.rev-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); color: var(--ink); font-size: 1.7rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 6; transition: background .2s, color .2s, border-color .2s; }
.rev-arrow:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.rev-prev { left: -12px; }
.rev-next { right: -12px; }
@media (max-width: 760px) { .rev-arrow { width: 40px; height: 40px; } .rev-prev { left: 0; } .rev-next { right: 0; } }
.review-quote-mark { font-size: 3.2rem; top: 2px; right: 14px; }
.review-who strong { font-size: .9rem; }
.review-who span { font-size: .75rem; }
.review-avatar { width: 38px; height: 38px; font-size: .85rem; }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.review-avatar { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: .95rem; }
.review-who { display: flex; flex-direction: column; line-height: 1.3; }
.review-who strong { font-size: .95rem; }
.review-who span { font-size: .8rem; color: var(--ink-soft); }
.review-badge { margin-left: auto; font-size: .68rem; font-style: normal; font-weight: 600; color: var(--gold-deep); background: var(--gold-tint); padding: .18rem .5rem; border-radius: 4px; }
.trust-features { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin: 44px auto 0; padding: 0; max-width: 900px; }
.trust-features li { font-size: .88rem; font-weight: 500; color: var(--ink-2); padding: .2rem 1.2rem; position: relative; }
.trust-features li::before { content: '✓'; color: var(--gold-deep); margin-right: .4rem; font-weight: 700; }
.trust-features li:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 14px; background: var(--line); }
@media (max-width: 1100px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .reviews-grid { grid-template-columns: 1fr; } .trust-features li::after { display: none; } }

/* ===== Hero: kreisförmiges Video-Accent ("Schlüsselübergabe") ===== */
.mhero-card { position: relative; }
.mhero-circle { position: absolute; top: -34px; left: -34px; width: 104px; height: 104px; border-radius: 50%; z-index: 3; }
.mhero-circle video { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 3px solid var(--ink); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.mhero-circle-ring { position: absolute; inset: -7px; border-radius: 50%; border: 2px dashed var(--gold); animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .mhero-circle-ring { animation: none; } }
@media (max-width: 900px) { .mhero-circle { width: 84px; height: 84px; top: -26px; left: 12px; } }

/* ===== WhatsApp Icons – größer ===== */
.wa-svg { width: 24px; height: 24px; flex: 0 0 auto; }
.btn-wa { font-size: 1.08rem; gap: .6rem; }
.wa-float svg { width: 30px; height: 30px; }

/* ===== Interaktive Objekt-Karte ===== */
#listingsMap { width: 100%; height: 420px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); z-index: 1; }
.map-pin-dot { display: block; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.4); transition: transform .15s; }
.map-pin:hover .map-pin-dot { transform: scale(1.25); background: var(--gold-deep); }
.leaflet-popup-content-wrapper { border-radius: var(--radius-lg); padding: 0; overflow: hidden; box-shadow: var(--shadow-lg); }
.leaflet-popup-content { margin: 0; width: auto !important; }
.map-popup { display: block; color: var(--ink); text-decoration: none; }
.map-popup .mp-img { display: block; height: 120px; background-size: cover; background-position: center; background-color: var(--cream-2); }
.map-popup .mp-body { display: block; padding: 12px 14px 14px; }
.mp-price { display: block; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--ink); }
.mp-title { display: block; font-size: .9rem; font-weight: 600; margin: .2rem 0; line-height: 1.3; }
.mp-city { display: block; font-size: .8rem; color: var(--ink-soft); }
.mp-link { display: block; margin-top: .5rem; font-size: .82rem; font-weight: 700; color: var(--gold-deep); }
.map-popup:hover .mp-link { color: var(--ink); }

/* ============================================================
   MORFIS PREVIEW PARITY – neue Komponenten
   ============================================================ */

/* --- Header-Logo mit grünem Badge --- */
.brand { flex-direction: row; align-items: center; gap: 12px; }
.brand-badge { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 9px; background: var(--green); color: #fff; font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-weight: 800; font-size: 1.35rem; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-size: 1.18rem; letter-spacing: .01em; }
.brand-sub { letter-spacing: .22em; }
.header-transparent:not(.scrolled) .brand-badge { background: var(--green); }

/* --- Hero-Pill „Top bewertet" --- */
.hero-pill { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; padding: .45rem .9rem; border-radius: 100px; font-size: .8rem; font-weight: 500; margin-bottom: 1.1rem; }
.hero-pill-stars { color: var(--gold); letter-spacing: .06em; }

/* --- Hero-Suchbox --- */
.hero-search { margin-top: 2rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); padding: 14px; backdrop-filter: blur(10px); max-width: 560px; }
.hs-tabs { display: inline-flex; background: rgba(0,0,0,.25); border-radius: 100px; padding: 4px; margin-bottom: 12px; }
.hs-tab { position: relative; cursor: pointer; padding: .5rem 1.3rem; border-radius: 100px; font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.7); transition: color .2s, background .2s; }
.hs-tab input { position: absolute; opacity: 0; pointer-events: none; }
.hs-tab:has(input:checked) { background: var(--green); color: #fff; }
.hs-row { display: flex; gap: 10px; }
.hs-input { flex: 1; min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .85rem 1rem; font-size: .95rem; color: var(--ink); }
.hs-input::placeholder { color: var(--ink-soft); }
.hs-btn { display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; }
@media (max-width: 560px) { .hs-row { flex-direction: column; } .hs-btn { justify-content: center; } }

/* --- Zertifizierungs-Strip --- */
.cert-strip { background: var(--ink); color: #fff; border-top: 1px solid rgba(255,255,255,.08); padding: 26px 0 28px; }
/* Reihe 1: drei Vertrauens-Badges, zentriert */
.cert-badges { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 38px; }
.cert { display: inline-flex; align-items: center; gap: 11px; }
.cert > div > span { white-space: nowrap; }
.cert-ic { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex: 0 0 auto; border-radius: 8px; background: rgba(164,126,54,.16); color: var(--gold); font-weight: 700; font-size: 1rem; }
.cert strong { display: block; font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: .95rem; color: #fff; }
.cert span { font-size: .78rem; color: rgba(255,255,255,.6); }

/* Google als gleichwertiges 4. Badge (identische Optik wie die übrigen) */
/* Mobil: 2×2-Raster, sauber zentriert */
@media (max-width: 600px) {
    .cert-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; max-width: 380px; margin: 0 auto; }
    .cert { gap: 9px; align-items: center; }
    .cert-ic { width: 34px; height: 34px; font-size: .9rem; }
    .cert strong { font-size: .85rem; }
    .cert span { font-size: .7rem; white-space: normal; line-height: 1.25; }
}
@media (max-width: 380px) {
    .cert-badges { gap: 16px 10px; }
    .cert strong { font-size: .8rem; }
}

/* --- Über-Sektion Bild --- */
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }

/* --- Bewertungs-CTA Checks --- */
.cta-checks { list-style: none; padding: 0; margin: 1.4rem 0 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.8rem; }
.cta-checks li { position: relative; padding-left: 1.6rem; color: rgba(255,255,255,.85); font-size: .95rem; }
.cta-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* --- Leistungen-Karten --- */
.leistungen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.leistung-card { position: relative; display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 26px 56px; box-shadow: var(--shadow); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.leistung-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.leistung-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.leistung-card p { color: var(--ink-soft); font-size: .92rem; line-height: 1.55; }
.leistung-arrow { position: absolute; left: 26px; bottom: 24px; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--cream); color: var(--ink); transition: background .25s, color .25s; }
.leistung-card:hover .leistung-arrow { background: var(--gold); color: #fff; }
@media (max-width: 980px) { .leistungen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .leistungen-grid { grid-template-columns: 1fr; } }

/* --- Final-CTA Trust-Zeile --- */
.cta-final-trust { margin-top: 1.8rem; color: rgba(255,255,255,.6); font-size: .85rem; letter-spacing: .02em; }

/* --- Rating-Bar Score Gold --- */
.rating-bar .rating-stars { color: var(--gold); letter-spacing: .08em; font-size: 1.05rem; }
.rating-bar .rating-score { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--ink); }

/* ===== KORREKTUREN (Logo, Zentrierung, Markt, Popup) ===== */

/* Logo: ein horizontales Bild (Emblem + Schriftzug) */
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 48px; width: auto; display: block; }
.header-transparent:not(.scrolled) .brand-logo { filter: brightness(0) invert(1); }
/* Footer-Logo in Farbe (Kundenwunsch) – auf hellem Feld, damit es auf dunklem Footer lesbar bleibt */
.site-footer .brand-footer { display: inline-flex; background: #fff; padding: 12px 16px; border-radius: 12px; }
.site-footer .brand-logo { height: 50px; filter: none; }
@media (max-width: 600px) { .brand-logo { height: 40px; } }

/* Navigation: luftige Abstände auf Desktop, Telefon klar rechts abgesetzt.
   Mobil (<=900) = Hamburger, davon unberührt. */
.main-nav ul { gap: .13rem; }
.main-nav a { padding: .5rem .54rem; font-size: .9rem; }
.nav-cta a { white-space: nowrap; padding: .5rem .72rem; }
@media (min-width: 901px) {
    .main-nav { margin-left: 2rem; }       /* Abstand zwischen Logo und Menü */
    .main-nav .nav-cta { margin-left: .6rem; }
}
@media (min-width: 901px) and (max-width: 1240px) {
    .main-nav ul { gap: .06rem; }
    .main-nav a { padding: .46rem .46rem; font-size: .85rem; }
    .main-nav .nav-cta { margin-left: .35rem; }
    .main-nav .nav-cta a { padding: .48rem .55rem; }
}
@media (min-width: 901px) and (max-width: 1080px) {
    .main-nav ul { gap: 0; }
    .main-nav a { padding: .42rem .36rem; font-size: .8rem; }
    .main-nav .nav-cta { margin-left: .2rem; }
    .main-nav .nav-cta a { padding: .45rem .45rem; }
}

/* Sektionsköpfe sicher zentrieren */
.section-head.section-head-center { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0; }
.section-head.section-head-center > div { width: 100%; text-align: center; }

/* Trust-Features: saubere, einzeilige Reihe */
.trust-features { background: none; gap: 0; flex-wrap: wrap; max-width: 1000px; }
.trust-features li { background: none; border: none; border-radius: 0; padding: .2rem 1.05rem; font-size: .82rem; white-space: nowrap; }
.trust-features li::before { content: '✓'; color: var(--gold-deep); margin-right: .4rem; font-weight: 700; }

/* Markt: Karte oben (volle Breite), Preise als kompaktes Raster darunter */
#region .region-map { margin-bottom: 22px; }
.market-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.market-card { display: flex; flex-direction: column; gap: .2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px 18px; transition: border-color .2s, transform .2s; }
.market-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.market-city { font-weight: 600; font-size: .92rem; }
.market-price { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.market-price small { font-size: .68rem; font-weight: 600; color: var(--ink-soft); }
.market-trend { font-size: .8rem; font-weight: 700; }
@media (max-width: 900px) { .market-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .market-grid { grid-template-columns: 1fr; } }

/* Karten-Marker als Haus-Pin */
.map-pin-house { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50% 50% 50% 0; background: var(--gold); transform: rotate(-45deg); border: 2px solid #fff; box-shadow: 0 3px 8px rgba(0,0,0,.35); transition: background .15s, transform .15s; }
.map-pin-house svg { transform: rotate(45deg); width: 17px; height: 17px; color: #fff; }
.leaflet-marker-icon:hover .map-pin-house { background: var(--gold-deep); }

/* Popup kompakter */
.map-popup .mp-img { height: 88px; }
.map-popup .mp-body { padding: 10px 12px 12px; }
.mp-title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: .15rem 0 0; }
.mp-link { margin-top: .45rem; }

/* ===== MOBİL UYUM / Yatay kayma düzeltmeleri ===== */
/* overflow-x: clip statt hidden – verhindert horizontales Scrollen, ohne position:sticky zu brechen */
html, body { overflow-x: clip; max-width: 100%; }
* { min-width: 0; }

/* Footer: mobilde kolonlar daralır */
@media (max-width: 760px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: left; }
    .footer-bottom { text-align: center; justify-content: center; }
    .footer-credit { margin-left: 0; }
}

/* Genel mobil ince ayarlar */
@media (max-width: 700px) {
    .section { padding: 38px 0; }
    .section-dark, .section-alt { padding: 38px 0; }
    .container { padding: 0 18px; }
    /* Numaralı başlıklar dikey, ortalı */
    .sec-head { flex-direction: column; gap: 6px; align-items: flex-start; }
    .sec-head-center { align-items: center; text-align: center; }
    .sec-no { font-size: 2.2rem; }
    /* section-head (sol-sağ) mobilde dikey */
    .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
    .section-head-center { align-items: center; }
    /* Markt kartları ferah */
    .data-tables { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .mhero-copy h1 { font-size: 2.1rem; line-height: 1.1; }
    .mhero-inner { padding-top: 100px; padding-bottom: 60px; }
    .hero-actions { width: 100%; }
    .hero-actions .btn { flex: 1 1 auto; text-align: center; }
    .btn { padding: .8rem 1.1rem; font-size: .9rem; }
    .wa-band .wa-inner { flex-direction: column; text-align: center; }
    .cta-final-grid { grid-template-columns: 1fr; }
    .keyfacts { grid-template-columns: repeat(2, 1fr); }
    #listingsMap { height: 320px; }
    .review-quote-mark { font-size: 3rem; }
}

/* ===== MOBİL MENÜ (morfis tarzı) ===== */
.nav-cta2 { display: none; }
@media (max-width: 900px) {
    /* Açılır menü beyaz → metin her zaman koyu (beyaz-üstü-beyaz hatası fix) */
    .header-transparent:not(.scrolled) .main-nav > ul > li > a { color: var(--ink); }
    .main-nav ul { padding: 14px 20px 24px; gap: 0; text-align: left; box-shadow: var(--shadow-lg); max-height: calc(100vh - 76px); overflow-y: auto; }
    .main-nav a { display: block; padding: .95rem .2rem; font-size: 1.05rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
    .main-nav a:hover { color: var(--gold-deep); }
    /* Telefon: çerçeveli buton */
    .nav-cta { border: 0; }
    .nav-cta a { text-align: center; margin-top: 16px; border: 1.5px solid var(--ink) !important; border-radius: var(--radius); background: #fff !important; color: var(--ink) !important; padding: .9rem; }
    /* Kostenfreie Bewertung: altın buton */
    .nav-cta2 { display: list-item; }
    .nav-cta2 a { text-align: center; margin-top: 10px; background: var(--gold) !important; color: #fff !important; border: 0; border-bottom: 0; border-radius: var(--radius); padding: .95rem; font-weight: 700; }
    /* Hamburger → X animasyonu */
    .navtoggle:checked ~ .navtoggle-btn span { opacity: 0; }
    .navtoggle:checked ~ .navtoggle-btn::before { top: 10px; transform: rotate(45deg); }
    .navtoggle:checked ~ .navtoggle-btn::after { top: 10px; transform: rotate(-45deg); }
    /* Menü açıkken body kaymasın */
    .navtoggle:checked ~ ul { box-shadow: 0 20px 40px rgba(0,0,0,.18); }
}

/* ===== MOBİL SABİT ALT BAR (Anrufen + Kostenfreie Bewertung) ===== */
.mobile-bar { display: none; }
@media (max-width: 900px) {
    .mobile-bar {
        display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
        background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(21,23,28,.1);
    }
    .mobile-bar a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 700; font-size: .95rem; padding: .85rem .6rem; border-radius: var(--radius); white-space: nowrap; }
    .mobile-bar-call { border: 1.5px solid var(--ink); color: var(--ink); background: #fff; }
    .mobile-bar-cta { background: var(--gold); color: #fff; }
    /* İçerik ve footer bar'ın altında kalmasın */
    body { padding-bottom: 74px; }
    .site-footer { padding-bottom: 24px; }
    /* WhatsApp butonunu bar'ın üstüne al */
    .wa-float { bottom: 86px; }
    /* Menü açıkken alt bar gizlensin (üst üste binmesin) */
    .navtoggle:checked ~ ul ~ .mobile-bar { display: none; }
}

/* ===== MOBİL: Eren kartı kompakt + ortalı ===== */
@media (max-width: 900px) {
    .mhero-card { max-width: 340px; margin: 8px auto 0; display: flex; align-items: center; gap: 14px; padding: 14px 16px; }
    .mhero-photo { width: 72px; height: 72px; aspect-ratio: 1; border-radius: 50%; margin-bottom: 0; flex: 0 0 auto; overflow: hidden; }
    .mhero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
    .photo-placeholder span { font-size: 1.4rem; }
    .photo-placeholder small { display: none; }
    .mhero-card-body { text-align: left; flex: 1; min-width: 0; }
    .mhero-card-body strong { font-size: 1.05rem; }
    .mhero-card-body > span { font-size: .8rem; }
    .mhero-card-body .mhero-rating { justify-content: flex-start; margin-top: .3rem; }
    .card-call { margin-top: .35rem; font-size: .92rem; }
}

/* ===== SON MOBİL RÖTUŞLAR ===== */
@media (max-width: 900px) {
    /* Eren kartı tam genişlik (sağa-sola yayılı) + büyük yazı */
    .mhero-card { max-width: none; margin: 12px 0 0; gap: 16px; padding: 16px 20px; }
    .mhero-photo { width: 88px; height: 88px; }
    .mhero-card-body strong { font-size: 1.3rem; }
    .mhero-card-body > span { font-size: .95rem; }
    .mhero-rating { font-size: .98rem; margin-top: .4rem; }
    .card-call { font-size: 1.08rem; margin-top: .5rem; font-weight: 700; }
    /* Alt bar saydam (cam efekti) */
    .mobile-bar { background: rgba(255,255,255,.62); backdrop-filter: saturate(1.5) blur(14px); -webkit-backdrop-filter: saturate(1.5) blur(14px); border-top-color: rgba(255,255,255,.5); }
    .mobile-bar-call { background: rgba(255,255,255,.55); border-color: rgba(21,23,28,.55); }
    .mobile-bar-cta { background: var(--gold); }
}

/* ===== Hero: çift video çapraz geçiş ===== */
.hero-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .8s ease; }
.hero-vid.is-active { opacity: 1; }

/* ===== Mobilde WhatsApp butonu gizli (alt bar zaten var) ===== */
@media (max-width: 900px) { .wa-float { display: none !important; } }

/* ===== Görselli Leistungen kartları ===== */
.leistung-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.leistung-img { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.leistung-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.leistung-card:hover .leistung-img img { transform: scale(1.06); }
.leistung-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.leistung-body h3 { margin-bottom: .5rem; }
.leistung-body p { flex: 1; }

/* ===== Görselli Praxis kartları ===== */
.case { overflow: hidden; padding: 0; }
.case-img { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--cream-2); }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.case:hover .case-img img { transform: scale(1.05); }
.case-body { padding: 24px 26px 28px; }

/* ===== Geniş görsel band (parallax) ===== */
.image-band { position: relative; background-size: cover; background-position: center; background-attachment: fixed; padding: 110px 0; }
.image-band-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,17,22,.82), rgba(15,17,22,.45)); }
.image-band-inner { position: relative; z-index: 2; max-width: 640px; }
.image-band-inner h2 { margin: .3rem 0 1.4rem; }
@media (max-width: 760px) { .image-band { background-attachment: scroll; padding: 72px 0; } }

/* ===== MOBİL İNCE AYARLAR (2. tur) ===== */

/* Leistungen oku sağ-alt köşe, yazıyı kapatmasın */
.leistung-card { position: relative; }
.leistung-arrow { left: auto; right: 22px; bottom: 20px; }
.leistung-body { padding-bottom: 58px; }

/* Yorum avatar harfi tam ortalı */
.review-avatar { line-height: 1; text-transform: uppercase; }

@media (max-width: 900px) {
    /* Mobil menü: tam ekran, büyük öğeler, CTA'lar altta (morfis tarzı) */
    .main-nav ul { inset: 76px 0 0 0; height: calc(100dvh - 76px); max-height: none; overflow-y: auto; display: flex; flex-direction: column; padding: 18px 24px 26px; }
    .main-nav > ul > li > a { font-size: 1.25rem; padding: 1.15rem .2rem; }
    .nav-cta { margin-top: auto; }
}

@media (max-width: 760px) {
    /* Footer: Leistungen | Kontakt yan yana, Rechtliches altta tam */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px 22px; }
    .footer-grid > div:nth-child(1) { grid-column: 1 / -1; }            /* Marka */
    .footer-grid > div:nth-child(2) { order: 1; }                       /* Leistungen */
    .footer-grid > div:nth-child(3) { order: 2; }                       /* Kontakt */
    .footer-grid > div:nth-child(4) { order: 3; grid-column: 1 / -1; }  /* Rechtliches tam */
}

@media (max-width: 640px) {
    /* Bölümler: tek sütun yerine 2 sütun yan yana */
    .steps5 { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }
    .region-chips { grid-template-columns: repeat(2, 1fr) !important; }
    .market-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
    .cert-strip-inner { grid-template-columns: repeat(2, 1fr) !important; }
    .cert { border-left: 0 !important; }
    /* Regionale Expertise: iki bölge yan yana */
    .regions { grid-template-columns: 1fr 1fr; gap: 18px; }
    .region-col h3 { font-size: 1rem; }
    .region-chips { gap: 8px; }
    .region-chip { padding: 12px; }
}

@media (max-width: 560px) {
    /* İlan başlıkları büyük */
    .card-title { font-size: 1.35rem; line-height: 1.2; }
    .card-price { font-size: 1.5rem; }
    .steps5 h3 { font-size: .98rem; }
    .step5 { padding: 8px; }
    .market-card { padding: 13px 14px; }
    .market-price { font-size: 1.05rem; }
}

/* ===== MOBİL MENÜ — morfis tarzı (koyu, büyük, →, altta CTA) ===== */
@media (max-width: 900px) {
    /* Menü açıkken arka plan kaymasın */
    body.menu-open { overflow: hidden; }
    /* Menü açıkken header da koyu + logo beyaz */
    body.menu-open .site-header { background: var(--ink) !important; border-bottom-color: rgba(255,255,255,.08) !important; }
    body.menu-open .brand-logo { filter: brightness(0) invert(1); }
    body.menu-open .navtoggle-btn span,
    body.menu-open .navtoggle-btn::before,
    body.menu-open .navtoggle-btn::after { background: #fff; }

    .main-nav ul {
        inset: 76px 0 0 0; height: calc(100dvh - 76px); max-height: none; overflow-y: auto;
        background: var(--ink); border-bottom: 0; box-shadow: none;
        display: flex; flex-direction: column; align-items: stretch; gap: 0;
        padding: 26px 26px calc(26px + env(safe-area-inset-bottom, 0px));
    }
    .main-nav > ul > li > a {
        color: #fff; font-family: 'Schibsted Grotesk', system-ui, sans-serif;
        font-size: 1.7rem; font-weight: 500; text-align: left;
        padding: 1.05rem .2rem; border-bottom: 1px solid rgba(255,255,255,.12);
        display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    }
    .main-nav > ul > li:not(.nav-cta):not(.nav-cta2) > a::after {
        content: '→'; font-size: 1.15rem; font-weight: 400; color: rgba(255,255,255,.5);
    }
    .main-nav > ul > li > a:hover { color: var(--gold); }

    /* Alt CTA grubu: altın "Kostenfreie Bewertung" üstte, telefon altta */
    .nav-cta2 { order: 8; margin-top: auto; }
    .nav-cta  { order: 9; border: 0; }
    .nav-cta2 a, .nav-cta a {
        display: block; text-align: center; text-transform: uppercase; letter-spacing: .12em;
        font-size: .82rem; font-weight: 700; padding: 1.05rem; border-radius: var(--radius);
        border-bottom: 0;
    }
    .nav-cta2 a { background: var(--gold) !important; color: #fff !important; border: 0 !important; margin-top: 14px; }
    .nav-cta2 a::after, .nav-cta a::after { content: none !important; }
    .nav-cta a { background: transparent !important; color: #fff !important; border: 1.5px solid rgba(255,255,255,.45) !important; margin-top: 12px; }
}

/* ===== MOBİL MENÜ metin rengi düzeltmesi (koyu menüde beyaz) ===== */
@media (max-width: 900px) {
    body.menu-open .main-nav ul a { color: #fff !important; }
    body.menu-open .header-transparent:not(.scrolled) .main-nav > ul > li > a { color: #fff !important; }
    /* Telefon butonu: şeffaf + beyaz */
    body.menu-open .nav-cta a,
    body.menu-open .header-transparent:not(.scrolled) .nav-cta a {
        background: transparent !important; color: #fff !important;
        border: 1.5px solid rgba(255,255,255,.45) !important;
    }
    /* Altın CTA */
    body.menu-open .nav-cta2 a,
    body.menu-open .header-transparent:not(.scrolled) .nav-cta2 a {
        background: var(--gold) !important; color: #fff !important; border: 0 !important;
    }
}

/* ===== Yorum avatarı: harfi tam ortala ===== */
.review figcaption { align-items: center; }
.review-avatar {
    flex: 0 0 44px; width: 44px; height: 44px; min-width: 44px;
    display: flex !important; align-items: center !important; justify-content: center !important;
    line-height: 1 !important; color: #fff !important; font-size: 1rem; padding: 0; overflow: hidden;
}

/* ===== MOBİL İNCE AYARLAR (3. tur) ===== */
/* İlan başlıkları küçült */
@media (max-width: 560px) {
    .card-title { font-size: 1.02rem !important; line-height: 1.25; }
    .card-price { font-size: 1.25rem !important; }
}

/* Mobil menü küçült + CTA tek satır */
@media (max-width: 900px) {
    .main-nav > ul > li > a { font-size: 1.15rem !important; padding: .82rem .2rem !important; }
    .main-nav > ul > li:not(.nav-cta):not(.nav-cta2) > a::after { font-size: .95rem; }
    .main-nav ul { padding: 20px 24px calc(20px + env(safe-area-inset-bottom,0px)); }
    body.menu-open .nav-cta2 a, body.menu-open .nav-cta a,
    .nav-cta2 a, .nav-cta a { font-size: .8rem !important; letter-spacing: .04em !important; padding: .9rem !important; white-space: nowrap !important; }
}

/* Cert: her satırda çizgi (DSGVO dahil) + Google tam satır tek satır */
@media (max-width: 640px) {
    .cert { border-left: 0 !important; border-bottom: 1px solid rgba(255,255,255,.1) !important; padding: 15px 14px; }
    .cert-strip-inner > .cert:last-child { grid-column: 1 / -1; }
    .cert strong { font-size: .92rem; }
    .cert > div > span { font-size: .74rem; white-space: nowrap; }
}

/* Fünf Schritte: sol sayı + sağ tek satır başlık */
@media (max-width: 640px) {
    .steps5 { grid-template-columns: 1fr !important; gap: 0; }
    .step5 { display: flex !important; align-items: center; text-align: left; gap: 16px; padding: 15px 4px; border-bottom: 1px solid var(--line); }
    .step5-no { margin: 0 !important; flex: 0 0 auto; width: 44px; height: 44px; }
    .step5-text { flex: 1; min-width: 0; }
    .step5-text h3 { margin: 0; font-size: 1.05rem; }
    .step5-text p { display: none; }
}

/* ===== Regionale Expertise — premium kart ===== */
.expertise { display: grid; grid-template-columns: .9fr 1.1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.expertise-media { position: relative; min-height: 360px; background-size: cover; background-position: center; }
.expertise-media-ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,17,22,.15), rgba(15,17,22,.78)); }
.expertise-media-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px; color: #fff; }
.expertise-media-cap strong { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1.7rem; display: block; margin-bottom: .25rem; }
.expertise-media-cap span { color: rgba(255,255,255,.85); font-size: .92rem; }
.expertise-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 34px; }
.expertise .region-col h3 { font-size: 1rem; margin-bottom: .7rem; padding-bottom: .5rem; border-bottom: 2px solid var(--gold-tint); }
.expertise .region-chips { display: block !important; }
.expertise .region-chip { display: flex !important; align-items: center; gap: .7rem; padding: 11px 2px !important; border: 0 !important; border-bottom: 1px solid var(--line) !important; border-radius: 0 !important; background: transparent !important; transform: none !important; }
.expertise .region-chip:hover { color: var(--gold-deep); }
.expertise .region-chip:last-child { border-bottom: 0 !important; }
.expertise .rc-no { font-size: .74rem; color: var(--gold); font-weight: 700; flex: 0 0 auto; }
.expertise .region-chip strong { flex: 1; font-size: .95rem; margin: 0; }
.expertise .region-chip small { color: var(--ink-soft); font-size: .8rem; }
@media (max-width: 860px) {
    .expertise { grid-template-columns: 1fr; }
    .expertise-media { min-height: 190px; }
    .expertise-lists { padding: 24px; gap: 16px; }
}
@media (max-width: 520px) { .expertise-lists { grid-template-columns: 1fr; } }

/* ===== MOBİL İNCE AYARLAR (4. tur) ===== */
/* Telefon ikonu yalnız mobil menüde */
.navcta-ico { display: none; }
@media (max-width: 900px) {
    .nav-cta a { display: flex !important; align-items: center; justify-content: center; gap: .55rem; }
    .nav-cta a .navcta-ico { display: inline-flex; align-items: center; }
    .nav-cta2 a { margin-top: 0 !important; }
    .nav-cta a { margin-top: 12px !important; }
}
/* Fünf Schritte: 1-2 / 3-4 yan yana, 5 tam satır */
@media (max-width: 640px) {
    .steps5 { grid-template-columns: 1fr 1fr !important; gap: 0 16px; }
    .steps5 .step5:last-child { grid-column: 1 / -1; }
    .step5 { gap: 10px; padding: 13px 2px; }
    .step5-no { width: 38px !important; height: 38px !important; font-size: 1rem; }
    .step5-text h3 { font-size: .9rem; }
}

/* ===== Ek düzeltmeler ===== */
/* Anchor'a inince sabit header başlığı kapatmasın */
section[id] { scroll-margin-top: 84px; }
/* Google cert: tam satır + içerik ortalı (tek satır dolu görünüm) */
@media (max-width: 640px) {
    .cert-strip-inner > .cert:last-child { grid-column: 1 / -1; justify-content: flex-start; }
}

/* ===== MOBİL menü telefon: ikon+numara birlikte ortalı, gold'a yapışık ===== */
@media (max-width: 900px) {
    .main-nav > ul > li.nav-cta > a { justify-content: center !important; }
    .main-nav > ul > li.nav-cta { margin-top: 12px !important; }
    .main-nav > ul > li.nav-cta2 { margin-top: auto !important; }
}

/* ===== MOBİL menü: içerik dikey ortalı (butonlar yukarıda) ===== */
@media (max-width: 900px) {
    .main-nav ul { justify-content: center; }
    .main-nav > ul > li.nav-cta2 { margin-top: 22px !important; }
    .main-nav > ul > li.nav-cta { margin-top: 12px !important; }
}

/* ===== Google cert: logo + tek satır, satırı komple dolduran ===== */
.cert-google-line { color: rgba(255,255,255,.7); font-size: .85rem; }
.cert-google-line strong { color: #fff; font-weight: 700; display: inline; font-size: inherit; }
@media (max-width: 640px) {
    .cert-strip-inner > .cert-google { grid-column: 1 / -1; align-items: center; justify-content: flex-start; gap: 12px; padding: 15px 14px; }
    .cert-google .cert-ic { flex: 0 0 auto; }
    .cert-google-line { white-space: nowrap; text-align: left; font-size: clamp(.6rem, 3vw, .85rem); overflow: hidden; text-overflow: ellipsis; }
    .cert-google-line strong { font-size: inherit; }
}

/* V2: Bewertung-Bölümü küçük telefon satırı */
.bewerten-call { margin-top: 1.4rem; font-size: .95rem; color: var(--ink-soft); }
.bewerten-call a { color: var(--gold-deep); font-weight: 700; }

/* V2: Wizard yan kutusu (Warum...) form ile hizalı kalsın (sticky kayması yok) */
.wizard-aside .trust-box { position: static; top: auto; }

/* V2: Wizard field-row — etiket uzunluğu farklı olsa da kontroller alt hizada eşit dursun */
.wizard .field-row .field { display: flex; flex-direction: column; }
.wizard .field-row .field select,
.wizard .field-row .field input,
.wizard .field-row .field textarea { margin-top: auto; }

/* ===== Objekt-Galerie: Grid + Lightbox (yeni tasarım) ===== */
.gallery2 { margin-top: 22px; position: relative; }
.gallery-docs { position: absolute; left: 14px; bottom: 14px; z-index: 5; display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.92); color: var(--ink); font-weight: 600; font-size: .9rem; padding: .6rem 1rem; border-radius: 100px; box-shadow: 0 6px 18px -8px rgba(21,23,28,.5); backdrop-filter: blur(4px); transition: background .2s, transform .2s var(--ease); }
.gallery-docs:hover { background: #fff; transform: translateY(-1px); }
.g2-grid { display: grid; gap: 8px; }
.g2-cell { position: relative; border: 0; padding: 0; cursor: pointer; background: var(--cream-2) center/cover no-repeat; border-radius: 8px; overflow: hidden; transition: filter .2s var(--ease), transform .2s var(--ease); }
.g2-cell:hover { filter: brightness(1.06); }
.g2-main { }
.g2-empty { display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-family: 'Schibsted Grotesk', sans-serif; letter-spacing: .05em; cursor: default; }
.g2-count { position: absolute; right: 14px; bottom: 14px; background: rgba(21,23,28,.72); color: #fff; font-size: .78rem; font-weight: 600; padding: .4rem .8rem; border-radius: 100px; pointer-events: none; }
.g2-more { position: absolute; inset: 0; background: rgba(21,23,28,.55); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }
.gallery-sold { position: absolute; top: 50%; left: 50%; right: auto; bottom: auto; width: 150%; text-align: center; transform: translate(-50%, -50%) rotate(-45deg); transform-origin: center; background: var(--red); color: #fff; padding: .7rem 0; border-radius: 0; font-weight: 800; font-size: 1.7rem; letter-spacing: .18em; text-transform: uppercase; box-shadow: 0 8px 30px rgba(0,0,0,.32); z-index: 6; pointer-events: none; white-space: nowrap; }
.gallery-sold-reserviert { background: var(--blue); }
/* Anzahl-spezifische Layouts */
.g2-count-1 { grid-template-columns: 1fr; } .g2-count-1 .g2-main { aspect-ratio: 16/9; }
.g2-count-2 { grid-template-columns: 1fr 1fr; grid-auto-rows: 340px; }
.g2-count-3 { grid-template-columns: 2fr 1fr; grid-auto-rows: 160px; } .g2-count-3 .g2-main { grid-row: span 2; }
.g2-count-4 { grid-template-columns: 1fr 1fr; grid-auto-rows: 205px; }
.g2-count-5 { grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 160px; } .g2-count-5 .g2-main { grid-row: span 2; }
@media (max-width: 760px) {
    .g2-grid { grid-template-columns: 1fr 1fr !important; grid-auto-rows: 110px !important; }
    .g2-main { grid-column: 1 / -1 !important; grid-row: auto !important; height: 210px; aspect-ratio: auto !important; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(10,11,14,.94); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lb-img { max-width: 92vw; max-height: 86vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: 0; width: 52px; height: 52px; border-radius: 50%; font-size: 1.8rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 22px; right: 22px; font-size: 2rem; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: #fff; background: rgba(255,255,255,.12); padding: .4rem 1rem; border-radius: 100px; font-size: .9rem; }
@media (max-width: 600px) { .lb-btn { width: 42px; height: 42px; } .lb-prev { left: 8px; } .lb-next { right: 8px; } }

/* Exposé-Download (Detailseite) */
.expose-download { display: flex; align-items: center; gap: 14px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px 20px; margin-bottom: 28px; color: var(--ink); transition: border-color .2s, transform .2s; }
.expose-download:hover { border-color: var(--gold); transform: translateY(-2px); }
.expose-download svg { color: var(--gold-deep); flex: 0 0 auto; }
.expose-download span:not(.expose-arrow) { display: flex; flex-direction: column; }
.expose-download small { color: var(--ink-soft); font-size: .82rem; }
.expose-arrow { margin-left: auto; font-size: 1.3rem; color: var(--gold-deep); }
.pdf-current { font-size: .9rem; margin-bottom: .8rem; }
.pdf-current a { color: var(--gold-deep); font-weight: 600; }

/* Harita: satılan/kiralanan objeler gri pin + popup rozeti */
.map-pin-house.is-sold { background: #8b8f98; }
.map-pin-house.is-sold:hover { background: #6b7180; }
.map-popup .mp-img { position: relative; }
.mp-sold { position: absolute; top: 8px; left: 8px; background: var(--red); color: #fff; font-size: .7rem; font-weight: 700; padding: .2rem .5rem; border-radius: 4px; }

/* ============ Aktuelles / Blog ============ */
.container-narrow { max-width: 820px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(21,23,28,.4); border-color: var(--gold); }
.post-card-media { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--ink); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card-media img { transform: scale(1.05); }
.post-card-noimg { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-family: 'Schibsted Grotesk', sans-serif; letter-spacing: .2em; color: var(--gold-tint); font-weight: 600; }
.post-card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-date { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.post-card-body h2 { font-size: 1.22rem; line-height: 1.2; }
.post-card-body h2 a { color: var(--ink); }
.post-card-body h2 a:hover { color: var(--gold-deep); }
.post-card-body p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.post-more { margin-top: auto; padding-top: .6rem; font-weight: 600; color: var(--gold-deep); font-size: .92rem; }
.post-more:hover { color: var(--ink); }

.post-head h1 { max-width: 22ch; }
.post-article { max-width: 820px; }
.post-hero-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.2rem; }
.post-hero-img img { width: 100%; display: block; }
.post-body p { font-size: 1.08rem; line-height: 1.75; color: var(--ink-2); margin: 0 0 1.3rem; }
.post-back { margin-top: 1.5rem; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0 1.4rem; transition: border-color .3s; }
.faq-item[open] { border-color: var(--gold); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.15rem 0; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 600; font-size: 1.08rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; font-weight: 400; color: var(--gold-deep); transition: transform .3s var(--ease); line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 1.3rem; }
.faq-answer p { color: var(--ink-soft); line-height: 1.7; margin: 0; }

@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }

/* ============ Bewertung schreiben (Public Review Form) ============ */
.review-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 30px; }
.review-write { width: 100%; max-width: 620px; text-align: center; }
.review-write > summary { list-style: none; cursor: pointer; display: inline-flex; }
.review-write > summary::-webkit-details-marker { display: none; }
.review-write[open] > summary { display: none; }
.review-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); text-align: left; margin-top: 4px; animation: fadeIn .3s var(--ease); }
.review-form-hint { color: var(--ink-soft); font-size: .92rem; margin: 0 0 1.2rem; }
.review-form .field-row { margin-bottom: 1.1rem; }
.review-form .field { margin-bottom: 1.1rem; }
.review-form .btn { margin-top: .4rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Blog: im Text eingebettete Bilder */
.post-fig { margin: 1.8rem 0; }
.post-fig img { width: 100%; border-radius: var(--radius-lg); display: block; }

/* Detail: fehlende Energieangaben + Admin-Warnung */
.energy-missing { color: var(--ink-soft); font-style: italic; }
.energy-warn { margin-top: .3rem; font-size: .75rem; font-weight: 600; color: #c5283d; }

/* Verkaufen-Funnel: Trust-Zeile im letzten Schritt */
.wizard-trust { margin: 1.2rem 0 0; padding: .9rem 1rem; background: var(--gold-tint); border-radius: var(--radius); font-size: .85rem; color: var(--ink-2); font-weight: 600; line-height: 1.5; }

/* ============ Objekt-Detailgalerie v3 (professionell, mobil-tauglich) ============ */
.gallery3 { margin-top: 22px; }
.g3-stage { position: relative; width: 100%; aspect-ratio: 3/2; background: var(--cream-2); border-radius: 10px; overflow: hidden; }
.g3-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .4s var(--ease); cursor: zoom-in; }
.g3-slide.is-active { opacity: 1; }
.g3-empty { display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-family: 'Schibsted Grotesk', sans-serif; letter-spacing: .08em; aspect-ratio: 3/2; }
.g3-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.85); color: var(--ink); font-size: 1.7rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.18); transition: background .2s, transform .2s var(--ease); }
.g3-arrow:hover { background: #fff; }
.g3-prev { left: 14px; } .g3-next { right: 14px; }
.g3-counter { position: absolute; bottom: 14px; right: 14px; z-index: 4; background: rgba(21,23,28,.72); color: #fff; font-size: .8rem; font-weight: 600; padding: .35rem .8rem; border-radius: 100px; pointer-events: none; }
.g3-zoom { position: absolute; top: 14px; right: 14px; z-index: 4; display: inline-flex; align-items: center; gap: .4rem; background: rgba(255,255,255,.9); color: var(--ink); border: 0; font-weight: 600; font-size: .82rem; padding: .5rem .85rem; border-radius: 100px; cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,.16); transition: background .2s; }
.g3-zoom:hover { background: #fff; }
.g3-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; scroll-snap-type: x proximity; }
.g3-thumb { flex: 0 0 auto; width: 96px; height: 68px; border: 0; padding: 0; border-radius: 7px; background: var(--cream-2) center/cover no-repeat; cursor: pointer; opacity: .62; outline: 2px solid transparent; outline-offset: -2px; transition: opacity .2s, outline-color .2s; scroll-snap-align: center; }
.g3-thumb:hover { opacity: .85; }
.g3-thumb.is-active { opacity: 1; outline-color: var(--gold); }
@media (max-width: 720px) {
    .g3-stage { aspect-ratio: 4/3; border-radius: 8px; }
    .g3-arrow { width: 38px; height: 38px; font-size: 1.4rem; }
    .g3-thumb { width: 72px; height: 52px; }
    .g3-zoom { font-size: .76rem; padding: .4rem .7rem; }
}

/* WhatsApp-Button (Objektanfrage) */
.btn-wa { background: #25d366; color: #fff; border-color: #25d366; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; margin-top: .6rem; }
.btn-wa:hover { background: #1ebe5b; border-color: #1ebe5b; color: #fff; }

/* "Warum Löwen Immobilien24?" – etwas größer & zentriert */
.wizard-aside .trust-box { padding: 34px 30px; text-align: center; }
.wizard-aside .trust-box h3 { font-size: 1.35rem; margin-bottom: 1.2rem; }
.wizard-aside .trust-box .check-list { display: inline-block; text-align: left; margin: 0 auto; }
.wizard-aside .trust-box .check-list li { font-size: 1rem; margin-bottom: .55rem; }
.wizard-aside .trust-contact { text-align: center; }

/* ============ Cookie-Consent: schlanke horizontale Leiste ============ */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -14px rgba(0,0,0,.35); padding: 14px 22px; animation: fadeIn .3s var(--ease); }
.cookie-banner[hidden] { display: none; }
.cookie-box { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; gap: 16px 26px; flex-wrap: wrap; }
.cookie-lead { flex: 1 1 280px; min-width: 220px; }
.cookie-lead strong { display: block; font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1rem; margin-bottom: .15rem; }
.cookie-intro { font-size: .8rem; color: var(--ink-soft); line-height: 1.45; margin: 0; }
.cookie-intro a { color: var(--gold-deep); text-decoration: underline; }
.cookie-cats { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cookie-cat { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: var(--ink-2); }
label.cookie-cat { cursor: pointer; }
.cookie-always { font-size: .72rem; font-weight: 600; color: #2e9b4e; }
.cookie-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex: 0 0 auto; }
.cookie-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-slider { position: absolute; inset: 0; background: var(--line); border-radius: 100px; transition: background .2s; }
.cookie-slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.3); }
.cookie-switch input:checked + .cookie-slider { background: var(--gold); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(18px); }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; flex: 0 0 auto; }
@media (max-width: 900px) {
    .cookie-actions { width: 100%; }
    .cookie-actions .btn { flex: 1 1 auto; }
}

/* Google-cert: über die gesamte 2-Spalten-Mobilbreite einzeilig + linksbündig */
@media (max-width: 900px) {
    .cert-strip-inner > .cert-google { grid-column: 1 / -1; align-items: center; justify-content: flex-start; gap: 9px; }
    .cert-google .cert-ic { flex: 0 0 auto; }
    .cert-strip-inner .cert-google .cert-google-line { white-space: nowrap; text-align: left; font-size: clamp(.5rem, 2.3vw, .85rem); }
    .cert-strip-inner .cert-google .cert-google-line strong { font-size: inherit; font-weight: 700; display: inline; }
}

/* ============ Sofort-Preiseinschätzung ============ */
.pr-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.pr-form h2 { font-size: 1.3rem; margin-bottom: 1.2rem; }
.pr-result { position: sticky; top: 100px; }
.pr-result-inner { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg, 0 20px 50px -20px rgba(0,0,0,.5)); }
.pr-result-eyebrow { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-tint); font-weight: 600; }
.pr-range { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.1rem); line-height: 1.1; margin: .5rem 0 .3rem; }
.pr-range .pr-dash { color: var(--gold); }
.pr-perm2 { color: #c7cbd3; font-size: .9rem; }
.pr-bar { position: relative; height: 6px; background: rgba(255,255,255,.15); border-radius: 100px; margin: 1.4rem 0; }
.pr-bar-fill { position: absolute; left: 0; top: 0; height: 100%; width: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); border-radius: 100px; }
.pr-bar-dot { position: absolute; top: 50%; left: 50%; width: 14px; height: 14px; background: #fff; border: 3px solid var(--gold); border-radius: 50%; transform: translate(-50%, -50%); }
.pr-disclaimer { font-size: .78rem; color: #aeb3bd; line-height: 1.5; margin: 0 0 1.4rem; }
.pr-lead { border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.4rem; }
.pr-lead h3 { color: #fff; font-size: 1.1rem; }
.pr-lead .field { color: #c7cbd3; }
.pr-lead .field input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }
.pr-lead .checkbox-line { color: #c7cbd3; }
.pr-lead .checkbox-line a { color: var(--gold-tint); }
@media (max-width: 820px) { .pr-layout { grid-template-columns: 1fr; } .pr-result { position: static; } }

/* Ruhrgebiet: Städte-Karten */
.ruhr-cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 1.8rem; }
.ruhr-city { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 22px 18px; display: flex; flex-direction: column; transition: border-color .25s, transform .25s var(--ease); }
.ruhr-city:hover { border-color: var(--gold); transform: translateY(-3px); }
.ruhr-city-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: .6rem; }
.ruhr-city-head h3 { font-size: 1.2rem; }
.ruhr-city-price { font-weight: 700; color: var(--gold-deep); font-size: .92rem; white-space: nowrap; }
.ruhr-city-price small { color: var(--ink-soft); font-weight: 500; }
.ruhr-city p { color: var(--ink-soft); font-size: .92rem; line-height: 1.6; margin: 0 0 1rem; }
.ruhr-city-link { margin-top: auto; font-weight: 600; color: var(--gold-deep); font-size: .9rem; }
.ruhr-city-link:hover { color: var(--ink); }
@media (max-width: 900px) { .ruhr-cities { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ruhr-cities { grid-template-columns: 1fr; } }

/* Kontakt-Karte: Marker-Popup mit Foto */
.kmap-pop { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px; padding: 4px 2px; min-width: 180px; }
.kmap-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); margin-bottom: 4px; }
.kmap-pop strong { font-family: 'Schibsted Grotesk', system-ui, sans-serif; font-size: 1rem; color: var(--ink); }
.kmap-owner { font-size: .82rem; color: var(--gold-deep); font-weight: 600; }
.kmap-addr { font-size: .82rem; color: var(--ink-soft); line-height: 1.35; }
.kmap-tel { font-size: .85rem; color: var(--ink); font-weight: 600; margin-top: 2px; }
.kmap-route { margin-top: 8px; background: var(--gold); color: #fff !important; font-weight: 700; font-size: .82rem; padding: .45rem .9rem; border-radius: 100px; text-decoration: none; }
.kmap-route:hover { background: var(--gold-deep); }
.leaflet-popup-content { margin: 12px 14px; }

/* Referenzen: Verkauft/Vermietet Filter-Tabs */
.ref-filter { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 1.4rem 0 2rem; }
.ref-tab { background: #fff; border: 1.5px solid var(--line); color: var(--ink-2); font-weight: 600; font-size: .9rem; padding: .55rem 1.3rem; border-radius: 100px; cursor: pointer; transition: all .18s var(--ease); }
.ref-tab:hover { border-color: var(--gold); }
.ref-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============ Objekt-Galerie v4 (ImmoScout-Raster: groß links + 2×2 rechts) ============ */
.gallery { margin-top: 22px; }
.gal { position: relative; display: grid; grid-template-columns: 1.55fr 1fr; gap: 8px; border-radius: 10px; overflow: hidden; }
.gal-main { position: relative; aspect-ratio: 16/10; background: var(--cream-2) center/cover no-repeat; cursor: zoom-in; }
.gal-side { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.gal-cell { position: relative; background: var(--cream-2) center/cover no-repeat; cursor: zoom-in; min-height: 90px; transition: filter .2s var(--ease); }
.gal-main:hover, .gal-cell:hover { filter: brightness(1.05); }
.gal-count { position: absolute; left: 14px; bottom: 14px; background: rgba(21,23,28,.72); color: #fff; font-size: .78rem; font-weight: 600; padding: .4rem .8rem; border-radius: 100px; pointer-events: none; }
.gal-main .gallery-docs { bottom: 14px; left: 14px; }
.gal-main .gal-count { left: auto; right: 14px; }
.gal-more { position: absolute; inset: 0; background: rgba(21,23,28,.55); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }
.gal-actions { position: absolute; top: 12px; right: 12px; z-index: 6; display: flex; gap: 8px; }
.gal-act { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 0; box-shadow: 0 2px 10px rgba(0,0,0,.22); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink); transition: background .2s, color .2s, transform .15s; }
.gal-act:hover { background: var(--gold); color: #fff; transform: translateY(-1px); }
.gal-empty { aspect-ratio: 16/7; background: var(--cream-2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-family: 'Schibsted Grotesk', sans-serif; letter-spacing: .08em; }
.gal-toast { position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; padding: .8rem 1.4rem; border-radius: 100px; font-weight: 600; font-size: .9rem; box-shadow: 0 8px 24px rgba(0,0,0,.3); opacity: 0; transition: opacity .3s, transform .3s; z-index: 2000; }
.gal-toast.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (max-width: 720px) {
    .gal { grid-template-columns: 1fr; }
    .gal-main { aspect-ratio: 4/3; }
    .gal-side { grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr; }
    .gal-side .gal-cell { aspect-ratio: 1; min-height: 0; }
}

/* ============ Druck (Exposé-Ausdruck) ============ */
.print-only { display: none; }
@media print {
    .site-header, .site-footer, .mobile-bar, .wa-float, .cookie-banner, .flash,
    .detail-aside, .lightbox, .gal-actions, .detail-map, .breadcrumb, .expose-download,
    section.section-dark, .contact-cta, .detail-layout + .section, .gallery + section.section,
    .section-alt, .similar, #similar { display: none !important; }
    html, body { background: #fff !important; color: #000 !important; font-size: 10.5pt; }
    * { box-sizing: border-box; }
    .container, .detail-layout, .detail-main { width: 100% !important; max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
    a { color: #000 !important; text-decoration: none !important; }
    .detail-layout { display: block !important; padding: 0 !important; }
    .gal, .gal-main, .gal-cell { -webkit-print-color-adjust: exact; print-color-adjust: exact; break-inside: avoid; }
    .gal { grid-template-columns: 1.55fr 1fr !important; }
    .gal-count, .gallery-docs, .gallery-sold { display: none !important; }
    .data-table, .case, .detail-block, .price-box, .keyfacts { break-inside: avoid; }
    .print-only { display: block !important; }
    h1 { font-size: 20pt; }
    .section { padding: 14px 0 !important; }
    /* Mehr Luft zwischen den Druck-Blöcken (sonst kleben Überschriften aneinander) */
    .detail-block { margin: 0 0 22px !important; }
    .detail-block h2, .detail-block h3 { margin: 18px 0 8px !important; line-height: 1.25; break-after: avoid; }
    .detail-block p { margin: 0 0 6px !important; line-height: 1.5; }
    .provision-note { margin-bottom: 16px !important; }
    /* Objektdaten: zwei Spalten, dürfen NIE über den Seitenrand laufen.
       min-width:0 verhindert das Grid-Overflow (sonst sprengen lange Werte die rechte Spalte). */
    .data-tables { grid-template-columns: 1fr 1fr !important; gap: 0 28px !important; }
    .data-table { min-width: 0 !important; }
    .data-table dl > div { gap: .6rem !important; padding: .45rem 0 !important; font-size: 9pt !important; }
    .data-table dd { min-width: 0; word-break: break-word; }
    @page { size: A4; margin: 1.2cm; }
}

/* Druck-Kopf/Fuß (Exposé) */
@media print {
    /* Bildschirm-Raster aus, echte <img>-Galerie an (Hintergrundbilder drucken unzuverlässig) */
    .gal, .gal-empty { display: none !important; }
    /* Fotos 2-spaltig; Grundrisse (Hochformat) voll & UNGESCHNITTEN, einzeln zum Zoomen */
    .print-gallery { display: flex !important; flex-wrap: wrap; gap: 6px; margin: 0 0 16px; align-items: flex-start; }
    .print-gallery img { border-radius: 6px; break-inside: avoid; }
    .print-gallery .print-photo { width: calc(50% - 3px); height: 150px; object-fit: cover; }
    .print-gallery .print-photo:first-child { width: 100%; height: 280px; }
    .print-gallery .print-plan { width: 100%; height: auto; object-fit: contain; margin: 6px 0; break-before: avoid; }
    .print-head { display: flex !important; justify-content: space-between; align-items: flex-end; border-bottom: 2px solid #000; padding-bottom: 8px; margin-bottom: 14px; }
    .print-head strong { font-size: 15pt; display: block; }
    .print-head span { font-size: 9pt; color: #333; display: block; }
    .print-head-right { text-align: right; }
    .print-foot { display: block !important; margin-top: 18px; border-top: 1px solid #999; padding-top: 8px; font-size: 8.5pt; color: #333; }
    .print-foot strong { display: block; font-size: 9.5pt; color: #000; }
}

/* Blog-Beitrag: Bild-Größen & Ausrichtung (Editor-Ausgabe) */
.post-body .post-img { max-width: 100%; height: auto; border-radius: 10px; }
.post-body .post-img.size-s { width: 34%; }
.post-body .post-img.size-m { width: 58%; }
.post-body .post-img.size-l { width: 100%; }
.post-body .post-img.align-center { display: block; margin: 1.4rem auto; clear: both; }
.post-body .post-img.align-left { float: left; margin: .5rem 1.6rem 1rem 0; }
.post-body .post-img.align-right { float: right; margin: .5rem 0 1rem 1.6rem; }
.post-body::after { content: ''; display: block; clear: both; } /* Floats einschließen */
.post-body h3 { margin: 1.6rem 0 .7rem; }
@media (max-width: 600px) {
    .post-body .post-img.size-s, .post-body .post-img.size-m { width: 100%; float: none; margin: 1rem 0; }
}

/* Regionale SEO-Seiten: interne Verlinkung */
.region-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 760px; margin: 0 auto; }
.region-links a { border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1.1rem; font-size: .9rem; color: var(--ink); transition: border-color .15s, color .15s; }
.region-links a:hover { border-color: var(--gold); color: var(--gold-deep); }
.footer-regions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }
.footer-regions-label { color: rgba(255,255,255,.55); }
.footer-regions a { color: rgba(255,255,255,.72); }
.footer-regions a:hover { color: var(--gold); }

/* ===== Werbe-Landingpage (versteckte Kampagnen-Seite) ===== */
.lp-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.lp-header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.lp-header .brand-logo { height: 38px; }
.lp-phone { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--ink); font-size: .95rem; white-space: nowrap; }
.lp-phone:hover { color: var(--gold-deep); }
.lp-hero { padding: 44px 0 64px; background: var(--cream); }
.lp-hero-head { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.lp-hero-head h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: .4rem 0 .6rem; }
.lp-footer { background: var(--ink); color: #b9bdc6; padding: 20px 0; font-size: .85rem; }
.lp-footer .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.lp-footer nav a { color: #b9bdc6; margin-left: 16px; }
.lp-footer nav a:hover { color: #fff; }
@media (max-width: 600px) { .lp-footer .container { flex-direction: column; text-align: center; } .lp-footer nav a { margin: 0 8px; } }

/* Danke-Seite (nach Formular) */
.danke-box { max-width: 640px; margin: 40px auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 48px 40px; text-align: center; }
.danke-check { width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%; background: var(--gold); color: #fff; font-size: 2.4rem; display: flex; align-items: center; justify-content: center; }
.danke-box h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 0 0 .6rem; }
.danke-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* Preis-Rechner: Bild rechts + Text unten */
.pr-visual { position: sticky; top: 100px; }
.pr-visual img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; }
.pr-text { max-width: 760px; margin: 36px auto 0; color: var(--ink-soft); line-height: 1.7; }
.pr-text p { margin: 0 0 1rem; }
@media (max-width: 820px) { .pr-visual { position: static; } .pr-visual img { max-height: 320px; } }

/* Danke-Seite: Zusammenfassung der Eingaben */
.danke-summary { text-align: left; margin: 28px 0 8px; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 22px; background: var(--cream); }
.danke-summary h2 { font-size: 1.05rem; margin: 0 0 14px; }
.danke-summary dl { display: grid; gap: 0; margin: 0; }
.danke-summary dl > div { display: grid; grid-template-columns: 150px 1fr; gap: 12px; padding: 8px 0; border-top: 1px solid var(--line); }
.danke-summary dl > div:first-child { border-top: 0; }
.danke-summary dt { color: var(--ink-soft); font-size: .88rem; }
.danke-summary dd { margin: 0; font-weight: 600; color: var(--ink); font-size: .92rem; }
@media (max-width: 520px) { .danke-summary dl > div { grid-template-columns: 1fr; gap: 2px; } .danke-summary dd { font-weight: 700; } }
