/*
 * VMX Wohngebäudeversicherung — Stylesheet
 * Design: Stil 3 Regional Warm
 * Seitentyp: Beratungs-Seite (kein Direktabschluss)
 * Version: 1.0
 */

/* ============================================================
   0. CSS CUSTOM PROPERTIES (Design-System Stil 3)
   ============================================================ */
:root {
  --gruen-dunkel:  #2d6a4f;
  --gruen-mittel:  #40916c;
  --gruen-hell:    #d8f3dc;
  --gruen-bg:      #f0faf3;
  --beige:         #d4a574;
  --beige-hell:    #fefae0;
  --creme:         #fffdf7;
  --cta-gelb:      #e9c46a;
  --cta-dunkel:    #b5860f;
  --text-dunkel:   #1a2e1a;
  --text-mittel:   #3d5a3d;
  --text-hell:     #5a7a5a;
  --font-display:  'Lora', Georgia, serif;
  --font-body:     'Source Sans 3', system-ui, sans-serif;
  --radius:        8px;
  --radius-lg:     16px;
  --shadow-sm:     0 2px 8px rgba(45,106,79,.10);
  --shadow-md:     0 4px 20px rgba(45,106,79,.15);
  --shadow-lg:     0 8px 40px rgba(45,106,79,.18);
  --transition:    0.3s ease;
}

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body.vmx-gebaeude-page {
  font-family: var(--font-body);
  color: var(--text-dunkel);
  background: var(--creme);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.vmx-gebaeude-page img { max-width: 100%; height: auto; display: block; }
body.vmx-gebaeude-page a   { color: var(--gruen-dunkel); text-decoration: none; }
body.vmx-gebaeude-page a:hover { color: var(--gruen-mittel); }
body.vmx-gebaeude-page ul  { list-style: none; }

.vmx-gebaeude-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
body.vmx-gebaeude-page h1,
body.vmx-gebaeude-page h2,
body.vmx-gebaeude-page h3 {
  font-family: var(--font-display);
  color: var(--text-dunkel);
  line-height: 1.25;
}
body.vmx-gebaeude-page h1 { font-size: clamp(1.75rem, 4vw, 2.6rem); font-weight: 700; }
body.vmx-gebaeude-page h2 { font-size: clamp(1.4rem, 3vw, 2rem);    font-weight: 700; }
body.vmx-gebaeude-page h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; }
body.vmx-gebaeude-page p  { font-size: 1.05rem; color: var(--text-mittel); margin-bottom: 1rem; }
body.vmx-gebaeude-page p:last-child { margin-bottom: 0; }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.vmx-gebaeude-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; border: none; transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.vmx-gebaeude-btn-primary {
  background: var(--cta-gelb); color: var(--text-dunkel);
  box-shadow: 0 4px 16px rgba(233,196,106,.4);
}
.vmx-gebaeude-btn-primary:hover {
  background: var(--cta-dunkel); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 24px rgba(181,134,15,.35);
}
.vmx-gebaeude-btn-secondary {
  background: transparent; color: var(--gruen-dunkel);
  border: 2px solid var(--gruen-dunkel);
}
.vmx-gebaeude-btn-secondary:hover { background: var(--gruen-dunkel); color: #fff; }
.vmx-gebaeude-btn-white {
  background: #fff; color: var(--gruen-dunkel); box-shadow: var(--shadow-sm);
}
.vmx-gebaeude-btn-white:hover { background: var(--gruen-bg); transform: translateY(-2px); }

/* ============================================================
   4. SECTION HELPERS
   ============================================================ */
.vmx-gebaeude-section     { padding: 72px 0; }
.vmx-gebaeude-section-sm  { padding: 48px 0; }
.vmx-gebaeude-section-alt   { background: var(--gruen-bg); }
.vmx-gebaeude-section-beige { background: var(--beige-hell); }
.vmx-gebaeude-section-dark  { background: var(--gruen-dunkel); }

.vmx-gebaeude-label {
  display: inline-block;
  background: var(--gruen-hell); color: var(--gruen-dunkel);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 16px;
}
.vmx-gebaeude-section-intro { max-width: 660px; margin: 0 auto 48px; text-align: center; }
.vmx-gebaeude-section-intro p { font-size: 1.1rem; }

.vmx-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.vmx-reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   5. HEADER
   ============================================================ */
.vmx-gebaeude-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--creme);
  border-bottom: 1px solid var(--gruen-hell);
  box-shadow: var(--shadow-sm);
}
.vmx-gebaeude-header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px;
}
.vmx-gebaeude-logo img { height: 44px; width: auto; max-width: 200px; max-height: 44px; display: block; flex-shrink: 0; }
.vmx-gebaeude-nav-cta  { display: flex; align-items: center; gap: 12px; }
.vmx-gebaeude-nav-phone { font-weight: 700; color: var(--gruen-dunkel); font-size: .95rem; }
.vmx-gebaeude-nav-phone:hover { color: var(--gruen-mittel); }

@media (max-width: 600px) {
  .vmx-gebaeude-nav-phone { display: none; }
  .vmx-gebaeude-btn { padding: 10px 18px; font-size: .9rem; }
}

/* ============================================================
   6. BREADCRUMB
   ============================================================ */
.vmx-gebaeude-breadcrumb {
  background: var(--gruen-bg); padding: 10px 0;
  font-size: .85rem; color: var(--text-hell);
}
.vmx-gebaeude-breadcrumb a { color: var(--text-hell); }
.vmx-gebaeude-breadcrumb a:hover { color: var(--gruen-dunkel); }
.vmx-gebaeude-breadcrumb span { margin: 0 6px; }

/* ============================================================
   7. HERO
   ============================================================ */
.vmx-gebaeude-hero {
  background: linear-gradient(135deg, var(--gruen-dunkel) 0%, var(--gruen-mittel) 60%, #52b788 100%);
  color: #fff;
  padding: 64px 0 72px;
  position: relative; overflow: hidden;
}
.vmx-gebaeude-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.vmx-gebaeude-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; position: relative;
}
.vmx-gebaeude-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 20px;
}
.vmx-gebaeude-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #fff; margin-bottom: 16px; font-family: var(--font-display);
}
.vmx-gebaeude-hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.88);
  margin-bottom: 28px; line-height: 1.6;
}
.vmx-gebaeude-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.vmx-gebaeude-hero-trust   { display: flex; gap: 20px; flex-wrap: wrap; }
.vmx-gebaeude-hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; color: rgba(255,255,255,.85);
}

/* Hero-Karte rechts */
.vmx-gebaeude-hero-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg); color: var(--text-dunkel);
}
.vmx-gebaeude-hero-card-title {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--gruen-dunkel); margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 2px solid var(--gruen-hell);
}
.vmx-gebaeude-hero-steps { display: flex; flex-direction: column; gap: 16px; }
.vmx-gebaeude-hero-step  {
  display: flex; align-items: flex-start; gap: 14px;
}
.vmx-gebaeude-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gruen-dunkel); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .88rem; flex-shrink: 0; margin-top: 2px;
}
.vmx-gebaeude-step-text strong { display: block; font-size: .95rem; font-weight: 700; color: var(--text-dunkel); margin-bottom: 2px; }
.vmx-gebaeude-step-text span   { font-size: .82rem; color: var(--text-hell); }

@media (max-width: 860px) {
  .vmx-gebaeude-hero-inner { grid-template-columns: 1fr; }
  .vmx-gebaeude-hero-card  { max-width: 440px; margin: 0 auto; }
}

/* ============================================================
   8. TRUST BAR
   ============================================================ */
.vmx-gebaeude-trustbar { background: var(--gruen-dunkel); padding: 18px 0; }
.vmx-gebaeude-trustbar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.vmx-gebaeude-trustbar-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600;
  color: rgba(255,255,255,.9); white-space: nowrap;
}
.vmx-gebaeude-trustbar-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--beige); }
@media (max-width: 600px) {
  .vmx-gebaeude-trustbar-inner { gap: 16px; }
  .vmx-gebaeude-trustbar-item  { font-size: .8rem; }
  .vmx-gebaeude-trustbar-dot   { display: none; }
}

/* ============================================================
   9. LEISTUNGSSEKTION (Kacheln)
   ============================================================ */
.vmx-gebaeude-leistung-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px;
}
.vmx-gebaeude-leistung-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gruen-hell); transition: var(--transition);
}
.vmx-gebaeude-leistung-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-3px);
  border-top-color: var(--gruen-dunkel);
}
.vmx-gebaeude-leistung-icon { font-size: 1.8rem; margin-bottom: 12px; }
.vmx-gebaeude-leistung-card h3 { font-size: .97rem; color: var(--gruen-dunkel); margin-bottom: 6px; }
.vmx-gebaeude-leistung-card p  { font-size: .88rem; color: var(--text-mittel); margin: 0; }
.vmx-gebaeude-leistung-badge {
  display: inline-block; margin-top: 10px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 3px 9px; border-radius: 50px;
}
.vmx-gebaeude-leistung-badge.standard  { background: var(--gruen-hell); color: var(--gruen-dunkel); }
.vmx-gebaeude-leistung-badge.optional  { background: var(--beige-hell); color: var(--cta-dunkel); border: 1px solid var(--beige); }
.vmx-gebaeude-leistung-badge.wichtig   { background: #fff3cd; color: var(--cta-dunkel); border: 1px solid var(--cta-gelb); }

/* ============================================================
   10. UNTERVERSICHERUNGS-WARNUNG
   ============================================================ */
.vmx-gebaeude-warn-box {
  background: linear-gradient(135deg, #fff7e6 0%, #fef2cc 100%);
  border: 2px solid var(--cta-gelb);
  border-left: 6px solid var(--cta-dunkel);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap;
}
.vmx-gebaeude-warn-icon { font-size: 2.8rem; flex-shrink: 0; }
.vmx-gebaeude-warn-content h3 {
  color: var(--cta-dunkel); font-family: var(--font-display);
  font-size: 1.2rem; margin-bottom: 10px;
}
.vmx-gebaeude-warn-content p  { font-size: .97rem; color: var(--text-dunkel); margin-bottom: 16px; }
.vmx-gebaeude-warn-stat {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--cta-dunkel); color: #fff;
  padding: 8px 16px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; margin-bottom: 16px;
}
.vmx-gebaeude-warn-stat .stat-num { font-size: 1.6rem; font-family: var(--font-display); }

/* ============================================================
   11. MICRO-FUNNEL
   ============================================================ */
.vmx-gebaeude-funnel-wrap {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-md);
  max-width: 700px; margin: 0 auto;
}
.vmx-gebaeude-funnel-progress { display: flex; gap: 8px; margin-bottom: 32px; }
.vmx-gebaeude-funnel-dot {
  flex: 1; height: 6px; border-radius: 3px;
  background: var(--gruen-hell); transition: background .3s;
}
.vmx-gebaeude-funnel-dot.active { background: var(--gruen-dunkel); }
.vmx-gebaeude-funnel-step   { display: none; }
.vmx-gebaeude-funnel-step.active { display: block; }
.vmx-gebaeude-funnel-question {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--text-dunkel); margin-bottom: 20px; font-weight: 600;
}
.vmx-gebaeude-funnel-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vmx-gebaeude-funnel-opt {
  padding: 14px 16px; border: 2px solid var(--gruen-hell);
  border-radius: var(--radius); cursor: pointer;
  font-size: .95rem; color: var(--text-mittel);
  background: var(--gruen-bg); transition: var(--transition);
  text-align: left; display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
}
.vmx-gebaeude-funnel-opt:hover,
.vmx-gebaeude-funnel-opt.selected {
  border-color: var(--gruen-dunkel); background: var(--gruen-hell);
  color: var(--gruen-dunkel); font-weight: 600;
}
.vmx-gebaeude-funnel-opt .opt-icon { font-size: 1.3rem; flex-shrink: 0; }
@media (max-width: 480px) { .vmx-gebaeude-funnel-options { grid-template-columns: 1fr; } }

.vmx-gebaeude-funnel-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px; gap: 12px;
}
.vmx-gebaeude-funnel-back {
  background: none; border: 1px solid var(--gruen-hell);
  color: var(--text-hell); padding: 10px 20px; border-radius: 50px;
  cursor: pointer; font-family: var(--font-body); font-size: .9rem;
  transition: var(--transition);
}
.vmx-gebaeude-funnel-back:hover { border-color: var(--gruen-dunkel); color: var(--gruen-dunkel); }

.vmx-gebaeude-funnel-step-label {
  font-size: .82rem; color: var(--text-hell); white-space: nowrap;
}

/* ============================================================
   12. KONTAKTFORMULAR
   ============================================================ */
.vmx-gebaeude-kontakt-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.vmx-gebaeude-kontakt-info h2  { margin-bottom: 16px; }
.vmx-gebaeude-kontakt-info p   { font-size: .97rem; margin-bottom: 20px; }
.vmx-gebaeude-kontakt-channels { display: flex; flex-direction: column; gap: 12px; }
.vmx-gebaeude-channel-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem; color: var(--text-mittel);
}
.vmx-gebaeude-channel-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gruen-hell); color: var(--gruen-dunkel);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.vmx-gebaeude-channel-item a { font-weight: 600; color: var(--gruen-dunkel); }
.vmx-gebaeude-channel-item a:hover { color: var(--gruen-mittel); }

.vmx-gebaeude-form-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-md);
}
.vmx-gebaeude-form-card h3 {
  font-family: var(--font-display); color: var(--gruen-dunkel);
  margin-bottom: 6px; font-size: 1.15rem;
}
.vmx-gebaeude-form-sub { font-size: .88rem; color: var(--text-hell); margin-bottom: 24px; }

.vmx-gebaeude-form { display: flex; flex-direction: column; gap: 16px; }
.vmx-gebaeude-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vmx-gebaeude-form-group { display: flex; flex-direction: column; gap: 6px; }
.vmx-gebaeude-form-group label {
  font-size: .85rem; font-weight: 700; color: var(--text-dunkel);
}
.vmx-gebaeude-form-group input,
.vmx-gebaeude-form-group textarea {
  padding: 12px 14px; border: 2px solid var(--gruen-hell);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: .95rem; color: var(--text-dunkel);
  background: var(--gruen-bg); transition: border-color .2s;
  width: 100%;
}
.vmx-gebaeude-form-group input:focus,
.vmx-gebaeude-form-group textarea:focus {
  outline: none; border-color: var(--gruen-dunkel);
  background: #fff;
}
.vmx-gebaeude-form-group textarea { resize: vertical; min-height: 100px; }

.vmx-gebaeude-form-dsgvo {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .83rem; color: var(--text-hell); line-height: 1.5;
}
.vmx-gebaeude-form-dsgvo input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--gruen-dunkel); cursor: pointer;
}
.vmx-gebaeude-form-dsgvo a { color: var(--gruen-dunkel); text-decoration: underline; }

.vmx-gebaeude-form-submit {
  background: var(--cta-gelb); color: var(--text-dunkel);
  border: none; border-radius: 50px; padding: 15px 32px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(233,196,106,.4); width: 100%;
}
.vmx-gebaeude-form-submit:hover {
  background: var(--cta-dunkel); color: #fff;
  transform: translateY(-2px); box-shadow: 0 6px 24px rgba(181,134,15,.35);
}

.vmx-gebaeude-form-trust {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 6px;
}
.vmx-gebaeude-form-trust-item {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; color: var(--text-hell);
}

.vmx-gebaeude-form-message {
  padding: 14px 16px; border-radius: var(--radius);
  font-size: .95rem; font-weight: 600; display: none; margin-top: 8px;
}
.vmx-gebaeude-form-message.success {
  background: var(--gruen-hell); color: var(--gruen-dunkel); display: block;
}
.vmx-gebaeude-form-message.error {
  background: #fef2f2; color: #b91c1c; display: block;
}

@media (max-width: 860px) { .vmx-gebaeude-kontakt-wrap { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .vmx-gebaeude-form-row { grid-template-columns: 1fr; } }

/* ============================================================
   13. MAKLER-VORSTELLUNG
   ============================================================ */
.vmx-gebaeude-makler-inner {
  display: grid; grid-template-columns: auto 1fr; gap: 36px;
  align-items: center;
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
}
.vmx-gebaeude-makler-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--gruen-dunkel); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; flex-shrink: 0;
}
.vmx-gebaeude-makler-info h3  { color: var(--gruen-dunkel); margin-bottom: 6px; }
.vmx-gebaeude-makler-info p   { font-size: .95rem; margin-bottom: 12px; }
.vmx-gebaeude-makler-badges   { display: flex; gap: 8px; flex-wrap: wrap; }
.vmx-gebaeude-makler-badge {
  background: var(--gruen-bg); border: 1px solid var(--gruen-hell);
  color: var(--gruen-dunkel); font-size: .78rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
}
@media (max-width: 560px) {
  .vmx-gebaeude-makler-inner  { grid-template-columns: 1fr; text-align: center; }
  .vmx-gebaeude-makler-avatar { margin: 0 auto; }
  .vmx-gebaeude-makler-badges { justify-content: center; }
}

/* ============================================================
   14. FAQ
   ============================================================ */
.vmx-gebaeude-faq-list { max-width: 800px; margin: 0 auto; }
.vmx-gebaeude-faq-item { border-bottom: 1px solid var(--gruen-hell); }
.vmx-gebaeude-faq-item:last-child { border-bottom: none; }
.vmx-gebaeude-faq-question {
  width: 100%; background: none; border: none; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  color: var(--text-dunkel); transition: color .2s;
}
.vmx-gebaeude-faq-question:hover { color: var(--gruen-dunkel); }
.vmx-gebaeude-faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gruen-hell); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  font-size: .85rem; font-weight: 700; color: var(--gruen-dunkel);
  transition: var(--transition);
}
.vmx-gebaeude-faq-item.open .vmx-gebaeude-faq-icon {
  background: var(--gruen-dunkel); color: #fff; transform: rotate(45deg);
}
.vmx-gebaeude-faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.vmx-gebaeude-faq-item.open .vmx-gebaeude-faq-answer { max-height: 500px; padding-bottom: 20px; }
.vmx-gebaeude-faq-answer p { color: var(--text-mittel); font-size: .97rem; line-height: 1.7; margin: 0; }

/* ============================================================
   15. FOOTER
   ============================================================ */
.vmx-gebaeude-footer { background: var(--text-dunkel); color: rgba(255,255,255,.7); padding: 48px 0 24px; }
.vmx-gebaeude-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 40px;
}
.vmx-gebaeude-footer-brand .brand-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.vmx-gebaeude-footer-brand p { font-size: .88rem; line-height: 1.6; }
.vmx-gebaeude-footer h4 {
  color: #fff; font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px;
}
.vmx-gebaeude-footer ul  { display: flex; flex-direction: column; gap: 8px; }
.vmx-gebaeude-footer ul li a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color .2s; }
.vmx-gebaeude-footer ul li a:hover { color: var(--cta-gelb); }
.vmx-gebaeude-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .82rem;
}
.vmx-gebaeude-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.vmx-gebaeude-footer-legal a { color: rgba(255,255,255,.5) !important; }
.vmx-gebaeude-footer-legal a:hover { color: var(--cta-gelb) !important; }

@media (max-width: 900px) { .vmx-gebaeude-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .vmx-gebaeude-footer-grid   { grid-template-columns: 1fr; }
  .vmx-gebaeude-footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   16. FLOATING ELEMENTS
   ============================================================ */
.vmx-gebaeude-whatsapp {
  position: fixed; bottom: 88px; right: 20px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; box-shadow: 0 4px 16px rgba(37,211,102,.4);
  display: flex; align-items: center; justify-content: center;
  animation: vmxGebaeudePulse 2.5s infinite; transition: transform .2s;
}
.vmx-gebaeude-whatsapp:hover { transform: scale(1.1); }
.vmx-gebaeude-whatsapp svg  { width: 28px; height: 28px; fill: #fff; }

@keyframes vmxGebaeudePulse {
  0%   { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
  50%  { box-shadow: 0 4px 28px rgba(37,211,102,.7); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
}

.vmx-gebaeude-sticky-mobile {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 850;
  background: #fff; border-top: 2px solid var(--gruen-hell);
  padding: 10px 16px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.1); gap: 10px;
}
@media (max-width: 680px) {
  .vmx-gebaeude-sticky-mobile { display: flex; }
  .vmx-gebaeude-sticky-mobile a { flex: 1; justify-content: center; text-align: center; font-size: .9rem; padding: 12px 10px; }
  .vmx-gebaeude-whatsapp { bottom: 80px; }
}

/* ============================================================
   17. FINAL CTA
   ============================================================ */
.vmx-gebaeude-final-cta {
  text-align: center; padding: 80px 0;
  background: linear-gradient(135deg, var(--gruen-dunkel) 0%, var(--gruen-mittel) 100%);
}
.vmx-gebaeude-final-cta h2 { color: #fff; margin-bottom: 12px; }
.vmx-gebaeude-final-cta p  {
  color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}
.vmx-gebaeude-final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   18. UTILITY / SPINNER
   ============================================================ */
.vmx-spin {
  width: 20px; height: 20px;
  border: 3px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: vmxSpinAnim 0.8s linear infinite;
  display: inline-block;
}
@keyframes vmxSpinAnim { to { transform: rotate(360deg); } }

.vmx-gebaeude-highlight {
  background: var(--cta-gelb); color: var(--text-dunkel);
  padding: 1px 6px; border-radius: 3px;
}
