/* ============================================================
   Veit Neises Immobilien – Landingpage
   Modernes, hochwertiges Design · Mobile-first
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }

:root {
  /* Privates Ankaufskontor: Kalkstein-Papier · tiefes Ink · Patina-Grün · Messing */
  --anthrazit: #14120d;       /* warmes Near-Black (Footer) */
  --dunkelblau: #1a1e1b;      /* Ink: Headings, Dunkelflächen, Primär, Funnel-Leiste */
  --dunkelblau-dark: #0f1210;
  --weiss: #ffffff;
  --offwhite: #f7f3ea;        /* Kalkstein-Papier (helle Sektionen) */
  --sand: #efe9dc;
  --sand-dark: #e2dac9;
  --gold: #2f6f5d;            /* Patina-Grün – DER eine Akzent (CTA, Kicker, Checks) */
  --gold-dark: #25584a;
  --gold-soft: #dfeae4;       /* Patina-Tint */
  --brass: #9c7a3e;           /* Messing – nur Haarlinien / Marker, sehr sparsam */
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  /* Funnel-Akzente */
  --bf-green: #1a1e1b;        /* Leiste / Auswahl = Ink */
  --bf-green-d: #0f1210;
  --bf-blue: #2f6f5d;         /* Wert-Bubble am Slider = Patina */
  --text: #20251f;
  --text-light: #5b635b;
  --muted: #5b635b;
  --border: #ddd5c4;
  --error: #c0392b;
  --radius: 14px;
  --radius-sm: 10px;
  /* Mehrlagige, weiche Schatten (Refactoring-UI-Stil) */
  --shadow-sm: 0 1px 2px rgba(16,28,45,0.04), 0 2px 8px rgba(16,28,45,0.05);
  --shadow-md: 0 4px 12px rgba(16,28,45,0.06), 0 14px 32px rgba(16,28,45,0.10);
  --shadow-lg: 0 8px 24px rgba(15,28,45,0.10), 0 32px 64px rgba(15,28,45,0.20);
  --ring: 0 0 0 3px rgba(31,58,95,0.16);
  --maxw: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--weiss);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(201,162,75,0.28); color: var(--anthrazit); }

/* Sichtbare, dezente Fokus-Ringe für Tastatur-Navigation (Barrierefreiheit = Pro) */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible,
.bf-choice:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 8px;
}

h1, h2, h3 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  color: var(--dunkelblau);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 5vw, 3.05rem); }
h2 { font-size: clamp(1.55rem, 3.3vw, 2.25rem); margin-bottom: 0.6rem; }
h3 { font-size: 1.16rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; }
a { color: var(--dunkelblau); text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 780px; }
.center { text-align: center; }

.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.kicker::before { content: "— "; color: var(--brass); }

.lead { font-size: 1.12rem; color: var(--muted); }

.section { padding: 80px 0; }
.section-alt { background: var(--offwhite); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, transform .12s, box-shadow .2s, border-color .2s;
  text-align: center;
  font-family: inherit;
}
.btn-primary {
  background: var(--dunkelblau);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--dunkelblau-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 18px rgba(47,111,93,0.30);
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(47,111,93,0.38); }
.btn-ghost { background: transparent; color: var(--muted); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--dunkelblau); color: var(--dunkelblau); }
.btn-large { padding: 16px 38px; font-size: 1.06rem; }
.btn-block { width: 100%; }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-sm); }

/* ============ HEADER ============ */
.site-header {
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border); background: rgba(255,255,255,0.96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 12px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.16rem; color: var(--dunkelblau); }
.logo-sub { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-dark); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; align-items: center; gap: 7px; font-weight: 600; color: var(--anthrazit); }
.header-phone:hover { color: var(--dunkelblau); }
.phone-icon { color: var(--gold-dark); }
.header-btn { padding: 10px 20px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  /* SAARSCHLEIFE-BILD: hier Pfad ändern */
  background-image: url('assets/saarschleife.jpg');
  background-size: cover;
  background-position: center 38%;
  background-color: var(--dunkelblau-dark);
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 80px 0 90px;
}
.hero-overlay {
  position: absolute; inset: 0;
  /* Klares, professionelles Overlay: gleichmäßige Abdunklung + Verlauf für Lesbarkeit,
     unten dunkler für den weichen Übergang zur Funnel-Karte */
  background:
    linear-gradient(180deg, rgba(15,27,43,0.55) 0%, rgba(15,27,43,0.45) 50%, rgba(15,27,43,0.78) 100%);
}
.hero-overlay::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(15,27,43,0.12);
}
.hero-inner {
  position: relative; z-index: 2;
  color: #fff; text-align: center; max-width: 760px; margin: 0 auto;
  text-shadow: 0 2px 18px rgba(8,16,28,0.45);
}
.hero-inner h1 { color: #fff; margin-bottom: 18px; text-wrap: balance; }
.hero-text { color: #fff; }
.hero-eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.74rem;
  color: #d7e3dc; font-weight: 500; margin-bottom: 18px;
}
.hero-eyebrow::before { content: "❖ "; color: var(--gold); }
.hero-text h1 { color: #fff; margin-bottom: 18px; text-wrap: balance; }
.hero-subline { font-size: 1.18rem; color: #eef1f5; margin: 0 auto 28px; max-width: 600px; }
.hero-microcopy { margin: 16px 0 0; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.03em; color: #cdd8d1; }

.usp-list { list-style: none; margin-bottom: 30px; }
.usp-list li { display: flex; align-items: flex-start; gap: 11px; color: #f1f4f8; margin-bottom: 13px; font-weight: 500; }

/* USPs als zentrierte Reihe im Hero */
.usp-inline {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
  margin-bottom: 32px;
}
.usp-inline li { margin-bottom: 0; align-items: center; }

/* Scroll-Hinweis (Chevron) */
.hero-scroll {
  display: block; width: 42px; height: 42px; line-height: 42px; margin: 36px auto 0;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.45); color: #fff;
  font-size: 1.2rem; text-align: center; text-shadow: none;
  animation: heroBounce 1.8s ease-in-out infinite;
}
.hero-scroll:hover { background: rgba(255,255,255,0.14); }
@keyframes heroBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.usp-check {
  flex-shrink: 0; width: 23px; height: 23px; border-radius: 50%;
  background: var(--gold); color: #2a2207; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; margin-top: 1px;
}

.hero-cta { margin-bottom: 30px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; border-top: 1px solid rgba(255,255,255,0.18); padding-top: 22px; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { color: #fff; font-size: 0.98rem; }
.trust-item span { color: #c5cdd9; font-size: 0.84rem; }

/* ============ FUNNEL-BLOCK (unter dem Hero) ============ */
.funnel-section {
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  padding: 0 0 64px;
  scroll-margin-top: 76px;
}
/* Karte greift nach oben in den Hero über */
.funnel-section .container { position: relative; }
.funnel-card {
  position: relative; z-index: 5;
  background: #fff; border-radius: 16px; padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
  max-width: 640px; margin: -64px auto 0;
}
.funnel-head { margin-bottom: 18px; }
.funnel-badge {
  display: inline-block; background: var(--gold-soft); color: var(--gold-dark);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 99px; margin-bottom: 10px;
}
.funnel-headline { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.28rem; color: var(--dunkelblau); font-weight: 600; margin: 0; }
.funnel-subline { font-size: 0.92rem; color: var(--muted); margin: 8px 0 0; }

.funnel-progress { margin-bottom: 22px; }
.funnel-progress-bar { height: 8px; background: var(--sand-dark); border-radius: 99px; overflow: hidden; }
.funnel-progress-bar span { display: block; height: 100%; width: 16%; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); border-radius: 99px; transition: width .4s cubic-bezier(.4,0,.2,1); }
.funnel-progress-text { font-size: 0.84rem; color: var(--muted); margin: 9px 0 0; }

.fstep { animation: fadeStep .35s ease; }
@keyframes fadeStep { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
.fstep-title { font-size: 1.34rem; margin-bottom: 6px; }
.fstep-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.fstep-nav { display: flex; gap: 12px; margin-top: 20px; }
.fstep-nav .btn-primary, .fstep-nav .btn-gold { flex: 1; }

/* Auswahl-Kacheln */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice {
  position: relative;
  padding: 18px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; color: var(--text); font-size: 0.98rem; font-weight: 600; font-family: inherit;
  cursor: pointer; text-align: center; transition: border-color .15s, background .15s, transform .1s, box-shadow .15s;
}
.choice:hover { border-color: var(--gold); background: #fffdf7; box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.choice.selected { border-color: var(--dunkelblau); background: var(--dunkelblau); color: #fff; }
.choice.selected::after {
  content: "✓"; position: absolute; top: 8px; right: 10px; font-size: 0.8rem;
  color: var(--gold); font-weight: 800;
}
.choice-wide { grid-column: 1 / -1; }
.choice:active { transform: translateY(0); }

.funnel-note { font-size: 0.82rem; color: var(--muted); text-align: center; margin: 14px 0 0; }

/* Optionale Angaben */
.optional-details { margin-bottom: 6px; border-top: 1px dashed var(--border); padding-top: 8px; }
.optional-details summary { cursor: pointer; font-size: 0.9rem; color: var(--dunkelblau); font-weight: 600; padding: 8px 0; list-style: none; }
.optional-details summary::-webkit-details-marker { display: none; }
.optional-details summary::before { content: "+ "; color: var(--gold-dark); font-weight: 800; }
.optional-details[open] summary::before { content: "– "; }

/* Erfolg */
.funnel-success { text-align: center; padding: 14px 0; }
.success-icon { width: 66px; height: 66px; margin: 0 auto 16px; border-radius: 50%; background: #e7f5ec; color: #2e8b4f; font-size: 2rem; display: flex; align-items: center; justify-content: center; }
.success-phone { margin-top: 14px; color: var(--muted); }
.success-phone a { color: var(--dunkelblau); font-weight: 700; }

/* ============ FORMFELDER ============ */
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.form-group { margin-bottom: 16px; }
label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; color: var(--anthrazit); }
input, select, textarea {
  width: 100%; padding: 12px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: inherit; background: #fff; color: var(--text); transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--dunkelblau); box-shadow: 0 0 0 3px rgba(31,58,95,0.12); }
input.input-error, select.input-error { border-color: var(--error); box-shadow: 0 0 0 3px rgba(192,57,43,0.10); }
.error-msg { display: block; color: var(--error); font-size: 0.82rem; margin-top: 5px; }
.checkbox-group { margin-top: 8px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; font-size: 0.88rem; cursor: pointer; color: var(--muted); }
.checkbox-label input { width: auto; margin-top: 3px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }
.form-error-message { margin: 14px 0 0; padding: 13px 16px; background: #fcecea; border: 1px solid #f0c4bf; border-left: 4px solid var(--error); border-radius: var(--radius-sm); color: #8c2820; font-weight: 500; font-size: 0.92rem; }

/* ============ COOKIE-CONSENT-BANNER ============ */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 400;
  max-width: 680px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 20px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px;
}
.cookie-banner p { margin: 0; flex: 1 1 280px; font-size: 0.9rem; color: var(--muted); }
.cookie-banner a { color: var(--dunkelblau); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 11px 20px; }
@media (max-width: 600px) {
  .cookie-banner { bottom: 84px; } /* über der mobilen CTA-Leiste */
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* ============ BAULIG-STIL FUNNEL ============ */
.bf-section { background: var(--offwhite); border-bottom: 1px solid var(--border); padding: 54px 0 74px; scroll-margin-top: 72px; }
.bf-wrap { max-width: 720px; }
.bf-intro { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 26px; font-size: 0.98rem; }
.bf-intro strong { color: var(--text); }

.bf-card { background: #fff; border-radius: 12px; box-shadow: var(--shadow-md); overflow: hidden; }
.bf-body { padding: 40px 34px 32px; min-height: 240px; display: flex; flex-direction: column; justify-content: center; }
.bf-q { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.42rem; font-weight: 600; color: #2f343b; text-align: center; line-height: 1.3; margin: 0 0 8px; letter-spacing: -0.01em; }
.bf-q b { font-weight: 800; }
.bf-sub { text-align: center; color: var(--muted); font-size: 0.95rem; margin: 0 0 22px; }

/* Eingaben */
.bf-input { width: 100%; padding: 13px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 1.05rem; font-family: inherit; background: #fff; color: var(--text); transition: border-color .2s, box-shadow .2s; }
.bf-input:focus { outline: none; border-color: var(--dunkelblau); box-shadow: 0 0 0 3px rgba(31,58,95,.15); }
.bf-hint { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 6px; }
.bf-req { color: var(--error); }
.bf-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; font-size: 0.86rem; color: var(--muted); text-align: left; cursor: pointer; }
.bf-check input { width: auto; margin-top: 3px; flex-shrink: 0; }
.bf-check a { color: var(--dunkelblau); text-decoration: underline; }
.bf-row { display: flex; gap: 14px; }
.bf-row > div { flex: 1; }

/* Slider mit Wert-Bubble */
.bf-slider-field { padding: 6px 4px 4px; }
.bf-slider { position: relative; padding-top: 44px; }
.bf-slider input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 99px; background: var(--sand-dark); outline: none; margin: 0; }
.bf-slider input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 2px solid var(--bf-green); box-shadow: var(--shadow-sm); cursor: pointer; }
.bf-slider input[type=range]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 2px solid var(--bf-green); cursor: pointer; }
.bf-bubble { position: absolute; top: 4px; left: 4%; transform: translateX(-50%); background: var(--bf-blue); color: #2a2207; font-weight: 700; font-size: 0.9rem; padding: 5px 11px; border-radius: 6px; white-space: nowrap; }
.bf-bubble::after { content: ""; position: absolute; left: 50%; bottom: -5px; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--bf-blue); border-bottom: 0; }
.bf-scale { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); margin-top: 12px; }

/* Auswahl-Kacheln */
.bf-choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bf-choices-4 { grid-template-columns: repeat(4, 1fr); }
.bf-choice { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 12px 16px; background: #fff; border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer; font-family: inherit; transition: border-color .15s, background .15s, box-shadow .15s; }
.bf-choice:hover { border-color: var(--bf-green); background: #f5f8fc; }
.bf-choice.selected { border-color: var(--bf-green); background: #eef3f9; box-shadow: inset 0 0 0 1px var(--bf-green); }
.bf-radio { position: absolute; top: 10px; left: 10px; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid #c3c8d0; background: #fff; }
.bf-choice.selected .bf-radio { border-color: var(--bf-green); background: radial-gradient(circle, var(--bf-green) 0 4px, #fff 5px); }
.bf-ic { width: 42px; height: 42px; color: #3a3f47; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bf-choice-label { font-size: 0.92rem; font-weight: 600; color: #3a3f47; text-align: center; }
.bf-stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; height: 42px; display: flex; align-items: center; }

/* Grüne Navigationsleiste */
.bf-nav { display: flex; }
.bf-btn { flex: 1; border: none; cursor: pointer; font-family: inherit; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 0.9rem; color: #fff; padding: 18px 22px; background: var(--bf-green); transition: background .15s; display: flex; align-items: center; justify-content: center; gap: 9px; }
.bf-back { justify-content: flex-start; border-right: 1px solid rgba(255,255,255,.22); }
.bf-back:hover { background: var(--bf-green-d); }
.bf-next, .bf-submit { justify-content: flex-end; }
.bf-next:hover, .bf-submit:hover { background: var(--bf-green-d); }
.bf-submit { background: var(--bf-green-d); }
.bf-btn[aria-busy="true"] { opacity: .7; pointer-events: none; }
.bf-arrow { font-size: 1.15em; line-height: 1; }

/* Fortschritt (Punkte) */
.bf-progress { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 26px; }
.bf-dots { display: flex; align-items: center; width: 100%; max-width: 520px; }
.bf-dot { width: 8px; height: 8px; border-radius: 50%; background: #2b2f36; flex-shrink: 0; transition: background .2s; }
.bf-dot.done { background: var(--bf-green); }
.bf-dot.current { width: 16px; height: 16px; background: #fff; border: 2px solid #2b2f36; }
.bf-dot-line { flex: 1; height: 2px; background: #2b2f36; opacity: .55; }
.bf-count { background: #eceae3; color: var(--muted); font-family: var(--font-mono); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; padding: 7px 16px; border-radius: 6px; }

/* Erfolg */
.bf-success { text-align: center; padding: 48px 30px; }
.bf-success-icon svg { width: 64px; height: 64px; }
.bf-success-title { font-size: 1.5rem; color: #2f343b; margin: 16px 0 10px; }
.bf-success p { color: var(--muted); margin-bottom: .6rem; }
.bf-success .success-phone a { color: var(--dunkelblau); font-weight: 700; }

@media (max-width: 560px) {
  .bf-body { padding: 30px 20px 26px; }
  .bf-q { font-size: 1.22rem; }
  .bf-choices, .bf-choices-4 { grid-template-columns: 1fr 1fr; }
  .bf-row { flex-direction: column; gap: 0; }
  .bf-btn { padding: 16px 16px; font-size: 0.82rem; }
}

/* ============ TRUST-STRIP ============ */
.trust-strip { background: var(--dunkelblau-dark); color: #cdd6e2; }
.trust-strip-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; padding: 16px 22px; font-size: 0.9rem; font-weight: 500; }
.trust-strip .dot { color: var(--gold); }

/* ============ FAKTOREN ============ */
.factor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; margin-top: 40px; text-align: left; }
.factor-card { background: #fff; border: 1px solid var(--border); padding: 26px; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.factor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.factor-ic { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-dark); font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
.factor-card p { margin-bottom: 0; color: var(--muted); }

/* ============ ANKAUFPROFIL-CHECKLISTE ============ */
.profile-list { list-style: none; margin-top: 36px; display: grid; grid-template-columns: 1fr; gap: 14px; }
.profile-list li {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 22px; font-weight: 600; color: var(--anthrazit); box-shadow: var(--shadow-sm);
}
.profile-check {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem;
}

/* ============ SCHRITTE ============ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; margin-top: 44px; }
.step { text-align: center; padding: 28px 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step-number { display: inline-block; margin: 0 auto 16px; font-family: var(--font-mono); font-size: 1.35rem; font-weight: 600; color: var(--gold-dark); letter-spacing: 0.04em; padding-bottom: 8px; border-bottom: 2px solid var(--brass); }
.step p { color: var(--muted); margin-bottom: 0; }

/* ============ ÜBER ============ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.about-photo { display: flex; justify-content: center; }
.about-photo-frame {
  position: relative; width: 230px; height: 230px; border-radius: 50%;
  background: linear-gradient(135deg, var(--dunkelblau), var(--dunkelblau-dark));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  box-shadow: var(--shadow-md); border: 5px solid #fff; outline: 1px solid var(--border);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-initials { display: none; font-family: 'Bricolage Grotesque', sans-serif; font-size: 4rem; color: var(--gold); font-weight: 700; }
.about-photo-frame.no-photo .about-initials { display: block; }
.about-text .btn { margin-top: 8px; }

/* ============ FAQ ============ */
.faq { margin-top: 40px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; padding: 18px 52px 18px 20px; font-weight: 600; color: var(--dunkelblau); list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--gold-dark); font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 20px 18px; margin: 0; color: var(--muted); }

/* ============ CTA ============ */
.cta-section { background: linear-gradient(135deg, var(--dunkelblau), var(--dunkelblau-dark)); color: #fff; }
.cta-section h2 { color: #fff; margin-bottom: 10px; }
.cta-sub { color: #cdd6e2; margin-bottom: 26px; }
.cta-phone { margin-top: 22px; margin-bottom: 0; color: #cdd6e2; }
.cta-phone a { color: var(--gold); font-weight: 700; }

/* ============ FOOTER ============ */
.site-footer { background: var(--anthrazit); color: #c3c8cf; padding-top: 44px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; padding-bottom: 34px; }
.footer-col { display: flex; flex-direction: column; gap: 7px; }
.footer-col strong { color: #fff; font-size: 1.06rem; font-family: 'Bricolage Grotesque', sans-serif; }
.footer-col a { color: #c3c8cf; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 16px 0; font-size: 0.85rem; color: #868d97; }

/* ============ MOBILE STICKY CTA ============ */
.mobile-bar { display: none; }

/* ============ RECHTSSEITEN ============ */
.legal h1 { margin-bottom: 24px; }
.legal h2 { font-size: 1.25rem; margin-top: 32px; margin-bottom: 10px; }
.legal p { color: var(--text); }
.legal ul { margin: 0 0 1rem 1.2rem; color: var(--text); }
.legal ul li { margin-bottom: 6px; }
.legal a { color: var(--dunkelblau); text-decoration: underline; }
.legal a:hover { color: var(--gold-dark); }
.back-link { margin-bottom: 8px; }
.back-link a { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.back-link a:hover { color: var(--dunkelblau); }
.legal-note { margin-top: 32px; padding: 16px 20px; background: var(--sand); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--muted); }

/* ============ SCROLL-REVEAL ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .fstep { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (min-width: 900px) {
  .hero { padding: 90px 0 96px; }
  .hero-grid { grid-template-columns: 1.04fr 0.96fr; gap: 54px; }
  .about-grid { grid-template-columns: 280px 1fr; gap: 52px; }
  .about-photo-frame { width: 280px; height: 280px; }
}

@media (max-width: 768px) {
  .header-actions .header-btn { display: none; }
  .phone-number { display: none; }
  .mobile-bar {
    display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
    border-top: 1px solid var(--border); box-shadow: 0 -6px 22px rgba(0,0,0,0.08);
  }
  .mobile-bar .btn-gold { flex: 1; }
  .mobile-call {
    display: flex; align-items: center; justify-content: center; width: 48px; flex-shrink: 0;
    border-radius: var(--radius-sm); background: var(--dunkelblau); color: #fff; font-size: 1.2rem;
  }
  body { padding-bottom: 72px; }
}

@media (max-width: 520px) {
  .hero-subline { font-size: 1.04rem; }
  .funnel-card { padding: 20px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-wide { grid-column: auto; }
  .form-row { flex-direction: column; gap: 0; }
  .section { padding: 56px 0; }
  .hero-trust { gap: 18px; }
}

@media (min-width: 521px) { .phone-number { display: inline; } }
