/*
 * Immocompany – Hauptstylesheet
 * Version: 2.0 (SEO-Masterplan 2026)
 */

:root {
  --green: #111111;
  --green-mid: #222222;
  --green-light: #888888;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --cream: #f5f5f5;
  --cream-dark: #e8e8e8;
  --white: #ffffff;
  --text: #111111;
  --text-mid: #444444;
  --text-muted: #888888;
  --border: rgba(0,0,0,0.12);
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

/* ── TOP BAR ── */
.topbar {
  background: #000000;
  color: var(--text);
  font-size: 13px;
  padding: 9px 0;
}
.topbar-inner {
  max-width: 1200px; margin: auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: var(--gold-light); }
.topbar-items { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.topbar-item { display: flex; gap: 7px; align-items: center; }
.topbar-item svg { opacity: .7; }
.topbar-hours { color: rgba(255,255,255,0.6); font-size: 12px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background-color .3s, border-color .3s, box-shadow .3s, backdrop-filter .3s;
}
nav.scrolled { box-shadow: var(--shadow); }

/* Transparente Navigation über dem Hero – nur Startseite, nur ganz oben */
.logo-mark .logo-dark, .logo-mark .logo-light { display: flex; align-items: center; }
.logo-mark .logo-light { display: none; }
nav.nav-over-hero:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
nav.nav-over-hero:not(.scrolled) .logo-dark { display: none; }
nav.nav-over-hero:not(.scrolled) .logo-light { display: flex; }
nav.nav-over-hero:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.92); }
nav.nav-over-hero:not(.scrolled) .nav-links a:hover { color: #ffffff; background: rgba(255,255,255,0.14); }
nav.nav-over-hero:not(.scrolled) .nav-cta { background: var(--gold) !important; color: #111111 !important; }
nav.nav-over-hero:not(.scrolled) .nav-cta:hover { background: var(--gold-light) !important; color: #111111 !important; }
nav.nav-over-hero:not(.scrolled) .hamburger { color: #ffffff; }
.nav-inner {
  max-width: 1200px; margin: auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; height: 68px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { display: flex; align-items: center; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 17px; color: var(--white); line-height: 1.1; }
.logo-sub { font-size: 10px; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  padding: 8px 14px; border-radius: 8px;
  text-decoration: none; transition: all .2s;
}
.nav-links a:hover { color: #111111; background: rgba(0,0,0,0.06); }
.nav-cta {
  background: #111111 !important; color: var(--white) !important;
  padding: 10px 20px !important; border-radius: 8px !important;
  
  transition: background .2s !important;
}
.nav-cta:hover { background: #333333 !important; color: var(--white) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--text); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 200; padding: 80px 24px 40px;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 20px; font-weight: 500; color: var(--text); padding: 14px 0; border-bottom: 1px solid var(--border); text-decoration: none; }
.mobile-close { position: absolute; top: 20px; right: 24px; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text); }

/* ── HERO (Basis – Standort-/Über-uns-Seiten) ── */
.hero {
  background-color: #111111;
  background-image: linear-gradient(rgba(17,17,17,0.74), rgba(17,17,17,0.82)), url('../img/hero-bg.jpg');
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  padding: 90px 24px 80px;
  min-height: 600px; display: flex; align-items: center;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .05;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 32px 32px;
}
.hero-blob {
  position: absolute; right: -100px; top: -80px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1200px; margin: auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); font-size: 12px; font-weight: 500; letter-spacing: .06em;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; text-transform: uppercase;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero h1 { font-size: clamp(32px, 4vw, 52px); color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.hero-stats { display: flex; gap: 32px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-stat-val { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); font-weight: 700; line-height: 1; }
.hero-stat-lab { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-stat-div { width: 1px; background: rgba(255,255,255,0.15); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── HERO (Startseite – Vollbild, zentriert, Nav-Overlay) ── */
.hero-home {
  min-height: 92vh;
  padding: 0 24px;
  margin-top: -69px;   /* zieht den Hero unter die transparente Nav (Nav-Höhe) */
  background-image: linear-gradient(rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.30) 40%, rgba(17,17,17,0.82) 100%), url('../img/hero-bg.jpg');
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-home .hero-content {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  max-width: 880px; margin: 0 auto; padding-top: 96px;   /* Freiraum unter der Nav */
}
.hero-home .hero-badge { letter-spacing: .08em; margin-bottom: 26px; }
.hero-home h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.14; margin-bottom: 22px; letter-spacing: -0.01em; }
.hero-home h1 em { font-style: italic; }
.hero-home .hero-sub { font-size: 18px; color: rgba(255,255,255,0.82); margin: 0 auto 34px; max-width: 640px; }
.hero-home .hero-ctas { justify-content: center; gap: 14px; }
.hero-scroll {
  margin-top: 52px; display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.65); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; transition: color .2s;
}
.hero-scroll:hover { color: var(--gold-light); }
.hero-scroll svg { animation: heroBounce 2.2s infinite; }
@keyframes heroBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
.hero-home .hero-stats {
  position: relative; z-index: 2; width: 100%; max-width: 980px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0;
  padding: 30px 0 44px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-home .hero-stat { padding: 0 clamp(20px, 4vw, 48px); text-align: center; }
.hero-home .hero-stat-val { font-size: clamp(26px, 3vw, 34px); }
.hero-home .hero-stat-lab { color: rgba(255,255,255,0.6); margin-top: 6px; }
.hero-home .hero-stat-div { height: 40px; }

/* ── ZITAT-BAND (vor den Bewertungen) ── */
.quote-band {
  position: relative;
  background-color: #111111;
  background-image: linear-gradient(to right, rgba(17,17,17,0.94) 0%, rgba(17,17,17,0.82) 32%, rgba(17,17,17,0.45) 66%, rgba(17,17,17,0.25) 100%), url('../img/quote-bg.jpg');
  background-size: cover; background-position: center right;
}
.quote-band-inner { max-width: 1200px; margin: 0 auto; padding: 92px 24px; }
.quote-band-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(24px, 3.2vw, 38px); line-height: 1.32; color: #ffffff;
  max-width: 720px; margin: 0 0 18px;
}
.quote-band-author { color: var(--gold-light); font-size: 15px; font-weight: 500; letter-spacing: .02em; margin: 0; }
@media (max-width: 600px) {
  .quote-band {
    background-image: linear-gradient(rgba(17,17,17,0.86), rgba(17,17,17,0.86)), url('../img/quote-bg.jpg');
  }
  .quote-band-inner { padding: 58px 24px; }
}
.btn-primary {
  background: var(--gold); color: #111111;
  font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 10px; border: none;
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }
.btn-secondary {
  background: transparent; color: var(--white);
  font-weight: 500; font-size: 15px;
  padding: 14px 28px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; white-space: nowrap;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--text-muted); }

/* Hero Card */
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
}
.hero-card-title { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.hero-card h3 { font-size: 22px; color: #111111; margin-bottom: 8px; }
.hero-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.wert-form { display: flex; flex-direction: column; gap: 12px; }
.wert-select, .wert-input {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--cream);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
  appearance: none; outline: none; transition: border-color .2s;
}
.wert-select:focus, .wert-input:focus { border-color: #111111; }
.wert-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.wert-btn {
  width: 100%; padding: 14px; border-radius: 10px;
  background: #111111; color: var(--white); border: none;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.wert-btn:hover { background: var(--green-mid); }
.wert-note { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: auto; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
.section h2 { font-size: clamp(26px, 3vw, 40px); color: #111111; margin-bottom: 14px; line-height: 1.2; }
.section-sub { font-size: 16px; color: var(--text-mid); max-width: 600px; line-height: 1.7; margin-bottom: 48px; }
.alt-bg { background: var(--white); }
.dark-bg { background: #111111; }
.dark-bg .section-label { color: var(--gold-light); }
.dark-bg h2 { color: var(--white); }
.dark-bg .section-sub { color: rgba(255,255,255,0.7); }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--white); padding: 28px 24px; border-bottom: 1px solid var(--border); }
.trust-inner { max-width: 1200px; margin: auto; display: flex; justify-content: space-around; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-val { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #111111; }
.trust-lab { font-size: 12px; color: var(--text-muted); text-align: center; }
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* ── IMMOBILIEN GRID ── */
.obj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.obj-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all .3s; text-decoration: none;
}
.obj-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.obj-img {
  height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex; align-items: center; justify-content: center;
}
.obj-img-placeholder { font-size: 48px; opacity: .5; }
.obj-badge {
  position: absolute; top: 12px; left: 12px;
  background: #111111; color: var(--white);
  font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.obj-badge.sold { background: var(--text-muted); }
.obj-body { padding: 18px 20px; }
.obj-price { font-family: 'Playfair Display', serif; font-size: 20px; color: #111111; font-weight: 700; margin-bottom: 6px; }
.obj-title { font-size: 14px; color: var(--text); font-weight: 500; margin-bottom: 8px; line-height: 1.4; }
.obj-location { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.obj-specs { display: flex; gap: 16px; }
.obj-spec { font-size: 12px; color: var(--text-mid); display: flex; align-items: center; gap: 4px; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.process-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius); padding: 28px 24px; position: relative; overflow: hidden;
  transition: all .3s;
}
.process-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-3px); }
.process-num {
  font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700;
  color: rgba(201,168,76,0.25); position: absolute; top: 12px; right: 16px; line-height: 1;
}
.process-icon {
  width: 44px; height: 44px; background: rgba(201,168,76,0.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.process-card h3 { font-size: 17px; color: var(--white); margin-bottom: 10px; }
.process-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ── CUSTOMER STORIES ── */
.story-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.story-tab {
  padding: 10px 20px; border-radius: 100px;
  border: 1.5px solid var(--border); background: transparent;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  cursor: pointer; color: var(--text-mid); transition: all .2s;
}
.story-tab.active { background: #111111; color: var(--white); border-color: #111111; }
.story-panel { display: none; }
.story-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.story-visual {
  background: linear-gradient(135deg, #111111 0%, #222222 100%);
  border-radius: var(--radius-lg); padding: 40px 36px; color: var(--white);
  position: relative; overflow: hidden;
}
.story-visual::before {
  content: '"'; position: absolute; top: -20px; left: 20px;
  font-family: 'Playfair Display', serif; font-size: 160px; color: rgba(201,168,76,0.2); line-height: 1;
}
.story-quote { font-size: 18px; line-height: 1.65; color: rgba(255,255,255,.9); position: relative; z-index: 1; font-style: italic; margin-bottom: 24px; }
.story-person { display: flex; align-items: center; gap: 14px; }
.story-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 17px; color: var(--gold-light);
}
.story-name { font-weight: 600; font-size: 15px; color: var(--white); }
.story-role { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }
.story-result {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 6px; margin-top: 16px;
}
.story-content h3 { font-size: 26px; color: #111111; margin-bottom: 16px; }
.story-block { margin-bottom: 20px; }
.story-block-label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.story-block p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.review-stars { color: #f5a623; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream-dark); display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 13px; color: #111111;
}
.review-name { font-size: 13px; font-weight: 600; color: var(--text); }
.review-date { font-size: 11px; color: var(--text-muted); }
.reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.google-score { display: flex; align-items: center; gap: 16px; }
.google-score-num { font-family: 'Playfair Display', serif; font-size: 48px; color: #111111; font-weight: 700; line-height: 1; }
.google-score-detail { display: flex; flex-direction: column; }
.google-stars { color: #f5a623; font-size: 20px; letter-spacing: 2px; }
.google-count { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.google-logo { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }

/* ── REFERENZEN ── */
.ref-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ref-card {
  background: var(--cream-dark); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); position: relative;
}
.ref-img {
  height: 140px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex; align-items: center; justify-content: center; font-size: 36px; opacity: .9;
}
.ref-sold-badge {
  position: absolute; top: 10px; left: 10px;
  background: #111111; color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: .05em;
  padding: 3px 10px; border-radius: 4px; text-transform: uppercase;
}
.ref-body { padding: 14px; }
.ref-title { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.ref-loc { font-size: 11px; color: var(--text-muted); }
.ref-price { font-size: 13px; font-weight: 600; color: #111111; margin-top: 6px; }

/* ── CERTIFICATES ── */
.cert-strip {
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap; padding: 40px 0;
}
.cert-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: .7; transition: opacity .2s; cursor: default;
}
.cert-item:hover { opacity: 1; }
.cert-box {
  width: 80px; height: 80px; border-radius: 12px;
  border: 1.5px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.cert-label { font-size: 11px; color: var(--text-muted); text-align: center; max-width: 80px; line-height: 1.3; overflow-wrap: anywhere; hyphens: auto; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); text-decoration: none; transition: all .3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-img { height: 160px; background: linear-gradient(135deg, #2a2a2a, #1a1a1a); display: flex; align-items: center; justify-content: center; font-size: 40px; opacity: .9; }
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.blog-title { font-size: 16px; color: var(--text); font-weight: 600; line-height: 1.4; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.blog-read { font-size: 13px; font-weight: 600; color: #111111; display: flex; align-items: center; gap: 4px; }

/* ── FAQ ── */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500; color: var(--text);
  cursor: pointer; gap: 16px;
}
.faq-q:hover { color: #111111; }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 18px; color: var(--text-muted); transition: all .25s;
}
.faq-item.open .faq-icon { background: #111111; border-color: #111111; color: var(--white); transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 20px; }
.faq-a p { font-size: 15px; color: var(--text-mid); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── TIPPGEBER ── */
.tipp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.tipp-visual {
  background: var(--gold); border-radius: var(--radius-lg); padding: 40px;
  text-align: center;
}
.tipp-visual h3 { font-size: 32px; color: #111111; margin-bottom: 8px; }
.tipp-visual p { font-size: 15px; color: var(--green-mid); }
.tipp-steps { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.tipp-step { display: flex; gap: 16px; align-items: flex-start; }
.tipp-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: #111111; color: var(--gold); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}
.tipp-step h4 { font-size: 15px; color: #111111; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.tipp-step p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
.tipp-form-block { background: var(--cream-dark); border-radius: var(--radius); padding: 24px; margin-top: 24px; }
.tipp-form { display: flex; flex-direction: column; gap: 10px; }
.form-input {
  width: 100%; padding: 12px 16px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: #111111; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 8px; background: #111111;
  color: var(--white); border: none; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--green-mid); }

/* ── TEAM ── */
.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.team-card { flex: 0 1 340px; max-width: 360px; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); text-align: center; }
.team-avatar-wrap { background: linear-gradient(135deg, #111111 0%, #333333 100%); padding: 32px 24px 24px; }
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%; margin: auto;
  background: rgba(201,168,76,0.3); border: 3px solid rgba(201,168,76,0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold-light);
}
.team-body { padding: 20px; }
.team-name { font-size: 18px; color: #111111; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.team-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(201,168,76,0.15); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.contact-val { font-size: 16px; font-weight: 500; color: var(--white); }
.contact-val a { color: var(--gold-light); text-decoration: none; }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; }
.contact-form-card h3 { font-size: 22px; color: #111111; margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }

/* ── FOOTER ── */
footer { background: #000000; padding: 60px 24px 32px; }
.footer-inner { max-width: 1200px; margin: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 16px 0; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15); background: transparent;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  color: rgba(255,255,255,0.6); cursor: pointer; text-decoration: none;
  transition: all .2s;
}
.social-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.footer-col h4 { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: var(--radius-lg); padding: 40px; max-width: 500px; width: 100%; position: relative; animation: modalIn .3s; }
@keyframes modalIn { from { opacity:0; transform:scale(.95) translateY(10px) } }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-muted); }
.modal h3 { font-size: 24px; color: #111111; margin-bottom: 8px; }
.modal-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.progress-bar { height: 4px; background: var(--cream-dark); border-radius: 2px; margin-bottom: 28px; }
.progress-fill { height: 100%; background: var(--gold); border-radius: 2px; transition: width .4s; }
.modal-step { display: none; flex-direction: column; gap: 12px; }
.modal-step.active { display: flex; }
.modal-nav { display: flex; gap: 10px; margin-top: 8px; }
.modal-back { flex: 1; padding: 12px; border-radius: 8px; border: 1.5px solid var(--border); background: transparent; cursor: pointer; font-size: 14px; color: var(--text-mid); font-family: 'DM Sans', sans-serif; }
.modal-next { flex: 2; padding: 12px; border-radius: 8px; border: none; background: #111111; color: var(--white); cursor: pointer; font-size: 14px; font-weight: 600; font-family: 'DM Sans', sans-serif; transition: background .2s; }
.modal-next:hover { background: var(--green-mid); }
.success-screen { text-align: center; padding: 20px 0; }
.success-icon { font-size: 48px; margin-bottom: 16px; }
.success-screen h3 { font-size: 22px; color: #111111; margin-bottom: 8px; }
.success-screen p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-home { min-height: 84vh; }
  .hero-home .hero-content { padding-top: 84px; }
  .obj-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .story-panel.active { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .tipp-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-divider { display: none; }
  .nav-links { display: none; }
  .hamburger { display: block; }
}
@media (max-width: 600px) {
  .obj-grid { grid-template-columns: 1fr; }
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-home .hero-stats { padding: 24px 0 36px; }
  .hero-home .hero-stat { padding: 0 12px; }
  .hero-home .hero-stat-div { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .wert-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── STICKY MOBILE CTA ── */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--gold); padding: 14px 24px;
  text-align: center;
}
.sticky-mobile-cta a {
  color: #111; font-weight: 700; font-size: 15px;
  text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px;
}
@media(max-width:768px){
  .sticky-mobile-cta { display: block; }
  .wert-cta-box { grid-template-columns: 1fr !important; padding: 40px 24px !important; gap: 24px !important; }
  .wert-cta-btn { width: 100%; }
  .wert-cta-btn .btn-primary { width: 100%; white-space: normal !important; padding: 16px 20px !important; }
}

/* ── PROBLEMS SECTION ── */
.problems-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.problem-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  border-top: 3px solid #e0e0e0; transition: border-color .2s;
}
.problem-card:hover { border-top-color: var(--gold); }
.problem-icon { font-size: 28px; margin-bottom: 12px; }
.problem-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; font-family: 'DM Sans',sans-serif; }
.problem-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 26px 22px; transition: all .3s;
}
.service-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.service-icon { font-size: 32px; margin-bottom: 14px; }
.service-title { font-size: 16px; color: var(--white); font-weight: 600; margin-bottom: 8px; font-family: 'DM Sans',sans-serif; }
.service-text { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── STANDORTE ── */
.standorte-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.standort-group h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.standort-links { display: flex; flex-wrap: wrap; gap: 8px; }
.standort-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--white);
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; transition: all .2s;
}
.standort-link:hover { background: var(--black); color: var(--gold-light); border-color: var(--black); }
.standort-link.primary { border-color: var(--black); background: var(--black); color: var(--gold-light); }

/* ── BREADCRUMB ── */
.breadcrumb-nav {
  padding: 12px 0; display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap;
}
.breadcrumb-nav a { color: var(--gold-light); text-decoration: none; }
.breadcrumb-nav a:hover { text-decoration: underline; }

/* ── MARKT STATS ── */
.markt-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.markt-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; text-align: center;
}
.markt-val { font-family: 'Playfair Display',serif; font-size: 28px; color: var(--text); font-weight: 700; }
.markt-delta { font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 4px; margin: 6px 0 4px; display: inline-block; }
.delta-up { background: #e8f5ee; color: #2d7a4a; }
.markt-lab { font-size: 12px; color: var(--text-muted); }

@media(max-width:900px){
  .problems-grid { grid-template-columns:1fr 1fr; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .standorte-grid { grid-template-columns:1fr; }
  .markt-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:600px){
  .problems-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .markt-grid { grid-template-columns:1fr 1fr; }
}
/* ── AUTOREN-BOX (E-E-A-T, Ratgeber-/Artikel-Seiten) ── */
.author-box {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  max-width: 820px; margin: 48px auto; box-shadow: var(--shadow);
}
.author-box-img {
  width: 120px; height: 150px; object-fit: cover; object-position: 50% 20%;
  border-radius: 14px; flex-shrink: 0;
}
.author-box-label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #9a7b34; margin-bottom: 6px; }
.author-box-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text); margin-bottom: 4px; }
.author-box-role { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.45; }
.author-box-bio { font-size: 15px; color: var(--text-mid); line-height: 1.65; margin: 0 0 14px; }
.author-box-links { display: flex; gap: 18px; flex-wrap: wrap; }
.author-box-links a { font-size: 14px; font-weight: 600; color: #9a7b34; text-decoration: none; }
.author-box-links a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .author-box { flex-direction: column; align-items: center; text-align: center; padding: 24px; gap: 16px; }
  .author-box-img { width: 120px; height: 140px; }
  .author-box-links { justify-content: center; }
}

/* ── Portrait auf "Über uns" ── */
.ueber-portrait-img {
  float: right; width: 200px; height: 240px; object-fit: cover; object-position: 50% 20%;
  border-radius: 16px; margin: 4px 0 18px 28px; box-shadow: var(--shadow);
}
@media (max-width: 640px) {
  .ueber-portrait-img { float: none; display: block; width: 160px; height: 190px; margin: 0 auto 22px; }
}

/* ── QUELLEN-BOX (externe autoritative Quellen, E-E-A-T/Citability) ── */
.source-box { max-width: 820px; margin: 44px auto 0; padding: 22px 26px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); }
.source-box h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--text); margin: 0 0 6px; }
.source-box p { font-size: 13px; color: var(--text-muted); margin: 0 0 12px; }
.source-box ul { margin: 0; padding-left: 18px; }
.source-box li { font-size: 14px; line-height: 1.6; color: var(--text-mid); margin-bottom: 7px; }
.source-box a { color: #9a7b34; text-decoration: none; font-weight: 600; }
.source-box a:hover { text-decoration: underline; }

/* ══ v2.9.11 – Conversion- & Fix-Ergänzungen ══════════════════════════════════ */

/* ── "Wobei können wir helfen?" (Selbst-Segmentierung) ── */
.help-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 28px; }
.help-card {
  display: block; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px; text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.help-icon { font-size: 30px; margin-bottom: 14px; }
.help-card h3 { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--text); margin-bottom: 8px; }
.help-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.help-link { font-size: 14px; font-weight: 600; color: #9a7b34; }
@media (max-width: 900px) { .help-grid { grid-template-columns: 1fr; } }

/* ── Team-Foto statt Initialen ── */
.team-photo {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; object-position: 50% 20%;
  border: 3px solid var(--gold); box-shadow: var(--shadow);
}

/* ── Porträt im Zitat-Band ── */
.quote-band-portrait {
  width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; object-position: 50% 20%;
  border: 3px solid var(--gold); margin: 0 auto 22px; display: block;
}

/* ── FAQ-Raster (ersetzt Inline-Style, bricht mobil sauber um) ── */
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ── Sticky-CTA mobil: Anrufen + Bewertung ── */
.sticky-cta-split { display: none; padding: 0; }
.sticky-cta-split a { padding: 14px 10px; }
@media (max-width: 768px) {
  .sticky-cta-split { display: flex; }
  .sticky-cta-call { flex: 1; background: var(--black); color: var(--white) !important; }
  .sticky-cta-wert { flex: 1.6; }
}

/* ══ v2.10.0 – Immobilien-Exposé ═════════════════════════════════════════════ */
.ex-hero{position:relative;min-height:520px;display:flex;align-items:flex-end;background:var(--black)}
.ex-hero-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.ex-hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.15) 30%,rgba(0,0,0,.72) 100%)}
.ex-hero-content{position:relative;z-index:2;max-width:1140px;margin:0 auto;width:100%;padding:60px 24px 44px;color:var(--white)}
.ex-hero-content h1{font-family:'Playfair Display',serif;font-size:clamp(30px,4.6vw,52px);line-height:1.12;margin:12px 0 8px;color:var(--white)}
.ex-badge{display:inline-block;background:var(--gold);color:#231a05;font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:7px 14px;border-radius:100px}
.ex-badge-sold{background:#8a8a8a;color:#fff}
.ex-ort{font-size:16px;opacity:.92;margin:0 0 6px}
.ex-preis{font-family:'Playfair Display',serif;font-size:clamp(24px,3vw,34px);color:var(--gold);margin:4px 0 0;font-weight:700}
.ex-facts{background:var(--white);border-bottom:1px solid var(--border)}
.ex-facts-inner{max-width:1140px;margin:0 auto;padding:22px 24px;display:flex;flex-wrap:wrap;gap:14px 44px}
.ex-fact{display:flex;flex-direction:column}
.ex-fact-val{font-family:'Playfair Display',serif;font-size:22px;color:var(--text);font-weight:700}
.ex-fact-lab{font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--text-mid)}
.ex-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:26px}
.ex-gal-item{display:block;border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3;background:#eee}
.ex-gal-item img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.ex-gal-item:hover img{transform:scale(1.04)}
.ex-gallery .ex-gal-item:first-child{grid-column:span 2;grid-row:span 2}
.ex-content{max-width:820px}
.ex-content p{font-size:16px;line-height:1.8;color:var(--text-mid);margin:0 0 18px}
.ex-content h2,.ex-content h3{font-family:'Playfair Display',serif;color:var(--text);margin:30px 0 12px}
.ex-content img{max-width:100%;height:auto;border-radius:var(--radius-lg);margin:10px 0}
.ex-two-col{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start}
.ex-checklist{list-style:none;padding:0;margin:18px 0 0;columns:1}
.ex-checklist li{font-size:15px;color:var(--text-mid);padding:7px 0;border-bottom:1px dashed var(--border)}
.ex-legal-box{background:var(--cream);border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px 32px}
.ex-legal-box h3{font-family:'Playfair Display',serif;font-size:20px;margin:0 0 14px}
.ex-dl{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:12px 28px;margin:0}
.ex-dl dt{font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:var(--text-mid)}
.ex-dl dd{margin:2px 0 0;font-size:15.5px;font-weight:600;color:var(--text)}
.ex-prov{margin:16px 0 0;font-size:14.5px;color:var(--text-mid)}
#ex-lightbox{position:fixed;inset:0;background:rgba(10,10,10,.94);z-index:9999;display:none;align-items:center;justify-content:center}
#ex-lightbox.open{display:flex}
#ex-lightbox img{max-width:92vw;max-height:88vh;border-radius:6px}
#ex-lightbox button{position:absolute;background:none;border:none;color:#fff;font-size:44px;cursor:pointer;padding:10px 18px;line-height:1}
#ex-lb-prev{left:8px;top:50%;transform:translateY(-50%)}
#ex-lb-next{right:8px;top:50%;transform:translateY(-50%)}
#ex-lb-close{right:10px;top:8px;font-size:34px}
@media(max-width:900px){
  .ex-gallery{grid-template-columns:repeat(2,1fr)}
  .ex-gallery .ex-gal-item:first-child{grid-column:span 2;grid-row:span 1}
  .ex-two-col{grid-template-columns:1fr;gap:32px}
  .ex-hero{min-height:420px}
}

/* ── Widerruf-Button (§ 356a) im Footer ── */
.footer-widerruf-btn{
  display:inline-block;border:1.5px solid rgba(255,255,255,.35);
  border-radius:8px;padding:6px 14px !important;font-weight:600;
  transition:border-color .2s,background .2s;
}
.footer-widerruf-btn:hover{border-color:var(--gold);background:rgba(255,255,255,.06)}
