/*
Theme Name:   Gallium Estate Child Optimized
Theme URI:    https://galliumestate.de
Description:  Child-Theme Optimized — Konsolidierte CSS-Struktur, bereinigte Schema-Ausgabe, konditionelles CSS-Loading.
Author:       Gallium Estate
Author URI:   https://galliumestate.de
Template:     gallium-estate
Version: 137.7
Text Domain:  gallium-estate
License:      GPL-2.0-or-later
Tags:         child-theme, real-estate, premium
*/

/*
=======================================================================
  GALLIUM ESTATE CHILD — MASTER DESIGN SYSTEM v9.0
  ─────────────────────────────────────────────────────────────────────
  SCHRIFTEN:  Cormorant Garamond (alle Headlines, Zitate, Zahlen)
              Outfit (alle Fließtexte, Labels, UI-Elemente, Navigation)
  FARBEN:     Navy  #0A1A2F / #0E2040 / #04080f
              Gold  #C9A86A / #E8D090 (light) / #9A7030 (dark)
              Warm  #FAF8F4 / #F2EDE4
  ─────────────────────────────────────────────────────────────────────
  LOAD ORDER:  1. Parent style.css
               2. Parent assets/css/main.css
               3. Diese Datei (Child) — überschreibt alles
=======================================================================
*/

/* ═══════════════════════════════════════════════════════════════════
   DESIGN TOKENS — Fix v55: Token-Duplikate entfernt.
   Einzige Quelle der Wahrheit: assets/css/ge-base.css
   Hier nur noch style-spezifische Ergänzungen, die in ge-base.css
   nicht vorhanden sind.
═══════════════════════════════════════════════════════════════════ */
:root {
  /* Ergänzungen zu ge-base.css (dort nicht definiert) */
  --gold-g:  rgba(201,168,106,.3);
  --navy-m:  #0E2040;
  --warm2:   #F2EDE4;
  --radius:  18px;
  --shadow:  0 24px 60px rgba(0,0,0,.45);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
/* scroll-behavior: in ge-base.css definiert (Fix v55: Duplikat entfernt) */
body {
  font-family: var(--sans); /* Outfit → system-ui fallback if not yet loaded */
  background: var(--navy-d);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Starfield Canvas (global, fixed) — Fix v55: aus header.php inline-style übernommen ── */
#ge-starfield {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}

/* ── Container ── */
.ge-container,
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Sections ── */
.ge-section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.ge-section--light  { background: var(--warm) !important; color: var(--text) !important; }
.ge-section--warm   { background: var(--warm2) !important; }
.ge-section--navy   { background: var(--navy); }
.ge-section--deep   { background: var(--navy-d); }
.ge-section--mid    { background: var(--navy-m); }

/* ── Eyebrow ── */
.ge-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ge-eyebrow::before,
.ge-eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: .5;
}
.ge-section--light .ge-eyebrow { color: var(--gold-d); }

/* ── Section Heading ── */
.ge-section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}
.ge-section-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #fff;
}
.ge-section--light .ge-section-head h2 { color: var(--navy) !important; }
.ge-section--warm .ge-section-head h2  { color: var(--navy) !important; }
.ge-section-head h2 em {
  font-style: italic;
  color: var(--gold-d);
}
.ge-section:not(.ge-section--light):not(.ge-section--warm) .ge-section-head h2 em {
  color: var(--gold-l);
}
.ge-section-head p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.4);
}
.ge-section--light .ge-section-head p,
.ge-section--warm .ge-section-head p { color: var(--muted); }

/* ── Buttons ── */
.ge-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
  border: none;
}
.ge-btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,168,106,.25);
}
.ge-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,106,.45);
}
.ge-btn--outline {
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
  background: transparent;
}
.ge-btn--outline:hover {
  border-color: rgba(201,168,106,.5);
  color: var(--gold-l);
  background: rgba(201,168,106,.04);
}

/* ── Trust Strip ── */
.ge-trust {
  border-top: 1px solid rgba(201,168,106,.1);
  border-bottom: 1px solid rgba(201,168,106,.08);
  background: rgba(255,255,255,.018);
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 2;
}
.ge-trust__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns on desktop */
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}
.ge-trust__item {
  padding: 22px 24px;
  text-align: center;
  border-right: 1px solid rgba(201,168,106,.07);
  transition: background .25s;
  box-sizing: border-box; /* Ensure padding/border is included in width */
}
.ge-trust__item:nth-child(5n) { border-right: none; } /* Remove right border from every 5th item */
.ge-trust__item:hover { background: rgba(201,168,106,.03); }
.ge-trust__val {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 36px); /* Reduced and made responsive */
  font-weight: 300;
  color: var(--gold-l);
  display: block;
  line-height: 1;
}
.ge-trust__label {
  font-size: 9px; /* Reduced font size */
  font-weight: 500;
  color: rgba(255,255,255,.3);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

/* ── Process Steps ── */
.ge-process {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.ge-process::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,106,.3), rgba(201,168,106,.3), transparent);
  pointer-events: none;
}
.ge-process-step { padding: 0 24px; text-align: center; }
.ge-process-step__num {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,106,.25);
  background: rgba(201,168,106,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-l);
  margin: 0 auto 24px;
  transition: all .3s;
}
.ge-process-step:hover .ge-process-step__num {
  background: rgba(201,168,106,.12);
  border-color: rgba(201,168,106,.5);
  box-shadow: 0 0 30px rgba(201,168,106,.15);
}
.ge-process-step h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 10px;
}
.ge-process-step p {
  font-size: 14px;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
}

/* ── Testimonials ── */
.ge-testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.ge-testi-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 32px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
}
.ge-testi-card::before {
  content: '❝';
  position: absolute;
  top: 18px; right: 22px;
  font-size: 60px;
  font-family: var(--serif);
  color: rgba(201,168,106,.08);
  line-height: 1;
}
.ge-testi-card:hover {
  border-color: rgba(201,168,106,.22);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.ge-testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.ge-testi-text {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  margin-bottom: 24px;
}
.ge-testi-author { display: flex; align-items: center; gap: 14px; }
.ge-testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,168,106,.12);
  border: 1px solid rgba(201,168,106,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gold-l);
  flex-shrink: 0;
}
.ge-testi-name { font-size: 14px; font-weight: 600; color: #fff; }
.ge-testi-role { font-size: 12px; color: rgba(255,255,255,.3); margin-top: 2px; }

/* ── FAQ ── */
.ge-faq { max-width: 760px; margin: 0 auto; }
.ge-faq-item { border-bottom: 1px solid rgba(201,168,106,.1); }
.ge-faq-q {
  width: 100%;
  background: none; border: none;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: pointer; text-align: left;
  color: #fff;
  font-family: var(--serif);
  font-size: 19px; font-weight: 300;
  transition: color .2s;
}
.ge-faq-q:hover { color: inherit !important; }
.ge-faq-item.is-open .ge-faq-q {
  color: var(--gold-d, #9A7030) !important;
}
.ge-section--dark .ge-faq-item.is-open .ge-faq-q,
.ge-section--navy .ge-faq-item.is-open .ge-faq-q,
.ge-section--deep .ge-faq-item.is-open .ge-faq-q {
  color: var(--gold, #C9A86A) !important;
}
/* Parent-Theme injiziert eigenes + via ::after — unterdrücken */
.ge-faq-q::after,
.ge-faq-q::before { display: none !important; content: none !important; }
.ge-faq-icon {
  width: 26px; height: 26px;
  min-width: 26px; min-height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,106,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
  color: var(--gold);
}
.ge-faq-icon svg {
  width: 12px !important;
  height: 12px !important;
  display: block;
  flex-shrink: 0;
}
.ge-faq-item.is-open .ge-faq-icon { background: rgba(201,168,106,.1); transform: rotate(180deg); }
.ge-faq-a {
  font-size: 14.5px;
  color: rgba(255,255,255,.42);
  line-height: 1.85;
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .3s;
}
.ge-faq-item.is-open .ge-faq-a { max-height: 1200px; padding-bottom: 22px; }

/* ── CTA Band ── */
.ge-cta-band {
  background: linear-gradient(135deg, #060f1d, var(--navy-m));
  border-top: 1px solid rgba(201,168,106,.12);
  border-bottom: 1px solid rgba(201,168,106,.08);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.ge-cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 80% 50%, rgba(201,168,106,.04), transparent);
}
.ge-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.ge-cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(28px,3vw,46px);
  font-weight: 300; color: #fff; line-height: 1.2;
}
.ge-cta-band h2 em { font-style: italic; color: var(--gold-l); }
.ge-cta-band p { font-size: 15px; color: rgba(255,255,255,.42); margin-top: 10px; }
.ge-cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── VIP Band ── */
.ge-vip-band {
  background: linear-gradient(135deg, #060e1c, #0c1a30);
  border-top: 1px solid rgba(201,168,106,.15);
  border-bottom: 1px solid rgba(201,168,106,.08);
  padding: 64px 0;
  position: relative; overflow: hidden; z-index: 1;
}
.ge-vip-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 120% at 30% 50%, rgba(201,168,106,.04), transparent);
}
.ge-vip-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.ge-vip-band__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,106,.08);
  border: 1px solid rgba(201,168,106,.25);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 14px;
}
.ge-vip-band h2 {
  font-family: var(--serif);
  font-size: clamp(26px,3vw,44px);
  font-weight: 300; color: #fff; line-height: 1.2;
}
.ge-vip-band h2 em { font-style: italic; color: var(--gold-l); }
.ge-vip-band p { font-size: 15px; color: rgba(255,255,255,.42); margin-top: 8px; max-width: 480px; }

/* ── Reveal Animation ── */
@keyframes ge-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ge-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .7s var(--ease, cubic-bezier(.16,1,.3,1)),
    transform .7s var(--ease, cubic-bezier(.16,1,.3,1));
  transition-delay: var(--ge-reveal-delay, 0s);
  will-change: opacity, transform;
}
.ge-reveal.in { opacity: 1; transform: none; will-change: auto; }

/* ── Markt Cards ── */
.ge-markt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ge-markt-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,168,106,.1);
  border-radius: 18px; padding: 36px;
  transition: border-color .3s, transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.ge-markt-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,106,.04), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.ge-markt-card:hover { border-color: rgba(201,168,106,.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.ge-markt-card:hover::before { opacity: 1; }
.ge-markt-card__icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(201,168,106,.08); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--gold); }
.ge-markt-card h4 { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.ge-markt-card__val { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--gold-l); line-height: 1; margin-bottom: 8px; }
.ge-markt-card__val small { font-size: 20px; opacity: .6; margin-left: 4px; }
.ge-markt-card__trend { font-size: 12px; color: rgba(255,255,255,.3); margin-bottom: 18px; }
.ge-trend--up { color: #4ade80; }
.ge-markt-bar { height: 3px; background: rgba(255,255,255,.05); border-radius: 2px; overflow: hidden; }
.ge-markt-bar__fill { height: 100%; background: linear-gradient(90deg, var(--gold-d), var(--gold-l)); border-radius: 2px; width: 0; transition: width 1.2s var(--ease); }

/* ── Footer & Sticky → vollständig in ge-footer.css definiert ── */

/* ── Responsive ── */
@media(max-width: 1024px) { /* Trust items are already 2 columns due to flex: 1 1 50% */ }
@media(max-width: 900px) {
  .ge-markt-grid,
  .ge-testi-grid,
  .ge-process { grid-template-columns: 1fr; }
  .ge-process::before { display: none; }
  .ge-trust__inner { grid-template-columns: repeat(3, 1fr); }
  .ge-trust__item {
    border-right: none; /* Reset desktop border */
    border-bottom: 1px solid rgba(201,168,106,.07); /* Add bottom border for 2-column layout */
  }
  .ge-trust__item:nth-child(3n+1), .ge-trust__item:nth-child(3n+2) { border-right: 1px solid rgba(201,168,106,.07); }
  .ge-trust__item:nth-last-child(-n+3) { border-bottom: none; }
}
@media(max-width: 600px) {
  .ge-container, .container { padding: 0 20px; }
  .ge-section { padding: 72px 0; }
  .ge-cta-band__inner { flex-direction: column; text-align: center; }
  .ge-cta-actions { justify-content: center; }
}

/* ── ge-fade (custom.js Scroll-Animation Kompatibilität) ── */
.ge-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.ge-fade.ge-fade--visible { opacity: 1; transform: none; }

/* ── Page Content (Impressum, Datenschutz etc.) ── */
.ge-page-content h1, .ge-page-content h2, .ge-page-content h3 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--navy);
  margin: 28px 0 12px;
}
.ge-page-content h2 { font-size: clamp(22px, 2.5vw, 32px); }
.ge-page-content h3 { font-size: clamp(18px, 2vw, 24px); }
.ge-page-content p  { margin-bottom: 16px; }
.ge-page-content a  { color: var(--gold-d); text-decoration: underline; }
.ge-page-content ul, .ge-page-content ol {
  padding-left: 24px; margin-bottom: 16px;
}
.ge-page-content li { margin-bottom: 6px; }

/* ── Skip Link (Accessibility) ── */
.ge-skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--gold); color: #fff;
  padding: 10px 20px; border-radius: 0 0 8px 8px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: top .2s; z-index: 9999;
}
.ge-skip-link:focus { top: 0; }


/* ── TOPICAL RELATED NAVIGATION v35 ─────────────────────── */
.ge-topical-related {
  background: #1B3A5C; /* Navy Dark — konsistent mit ge-property.css */
  border-top: 1px solid rgba(201,168,106,.14);
  border-bottom: 1px solid rgba(255,255,255,.04);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.ge-topical-related::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 100%;
  background: radial-gradient(ellipse at center top, rgba(201,168,106,.055) 0%, transparent 60%);
  pointer-events: none;
}
.ge-topical-related__label {
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold, #C9A86A);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: .7;
  position: relative;
  z-index: 2;
}
.ge-topical-related__label::before,
.ge-topical-related__label::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,106,.45));
}
.ge-topical-related__label::after {
  background: linear-gradient(90deg, rgba(201,168,106,.45), transparent);
}
.ge-topical-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.ge-topical-related__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 30px 26px 26px;
  background: linear-gradient(145deg, rgba(14,32,64,.8) 0%, rgba(10,26,47,.95) 100%);
  border: 1px solid rgba(201,168,106,.13);
  border-top: 1px solid rgba(201,168,106,.22);
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  transition: transform .38s cubic-bezier(.16,1,.3,1),
              box-shadow .38s cubic-bezier(.16,1,.3,1),
              border-color .3s ease;
}
.ge-topical-related__item::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,106,.5), transparent);
  opacity: .8;
  transition: opacity .3s;
}
.ge-topical-related__item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-d, #9A7030), var(--gold-l, #E8D090), var(--gold-d, #9A7030));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .42s cubic-bezier(.16,1,.3,1);
}
.ge-topical-related__item:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,106,.32);
  box-shadow:
    0 24px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(201,168,106,.1),
    inset 0 1px 0 rgba(201,168,106,.12);
}
.ge-topical-related__item:hover::before { opacity: 1; }
.ge-topical-related__item:hover::after  { transform: scaleX(1); }
.ge-topical-related__item-label {
  font-family: var(--serif, 'Cormorant Garamond', Georgia, serif);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,.92);
  line-height: 1.26;
  letter-spacing:0;
  margin-bottom: 6px;
  transition: color .22s;
}
.ge-topical-related__item:hover .ge-topical-related__item-label {
  color: var(--gold-l, #E8D090);
}
.ge-topical-related__item-sub {
  font-size: 11.5px;
  font-family: var(--sans, 'Outfit', sans-serif);
  color: rgba(255,255,255,.28);
  line-height: 1.5;
  letter-spacing: .02em;
  margin-bottom: 0;
}
.ge-topical-related__arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gold, #C9A86A);
  opacity: .45;
  transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .3s;
}
.ge-topical-related__item:hover .ge-topical-related__arrow {
  transform: translateX(8px);
  opacity: .95;
}
/* ── END Topical Related ─────────────────────────────────── */
@media(max-width: 480px) {
  .ge-container, .container { padding: 0 16px; }
  .ge-section { padding: 60px 0; }
  .ge-section-head h2 { font-size: 30px; }
  .ge-section-head p { font-size: 14px; }
  .ge-trust__inner { grid-template-columns: repeat(2, 1fr); }
  .ge-trust__item {
    border-right: none;
    border-bottom: 1px solid rgba(201,168,106,.07);
  }
  .ge-trust__item:nth-child(odd) { border-right: 1px solid rgba(201,168,106,.07); }
  .ge-trust__item:nth-last-child(-n+2) { border-bottom: none; }
  .ge-process-step { padding: 0 16px; }
  .ge-testi-grid, .ge-markt-grid { gap: 12px; }
  .ge-topical-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 16px;
  }
  .ge-vip-band__badge {
    font-size: 8px;
    padding: 4px 12px;
  }
}

/*
=======================================================================
  LEISTUNGEN PAGE (page-leistungen.php) v2.1
=======================================================================
*/

/* ── Page Header & Navigation ────────────────────────────────── */
.ge-page-header--leistungen {
  padding: clamp(80px, 10vw, 120px) 0 0;
  text-align: center;
}
.ge-section-tag--on-light {
  color: var(--gold-d, #9A7030);
}
.ge-section-subtitle {
  color: rgba(10, 26, 47, .6);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 16px auto 0;
  line-height: 1.75;
}

/* ── Tab Navigation ──────────────────────────────────────────── */
.ls-tabs {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 244, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E4DCD0;
  z-index: 100;
}
.ls-tabs__inner {
  display: flex;
  justify-content: center;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}
.ls-tab {
  flex: 1 1 0%;
  padding: 18px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all .25s;
  white-space: nowrap;
}
.ls-tab:hover {
  color: var(--gold-d);
  background: rgba(201,168,106,.05);
}
.ls-tab.is-active {
  color: var(--navy);
  border-bottom-color: var(--gold-d);
}
.ls-tab::before {
  content: attr(data-num);
  font-weight: 400;
  font-size: 11px;
  color: var(--gold-d);
  opacity: .5;
  margin-right: 8px;
}

/* ── General Leistung Block Styles ─────────────────────────── */
.ls-leistung-block {
  padding-top: 80px; /* Space for sticky nav */
}
.ls-block-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.ls-block-intro .ge-section-h2 { margin-top: 12px; }
.ls-block-intro.ls-block-intro--inv .ge-section-h2 { color: #fff; }
.ls-block-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
}
.ls-block-sub--inv {
  color: rgba(255,255,255,.5);
}

/* ── 1. VERKAUFEN ────────────────────────────────────────────── */

/* Situationen */
.ls-situationen {
  margin: 80px 0;
  text-align: center;
}
.ls-sit-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 48px;
}
.ls-sit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ls-sit-card {
  text-align: center;
  padding: 32px;
  background: var(--warm2);
  border-radius: var(--radius);
}
.ls-sit-card__icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
}
.ls-sit-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.ls-sit-card__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Verkaufsprozess */
.ls-prozess {
  background: #fff;
  border-radius: var(--radius);
  padding: 64px;
  margin: 80px 0;
}
.ls-prozess-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}
.ls-prozess-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 64px;
}
.ls-prozess-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ls-prozess-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  background: var(--warm);
}
.ls-prozess-step__num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 20px;
  background: rgba(var(--step-color-rgb), .1);
  border: 1.5px solid rgba(var(--step-color-rgb), .25);
  color: var(--step-color);
}
.ls-prozess-step__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.ls-prozess-step__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.ls-prozess-footer {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--warm);
  border-radius: 12px;
  font-size: 14px;
  color: var(--muted);
}
.ls-prozess-footer strong {
  font-weight: 600;
  color: var(--navy);
}

/* Warum mit Makler? */
.ls-warum { margin: 80px 0; }
.ls-warum-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}
.ls-warum-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 48px;
}
.ls-warum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ls-warum-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--warm2);
  border-radius: 12px;
}
.ls-warum-item__icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #16a34a;
  stroke-width: 2.5;
  margin-top: 3px;
}
.ls-warum-item__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.ls-warum-item__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* Preis Banner */
.ls-preis-banner {
  margin-top: 80px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.ls-preis-banner__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.ls-preis-banner__body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  color: rgba(255,255,255,.8);
}
.ls-preis-banner__cta {
  flex-shrink: 0;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all .25s;
}
.ls-preis-banner__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── 2. DISKRET VERKAUFEN ──────────────────────────────────── */
.ge-section-tag--dark-context {
  color: rgba(201,168,106,.6);
}
.ls-diskret-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.ls-diskret-h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
}
.ls-diskret-text {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 16px;
}
.ls-diskret-checks {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ls-diskret-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.ls-diskret-check__icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
}
.ls-diskret-cases {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ls-diskret-case {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.07);
}
.ls-diskret-case__icon { font-size: 24px; line-height: 1; }
.ls-diskret-case__title { font-weight: 600; color: #fff; margin-bottom: 4px; }
.ls-diskret-case__text { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }
.ls-block-cta {
  margin-top: 72px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 48px;
}
.ls-block-cta__text {
  max-width: 500px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,.5);
  font-size: 15px;
}
.ls-block-cta__buttons { display: flex; justify-content: center; gap: 12px; }

/* ── 3. KAUFEN & VERMIETEN ─────────────────────────────────── */
.ls-kv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ls-kv-card {
  --card-color-rgb: 22, 163, 74; /* Default green */
  padding: 32px;
  background: #fff;
  border: 1px solid #E4DCD0;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}
.ls-kv-card--blue { --card-color-rgb: 11, 95, 255; }
.ls-kv-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(var(--card-color-rgb), .1);
  border: 1px solid rgba(var(--card-color-rgb), .25);
}
.ls-kv-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--card-color);
  stroke-width: 1.8;
}
.ls-kv-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.ls-kv-card__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.ls-kv-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ls-kv-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.ls-kv-card__list-icon {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  fill: none;
  stroke: var(--card-color);
  stroke-width: 2.5;
  margin-top: 5px;
}
.ls-kv-card__extra {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #E4DCD0;
}
.ls-kv-card__extra-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
.ls-kv-card__extra-icon {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--gold-d);
  stroke-width: 2;
  margin-top: 3px;
}
.ls-kv-card__link {
  margin-top: 24px;
  color: var(--card-color);
  font-weight: 600;
  text-decoration: none;
}
.ls-kv-hinweis {
  margin-top: 32px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid #E4DCD0;
  border-radius: 12px;
  font-size: 14px;
  color: var(--muted);
}
.ls-kv-hinweis__icon {
  flex-shrink: 0;
  margin-top: 3px;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

/* ── 4. WERTERMITTLUNG ─────────────────────────────────────── */
.ls-wert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ls-wert-card {
  padding: 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
}
.ls-wert-card--outline {
  border-color: rgba(255,255,255,.12);
}
.ls-wert-card__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--gold);
  color: #fff;
  margin-bottom: 20px;
}
.ls-wert-card__badge--outline {
  background: transparent;
  color: var(--gold-l);
  border: 1px solid rgba(201,168,106,.4);
}
.ls-wert-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.ls-wert-card__text {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 24px;
}
.ls-wert-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ls-wert-card__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.ls-wert-card__detail-icon {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
}
.ls-wert-card__detail-icon--purple { stroke: #7c3aed; }
.ls-wert-card__button { margin-top: 24px; display: inline-flex; }
.ls-wert-card__btn-outline {
  display: inline-block;
  margin-top: 24px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: all .25s;
}
.ls-wert-card__btn-outline:hover {
  color: var(--gold-l);
  border-bottom-color: var(--gold-l);
}


/* Preisstrategie-Aufklärung */
.ls-wert-aufklaer {
  margin-top: 80px;
  text-align: center;
}
.ls-wert-aufklaer__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 48px;
}
.ls-wert-aufklaer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.ls-komp-card {
  padding: 32px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
}
.ls-komp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--komp-color-rgb), .1);
  border: 1px solid rgba(var(--komp-color-rgb), .2);
}
.ls-komp-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--komp-color);
  stroke-width: 1.8;
}
.ls-komp-title {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.ls-komp-text {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* ── FAQ Section ───────────────────────────────────────────── */
.ls-faq-wrap { max-width: 800px; margin: 0 auto; }
.ge-section-hd--center { text-align: center; }
.ge-section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.45);
  max-width: 580px;
  margin: 16px auto 0;
  line-height: 1.75;
}
.ge-section-hd--center .ge-section-sub { margin-bottom: 64px; }
.ls-faq-inner {
  border-top: 1px solid rgba(255,255,255,.1);
}
.ls-faq-item {
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ls-faq-trigger {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}
.ls-faq-question {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  color: #fff;
  transition: color .2s;
}
.ls-faq-trigger:hover .ls-faq-question {
  color: var(--gold-l);
}
.ls-faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,.35);
  stroke-width: 2;
  transition: transform .3s var(--ease);
}
.ls-faq-trigger[aria-expanded="true"] .ls-faq-icon {
  transform: rotate(45deg);
}
.ls-faq-body {
  padding-bottom: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  display: none; /* Initially hidden */
}
.ls-faq-trigger[aria-expanded="true"] + .ls-faq-body {
  display: block;
  max-height: 300px; /* Adjust as needed */
}
.ls-faq-answer {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
}

/* ── KOSTEN Section ────────────────────────────────────────── */
.ls-kosten-wrap { max-width: 800px; margin: 0 auto; }
.ls-kosten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.ls-kosten-card {
  padding: 32px;
  text-align: center;
  background: #fff;
  border: 1px solid #E4DCD0;
  border-radius: var(--radius);
}
.ls-kosten-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.ls-kosten-card__val {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
}
.ls-kosten-card__sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 16px;
}
.ls-kosten-card__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.ls-kosten-note {
  margin-top: 32px;
  padding: 24px;
  background-color: var(--warm2);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}
.ls-kosten-note strong {
  color: var(--navy);
}

/* ── Responsive Overrides for Leistungen ───────────────────── */
@media (max-width: 900px) {
  .ls-diskret-grid,
  .ls-kv-grid,
  .ls-wert-grid,
  .ls-wert-aufklaer__grid,
  .ls-kosten-grid {
    grid-template-columns: 1fr;
  }
  .ls-tabs__inner {
    overflow-x: auto;
    justify-content: flex-start;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  .ls-tabs__inner::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
}

@media (max-width: 600px) {
  .ge-page-header--leistungen {
    padding-top: clamp(60px, 15vw, 80px);
  }
  .ls-leistung-block { padding-top: 60px; }
  .ls-block-intro { margin-bottom: 48px; }
  .ls-prozess { padding: 32px; }
  .ls-prozess-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ls-prozess-step__num { margin-bottom: 16px; }
  .ls-prozess-footer { justify-content: center; text-align: center; }
  .ls-preis-banner {
    flex-direction: column;
    padding: 32px;
    text-align: center;
  }

  .ls-block-cta__buttons {
    flex-direction: column;
  }
  .ls-faq-trigger { padding: 18px 0; }
  .ls-faq-question { font-size: 17px; }
}

/* v134.7 - mobile rails only for market data, service grids stay canonical */
@media (max-width: 768px) {
  .ge-markt-data-grid {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 20px;
    padding: 4px 20px 12px;
    margin: 0 -20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .ge-markt-data-grid::-webkit-scrollbar {
    display: none;
  }
  .ge-markt-data-card {
    flex: 0 0 min(84vw, 340px);
    width: min(84vw, 340px);
    height: auto;
    scroll-snap-align: start;
  }
  .ge-hw-grid,
  .ge-pricing-grid,
  .ak-obj-grid,
  .ge-typ-grid,
  .ge-gew-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ak-obj-card,
  .ge-typ-card,
  .ge-gew-card {
    min-height: 0;
    height: auto;
  }
  .ge-hw-card,
  .ge-pricing-card {
    min-height: 0;
    height: auto;
  }
  .ge-markt-data-card {
    box-shadow: 0 14px 36px rgba(10, 26, 47, 0.07);
  }
  .ge-pricing-card__price small {
    display: block;
    margin-top: 6px;
  }
  .ge-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .ge-form-checkbox {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .ge-markt-data-grid {
    gap: 12px;
  }
  .ge-section-hd .ge-section-h2,
  .ge-sec-hd .ge-sec-h2 {
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1.12;
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }
  .ge-section-hd .ge-section-h2 em,
  .ge-sec-hd .ge-sec-h2 em {
    display: inline-block;
  }
  .ge-section-hd,
  .ge-sec-hd {
    margin-bottom: 34px;
  }
  .ls-situationen,
  .ls-warum {
    margin: 56px 0;
  }
  .ls-sit-title,
  .ls-warum-sub {
    margin-bottom: 28px;
  }
  .ge-markt-data-card {
    flex-basis: min(86vw, 320px);
    width: min(86vw, 320px);
    border-radius: 16px;
  }
  .ak-obj-card,
  .ge-typ-card,
  .ge-gew-card,
  .ge-hw-card,
  .ge-pricing-card {
    padding: 20px 18px 18px;
    border-radius: 16px;
  }
  .ak-obj-icon,
  .ge-typ-icon,
  .ge-gew-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }
  .ak-obj-title,
  .ge-typ-card h3,
  .ge-gew-card h3,
  .ge-pricing-card__name {
    line-height: 1.3;
  }
  .ak-obj-sub,
  .ge-typ-card p,
  .ge-gew-card p,
  .ge-pricing-card p,
  .ge-pricing-card ul li {
    font-size: 13px;
    line-height: 1.6;
  }
  .ge-pricing-card__price {
    font-size: 38px;
  }
  .ge-pricing-card ul {
    margin-bottom: 20px;
    gap: 8px;
  }
  .ge-pricing-card .ge-btn,
  .ak-obj-grid + .ge-text-center .ge-btn {
    width: 100%;
    justify-content: center;
  }
  .ls-sit-card {
    padding: 24px 22px;
    text-align: left;
  }
  .ls-sit-card__icon {
    margin-bottom: 14px;
  }
  .ls-warum-item {
    padding: 18px 18px 18px 16px;
    gap: 12px;
  }
  .ls-warum-item__title,
  .ls-sit-card__title {
    font-size: 15px;
  }
  .ls-warum-item__text,
  .ls-sit-card__text {
    font-size: 13.5px;
    line-height: 1.65;
  }
  .ls-faq-wrap,
  .ak-faq-wrap,
  .uu-faq-list,
  .ge-faq-list {
    gap: 12px;
  }
  .ls-faq-inner {
    border-top: 0;
  }
  .ls-faq-item,
  .ak-faq-item,
  .uu-faq-item2,
  .ge-faq-item {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 0 16px;
    background: rgba(255,255,255,.03);
  }
  .ge-section--light .ge-faq-item,
  .ge-section--white .ge-faq-item {
    background: #fff;
    border-color: #e8dfd3;
    box-shadow: 0 12px 30px rgba(10, 26, 47, 0.05);
  }
  .ak-faq-item {
    background: rgba(255,255,255,.04);
    border-color: rgba(201,168,106,.14);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  }
  .ls-faq-trigger,
  .ak-faq-q,
  .uu-faq-trigger2,
  .ge-faq-q {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .ls-faq-question,
  .ak-faq-q,
  .uu-faq-q-text,
  .ge-faq-q {
    font-size: 16px;
    line-height: 1.45;
  }
  .ak-faq-q {
    color: #fff;
  }
  .ls-faq-answer,
  .ak-faq-a-in,
  .uu-faq-ans-text,
  .ge-faq-a-in {
    font-size: 14px;
    line-height: 1.7;
  }
  .ak-faq-a-in {
    color: rgba(255,255,255,.74);
  }
}

/* v136.9 - critical mobile override, mirrored inline in functions.php */
@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
  }

  .ge-hero-premium,
  .ge-hero-premium--leistungen,
  .ge-hero-premium--hausverwaltung,
  .ge-hero-premium--gewerbe,
  .ge-hero-premium--markt,
  .ge-hero-premium--gutachten {
    padding-top: 260px !important;
    min-height: auto !important;
    overflow: hidden !important;
  }

  .ge-hero-premium__inner {
    padding-top: 0 !important;
    transform: none !important;
  }

  .ge-hero-premium__h1,
  .ge-hero-premium h1 {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .ge-page-header--leistungen {
    padding-top: 112px !important;
    padding-bottom: 24px !important;
  }

  .ls-tabs {
    position: relative !important;
    top: auto !important;
    margin: 0 !important;
    padding: 12px 14px 16px !important;
    overflow: visible !important;
    background: #071020 !important;
  }

  .ls-tabs__inner {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 0 !important;
    overflow: visible !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  .ls-tab {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 52px !important;
    border-radius: 18px !important;
    padding: 10px 9px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    font-size: clamp(10px, 2.85vw, 12px) !important;
    line-height: 1.1 !important;
    letter-spacing: .04em !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 5px !important;
  }

  .ls-situationen {
    padding-top: 72px !important;
    scroll-margin-top: 170px !important;
  }

  .ls-sit-title {
    padding: 0 16px !important;
    margin-bottom: 22px !important;
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1.08 !important;
  }

  .ls-sit-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    padding: 0 14px !important;
    overflow: visible !important;
    overflow-x: visible !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  .ls-sit-card {
    width: 100% !important;
    min-width: 0 !important;
    min-height: auto !important;
    padding: 22px 14px !important;
  }

}
