/* ═══════════════════════════════════════════════════════════════════
   Suisse Homes – Immobilienbewertung Landingpage
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Fonts (lokal, DSGVO-konform) ─── */
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/mulish-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/mulish-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/mulish-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/mulish-800.woff2') format('woff2');
}

/* ─── Design Tokens ─── */
:root {
  --red:        #B31715;
  --red-dark:   #8F1210;
  --red-tint:   #FBEEED;
  --gold:       #C4A87A;
  --cream:      #F9F6F1;
  --sand:       #F1EBE1;
  --ink:        #1C1B1A;
  --gray:       #55504B;
  --gray-light: #8A857F;
  --line:       #E7E1D7;
  --white:      #FFFFFF;
  --green:      #2E7D4F;

  --font: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius:     0;
  --radius-sm:  0;
  --shadow:     0 1px 2px rgba(28, 27, 26, .05), 0 8px 28px rgba(28, 27, 26, .07);
  --shadow-lg:  0 2px 4px rgba(28, 27, 26, .05), 0 24px 60px rgba(28, 27, 26, .13);
  --container:  1160px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { line-height: 1.12; font-weight: 800; letter-spacing: -.022em; }

h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.15rem; letter-spacing: -.01em; }

a { color: var(--red); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }
.center { text-align: center; margin-top: 44px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 17px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
  letter-spacing: .005em;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 1px 2px rgba(143, 18, 16, .4), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.btn-primary:hover { background: var(--red-dark); }

.btn-light { background: var(--white); color: var(--red); }
.btn-light:hover { background: var(--cream); }

.btn-ghost { background: transparent; color: var(--gray); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gray-light); color: var(--ink); }

.btn-lg { padding: 19px 36px; font-size: 1.05rem; }
.btn-sm { padding: 13px 22px; font-size: .94rem; }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(249, 246, 241, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-logo img { width: 116px; height: auto; }
.header-actions { display: flex; align-items: center; gap: 24px; }

/* ─── Eyebrow ─── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
}
.section-head .section-eyebrow::after {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold);
}

/* ─── Hero (hell) ─── */
.hero {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249, 246, 241, .97) 0%, rgba(249, 246, 241, .9) 34%, rgba(249, 246, 241, .45) 62%, rgba(249, 246, 241, .08) 100%),
    linear-gradient(0deg, rgba(249, 246, 241, .55) 0%, rgba(249, 246, 241, 0) 36%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 108px;
  padding-bottom: 116px;
}
.hero h1 {
  max-width: 13em;
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  margin: 26px 0 34px;
  font-size: 1.18rem;
  color: var(--gray);
  max-width: 28em;
}

.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 38px; }

.btn-outline-light {
  background: rgba(255, 255, 255, .55);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline-light:hover { border-color: var(--gray-light); background: var(--white); }

.hero-checks { list-style: none; display: flex; gap: 28px; flex-wrap: wrap; }
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: .93rem;
  color: var(--ink);
}
.hero-checks svg { color: var(--green); flex-shrink: 0; }

.hero-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(8px);
}
.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
}
.hero-stat span { font-size: .84rem; color: var(--gray-light); font-weight: 600; }
.stars { color: var(--gold); letter-spacing: 3px; font-size: .95rem; }
.hero-stat strong.stars { font-size: 1.05rem; line-height: 1.9; color: var(--gold); }

/* ─── Trustbar ─── */
.trustbar { background: var(--white); border-block: 1px solid var(--line); padding: 34px 0; }
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item svg { color: var(--red); flex-shrink: 0; }
.trust-item strong { display: block; font-size: .97rem; font-weight: 800; letter-spacing: -.01em; }
.trust-item span { font-size: .86rem; color: var(--gray-light); }

/* ─── Sections ─── */
section { scroll-margin-top: 80px; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 52px; }
.section-head p { margin-top: 14px; color: var(--gray); font-size: 1.08rem; }

/* ─── Formular ─── */
.form-section { padding: 92px 0; }
.form-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  border-top: none;
  padding: 42px 48px 36px;
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #D5423F 60%, var(--gold));
}

.form-progress { margin-bottom: 34px; }
.form-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 10px;
}
#progressStep { color: var(--gray-light); }
#progressTitle { color: var(--red); text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }
.form-progress-track { height: 5px; background: var(--sand); overflow: hidden; }
.form-progress-bar { height: 100%; background: var(--red); transition: width .35s ease; }

.form-step { display: none; border: 0; }
.form-step.is-active { display: block; animation: stepIn .28s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }

.step-question {
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  display: block;
  width: 100%;
}
.step-hint { color: var(--gray-light); font-size: .95rem; margin-bottom: 24px; }

/* ── Adress-Autocomplete ── */
.address-wrap { position: relative; }
.address-input-row { position: relative; }
.address-input-row > svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-light);
  pointer-events: none;
}
#adresse_suche {
  width: 100%;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 19px 20px 19px 52px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
#adresse_suche:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(179, 23, 21, .1);
}
#adresse_suche::placeholder { color: var(--gray-light); font-weight: 400; }

.ac-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  list-style: none;
  z-index: 1200;
  max-height: 290px;
  overflow-y: auto;
}

/* Lade-Spinner in der Adresssuche */
.address-input-row.is-loading::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: 2px solid var(--line);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: acSpin .7s linear infinite;
}
@keyframes acSpin { to { transform: rotate(360deg); } }
.ac-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  font-size: .99rem;
  border-bottom: 1px solid #F2EDE5;
}
.ac-list li:last-child { border-bottom: 0; }
.ac-list li svg { color: var(--gray-light); flex-shrink: 0; }
.ac-list li b { font-weight: 800; }
.ac-list li:hover, .ac-list li.is-focused { background: var(--red-tint); }
.ac-list li.is-focused svg, .ac-list li:hover svg { color: var(--red); }
.ac-empty { padding: 14px 18px; color: var(--gray-light); font-size: .95rem; }

/* ── Parzellen-Schritt ── */
.parcel-map {
  height: 340px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--sand);
  position: relative;
  z-index: 1;
}
.parcel-info {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.parcel-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 9px 16px;
  font-size: .88rem;
  font-weight: 700;
}
.parcel-chip svg { color: var(--red); flex-shrink: 0; }
.parcel-chip span { color: var(--gray-light); font-weight: 600; }
.parcel-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: .88rem;
  color: var(--gray-light);
}
.parcel-note svg { color: var(--gold); flex-shrink: 0; }

/* Leaflet-Feinschliff */
.leaflet-container { font-family: var(--font); }
.leaflet-control-attribution { font-size: .65rem; background: rgba(255,255,255,.75) !important; }
.leaflet-bar, .leaflet-bar a, .leaflet-control { border-radius: 0 !important; }

/* ── Typ-Karten ── */
.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 14px;
}
.type-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 26px 12px 20px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  font-size: .94rem;
  color: var(--gray);
  transition: border-color .15s, background .15s, color .15s, transform .15s, box-shadow .15s;
  background: var(--white);
}
.type-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.type-card svg { color: var(--gray-light); transition: color .15s; }
.type-card input { position: absolute; opacity: 0; pointer-events: none; }
.type-card:has(input:checked) {
  border-color: var(--red);
  background: var(--red-tint);
  color: var(--ink);
}
.type-card:has(input:checked) svg { color: var(--red); }
.type-card:has(input:focus-visible) { outline: 3px solid rgba(179,23,21,.35); outline-offset: 2px; }

/* ── Felder ── */
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .92rem; }
.field .optional { font-weight: 400; color: var(--gray-light); font-size: .85rem; }
.field input, .field select {
  font: inherit;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  width: 100%;
  transition: border-color .15s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(179, 23, 21, .1);
}
.field input.is-invalid, .field select.is-invalid { border-color: var(--red); background: var(--red-tint); }

.field-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--gray-light);
  font-weight: 600;
}
.field-note svg { color: var(--green); flex-shrink: 0; }

/* Spinner-Pfeile der Zahlenfelder ausblenden */
.field input[type="number"]::-webkit-inner-spin-button,
.field input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.field input[type="number"] { -moz-appearance: textfield; appearance: textfield; }

/* ── Plan-Karten ── */
.plan-list { display: grid; gap: 14px; }
.plan-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  background: var(--white);
}
.plan-card:hover { border-color: var(--gold); }
.plan-card input { position: absolute; opacity: 0; pointer-events: none; }
.plan-radio {
  width: 22px; height: 22px;
  border: 2px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color .15s;
}
.plan-card:has(input:checked) { border-color: var(--red); background: var(--red-tint); }
.plan-card:has(input:checked) .plan-radio { border-color: var(--red); }
.plan-card:has(input:checked) .plan-radio::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--red);
}
.plan-card:has(input:focus-visible) { outline: 3px solid rgba(179,23,21,.35); outline-offset: 2px; }
.plan-text strong { display: block; font-size: 1rem; font-weight: 800; letter-spacing: -.01em; }
.plan-text span { font-size: .88rem; color: var(--gray-light); }

/* Zusammenfassung im Kontakt-Schritt */
.step-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: .93rem;
  color: var(--gray);
}
.step-summary svg { color: var(--red); flex-shrink: 0; }
.step-summary strong { color: var(--ink); font-weight: 700; }

/* Honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Consent */
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  font-size: .9rem;
  color: var(--gray);
  cursor: pointer;
}
.consent input { margin-top: 4px; width: 17px; height: 17px; accent-color: var(--red); flex-shrink: 0; }

/* Navigation & Feedback */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.form-nav .btn-primary { margin-left: auto; }

.step-error {
  margin-top: 16px;
  color: var(--red);
  font-size: .92rem;
  font-weight: 700;
}
.form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  font-size: .82rem;
  color: var(--gray-light);
}
.form-feedback { margin-top: 18px; text-align: center; font-weight: 700; }
.form-feedback.is-error { color: var(--red); }

.btn[disabled] { opacity: .6; cursor: wait; }

/* ─── USP: Bewertungstool ─── */
.usp { padding: 92px 0; background: var(--white); border-block: 1px solid var(--line); }
.usp-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.usp-card {
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  position: relative;
}
.usp-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #D5423F 60%, var(--gold));
}
.usp-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 6px 4px 14px;
}
.usp-card-step {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
}
.usp-card-check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
}
.usp-map { display: block; width: 100%; height: auto; border: 1px solid var(--line); }
.usp-chips { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 14px; }
.usp-chips .parcel-chip { background: var(--white); }

.usp-list { list-style: none; display: grid; gap: 30px; }
.usp-list li { display: flex; gap: 18px; align-items: flex-start; }
.usp-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--red-tint);
  border: 1px solid var(--line);
  color: var(--red);
}
.usp-list h3 { margin-bottom: 6px; }
.usp-list p { font-size: .96rem; color: var(--gray); }

/* ─── Prozess ─── */
.process { padding: 92px 0; background: var(--white); border-block: 1px solid var(--line); }
.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  border: 1px solid var(--line);
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: var(--red);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.process-card h3 { margin-bottom: 10px; }
.process-card p { font-size: .95rem; color: var(--gray); }

/* ─── Vergleich ─── */
.compare { padding: 92px 0; }
.compare-table-wrap { max-width: 860px; margin: 0 auto; overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.compare-table th, .compare-table td {
  padding: 17px 22px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: .97rem;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table thead th {
  background: var(--sand);
  font-weight: 800;
  font-size: .98rem;
  letter-spacing: -.01em;
}
.compare-table thead th span { display: block; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: 0; }
.compare-table tbody th { text-align: left; font-weight: 600; color: var(--gray); }
.compare-table thead th.col-highlight { background: var(--red); color: var(--white); }
.compare-table tbody td.col-highlight { background: var(--red-tint); }
.mark-yes { color: var(--green); font-weight: 800; font-size: 1.15rem; }
.mark-no { color: var(--gray-light); font-weight: 800; font-size: 1.05rem; }
.compare-table tbody td.col-highlight .mark-yes { color: var(--red); }

/* ─── Über uns ─── */
.about { padding: 92px 0; background: var(--white); border-block: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-copy .section-eyebrow { margin-bottom: 12px; }
.about-copy h2 { margin-bottom: 16px; }
.about-copy > p { color: var(--gray); margin-bottom: 32px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  margin-bottom: 36px;
}
.stat { border-left: 3px solid var(--gold); padding-left: 18px; }
.stat-num {
  display: block;
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.stat-label { font-size: .89rem; color: var(--gray-light); font-weight: 600; }

/* ─── FAQ ─── */
.faq { padding: 92px 0; }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 54px 20px 24px;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 1.01rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--red);
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 24px 22px; color: var(--gray); font-size: .98rem; }

/* ─── Finaler CTA ─── */
.final-cta {
  background: linear-gradient(135deg, var(--red) 0%, #8F1210 100%);
  color: var(--white);
  padding: 84px 0;
  text-align: center;
}
.final-cta h2 { margin-bottom: 12px; }
.final-cta p { opacity: .88; margin-bottom: 32px; font-size: 1.1rem; }

/* ─── Footer (hell) ─── */
.site-footer { background: var(--white); color: var(--gray); border-top: 1px solid var(--line); padding: 64px 0 0; font-size: .93rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr .9fr;
  gap: 44px;
  padding-bottom: 48px;
}
.footer-brand img { width: 140px; margin-bottom: 18px; }
.footer-brand p { max-width: 30em; }
.footer-col h3 {
  color: var(--ink);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 16px;
  font-weight: 800;
}
.footer-col address { font-style: normal; line-height: 1.8; }
.site-footer a { color: var(--gray); text-decoration: none; }
.site-footer a:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid var(--line);
  font-size: .85rem;
}
.footer-bottom nav { display: flex; gap: 24px; }

/* ─── Rechtsseiten ─── */
.legal-page { padding: 72px 0 88px; }
.legal-page .container { max-width: 780px; }
.legal-page h1 { margin-bottom: 34px; }
.legal-page h2 { font-size: 1.3rem; margin: 38px 0 12px; }
.legal-page h3 { margin: 26px 0 8px; }
.legal-page p, .legal-page ul { margin-bottom: 14px; color: var(--gray); }
.legal-page ul { padding-left: 22px; }

/* ─── Danke-Seite ─── */
.thanks { min-height: 60vh; display: grid; place-items: center; padding: 88px 0; text-align: center; }
.thanks-icon {
  width: 84px; height: 84px;
  border: 1px solid var(--line);
  background: var(--red-tint);
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  color: var(--red);
}
.thanks h1 { margin-bottom: 16px; }
.thanks p { color: var(--gray); max-width: 34em; margin: 0 auto 30px; font-size: 1.1rem; }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .hero-inner { padding-top: 88px; padding-bottom: 96px; }
  .hero-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
  .trustbar-inner { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr; gap: 44px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .hero-inner { padding-top: 64px; padding-bottom: 72px; }
  .hero-cta-row .btn { flex: 1 1 100%; }
  .hero-checks { flex-direction: column; gap: 12px; }
  .trustbar-inner { grid-template-columns: 1fr; gap: 18px; }
  .form-card { padding: 28px 20px 26px; }
  .field-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 18px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-nav { flex-wrap: wrap; }
  .form-nav .btn { flex: 1 1 auto; }
  .parcel-map { height: 260px; }
  #adresse_suche { font-size: 1rem; padding: 17px 16px 17px 48px; }
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
