/* =========================================================
   Holzmann Immobilien — Verkaufsstrategie LP
   Boutique-Maklerhaus CI: Cream + Gold + Fraunces + Inter Tight
   Mobile-first · Quiz Above-the-Fold · Conversion-optimiert
   ========================================================= */

:root {
  --ink:        #07071A;
  --ink-soft:   #1A1A2E;
  --deep:       #25257B;
  --blue:       #2E3E8B;
  --gold:       #B8895F;
  --gold-warm:  #C9A07A;
  --gold-soft:  rgba(184, 137, 95, 0.12);
  --bg:         #FBF8F2;
  --bg-alt:     #F3EEE4;
  --white:      #FFFFFF;
  --line:       rgba(7, 7, 26, 0.1);
  --line-strong:rgba(7, 7, 26, 0.18);
  --muted:      rgba(7, 7, 26, 0.58);
  --error:      #B33A3A;
  --radius:     16px;
  --radius-sm:  10px;
  --h-font:     'Fraunces', 'Times New Roman', serif;
  --b-font:     'Inter Tight', system-ui, -apple-system, sans-serif;
  --container:  1320px;
}

/* ----- Reset ----- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--b-font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--h-font);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
h1 em, h2 em, h3 em, .italic { color: var(--gold); font-style: italic; font-weight: 300; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

.eyebrow {
  font-family: var(--b-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow-light { color: rgba(255,255,255,0.7); }
.eyebrow-light::before { background: rgba(255,255,255,0.5); }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 20px; }
.nav-inner .logo { margin-right: 0; }
.nav-inner .nav-links { margin-left: auto; margin-right: auto; }
.nav-inner .nav-burger { margin-left: auto; }
.logo {
  display: inline-flex; align-items: center;
  height: 44px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 480px) { .logo img { height: 34px; } }
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}
.footer-logo {
  height: 40px;
  width: auto;
  display: block;
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 100px;
  font-family: var(--b-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  text-decoration: none;
  transition: background .3s, transform .3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }
.nav-cta .arrow { transition: transform .3s; }
.nav-cta:hover .arrow { transform: translateX(3px); }

/* Desktop Section-Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--b-font);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
  transition: color .25s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold); }
@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 12.5px; }
}

/* Mobile/Desktop Sichtbarkeit — auf Desktop wird Burger ausgeblendet, Phone-Pill sichtbar */
.nav-burger { display: none; }
.nav-desktop-only { display: inline-flex; }
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-desktop-only { display: none; }
}

/* Burger Button */
.nav-burger {
  position: relative;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile Overlay */
.nav-overlay {
  position: fixed; inset: 0;
  z-index: 100;
  background: var(--bg);
  opacity: 0; pointer-events: none;
  transition: opacity .35s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex; align-items: center; justify-content: center;
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }
.nav-overlay-close {
  position: absolute; top: 14px; right: 18px;
  width: 48px; height: 48px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--b-font);
  font-size: 22px; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .3s, color .3s, border-color .3s;
}
.nav-overlay-close:hover { color: var(--gold); border-color: var(--gold); transform: rotate(90deg); }
.nav-overlay-inner {
  display: flex; flex-direction: column; gap: 36px;
  align-items: stretch; text-align: center;
  padding: 80px 28px 48px;
  width: 100%;
  max-width: 420px;
}
.nav-overlay-primary { display: flex; flex-direction: column; gap: 12px; }
.nav-overlay-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 18px 26px;
  border-radius: 100px;
  font-family: var(--b-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background .3s, transform .3s, color .3s, border-color .3s;
  border: 1.5px solid var(--ink);
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px);
}
.nav-overlay-cta:hover { background: var(--gold); border-color: var(--gold); }
.nav-overlay-cta-ghost {
  background: transparent;
  color: var(--ink);
}
.nav-overlay-cta-ghost:hover { background: var(--ink); color: var(--white); }

.nav-overlay-links {
  list-style: none;
  margin: 0; padding: 28px 0 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.nav-overlay-links li { opacity: 0; transform: translateY(16px); }
.nav-overlay-links a {
  display: block;
  font-family: var(--b-font);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding: 14px 8px;
  text-decoration: none;
  transition: color .25s;
}
.nav-overlay-links a:hover { color: var(--gold); }

.nav-overlay-cta,
.nav-overlay-links li {
  transition: opacity .55s cubic-bezier(0.22, 1, 0.36, 1), transform .55s cubic-bezier(0.22, 1, 0.36, 1), background .3s, color .3s, border-color .3s;
}
.nav-overlay.is-open .nav-overlay-cta,
.nav-overlay.is-open .nav-overlay-links li {
  opacity: 1; transform: translateY(0);
}
.nav-overlay.is-open .nav-overlay-primary .nav-overlay-cta:nth-child(1) { transition-delay: .08s; }
.nav-overlay.is-open .nav-overlay-primary .nav-overlay-cta:nth-child(2) { transition-delay: .14s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(1) { transition-delay: .22s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(2) { transition-delay: .28s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(3) { transition-delay: .34s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(4) { transition-delay: .40s; }
.nav-overlay.is-open .nav-overlay-links li:nth-child(5) { transition-delay: .46s; }

/* ========== HERO + QUIZ (Above the Fold) ========== */
.hero {
  position: relative;
  padding: 48px 0 64px;
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,62,139,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr);
}
.hero-headline-block { order: 1; text-align: center; }
.hero-headline-block h1 { margin-left: auto; margin-right: auto; }
.hero-headline-block .hero-sub { margin-left: auto; margin-right: auto; }
.quiz-card-hero { order: 2; }
.hero-trust-block { order: 3; text-align: left; }

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 36px 64px;
    align-items: start;
  }
  .hero-headline-block { grid-column: 1; grid-row: 1; text-align: left; }
  .hero-headline-block h1, .hero-headline-block .hero-sub { margin-left: 0; margin-right: 0; }
  .hero-trust-block    { grid-column: 1; grid-row: 2; align-self: start; text-align: left; }
  .quiz-card-hero      { grid-column: 2; grid-row: 1 / 3; align-self: start; }
  .hero { padding: 80px 0 100px; }
}

.hero-eyebrow-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 5px 12px;
  border-radius: 100px;
  font-family: var(--b-font);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(7,7,26,0.04);
}
@media (min-width: 980px) {
  .hero-eyebrow-chip { font-size: 11px; padding: 7px 14px; gap: 10px; margin-bottom: 28px; }
}
.hero-eyebrow-chip .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(40px, 7.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 16ch;
  line-height: 1.05;
}
/* Desktop: zurück zur ursprünglichen Größe */
@media (min-width: 980px) {
  .hero h1 {
    font-size: clamp(30px, 5.4vw, 60px);
    line-height: 1.08;
  }
}
.hero h1 em { font-weight: 400; }

/* HERO-CTA — Conversion-Button direkt unter Trust */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--b-font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(7, 7, 26, 0.18), 0 2px 6px rgba(7, 7, 26, 0.1);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  width: max-content;
  max-width: 100%;
}
.hero-cta:hover {
  transform: translateY(-1px);
  background: var(--gold);
  box-shadow: 0 12px 32px rgba(184, 137, 95, 0.35), 0 4px 10px rgba(184, 137, 95, 0.2);
}
.hero-cta-arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease;
}
.hero-cta:hover .hero-cta-arrow { transform: translateX(3px); }
.hero-cta-sub {
  margin: 10px 0 0;
  font-family: var(--b-font);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ---------- HERO RISK-REVERSAL ---------- */
.hero-risk-reversal {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-family: var(--b-font);
  font-size: 12.5px;
  color: var(--ink);
}
.hero-risk-reversal li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.hero-risk-reversal .hrr-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 979px) {
  .hero-risk-reversal { justify-content: center; }
}
@media (max-width: 768px) {
  .hero-risk-reversal {
    flex-direction: column;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    font-size: 13.5px;
  }
  .hero-risk-reversal li { gap: 8px; }
  .hero-risk-reversal .hrr-check {
    width: 18px; height: 18px;
    font-size: 11px;
  }
}

/* ---------- LIVE-PROOF DOT (pulsing grün statt gold) ---------- */
.hero-eyebrow-chip .dot-live {
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: dot-pulse 2s ease-out infinite;
}
@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
#live-proof-text {
  transition: opacity .22s ease;
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--b-font);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(7, 7, 26, 0.28), 0 2px 8px rgba(7, 7, 26, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease;
}
.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-cta:hover, .sticky-cta:focus-visible {
  background: var(--gold);
}
/* Desktop & größere Tablets: sticky-CTA ausblenden — Quiz immer per Sidebar/Layout sichtbar */
@media (min-width: 980px) {
  .sticky-cta { display: none !important; }
}
@media (max-width: 979px) {
  .hero-cta { margin-left: auto; margin-right: auto; display: flex; width: 100%; max-width: 360px; }
  .hero-cta-sub { text-align: center; }
}
/* Desktop: CTA + Sub linksbündig wie der Rest des Hero-Texts */
@media (min-width: 980px) {
  .hero-headline-block { display: flex; flex-direction: column; align-items: flex-start; }
  .hero-cta-sub { align-self: flex-start; }
}

.hero-sub {
  font-family: var(--h-font);
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  max-width: 50ch;
  color: var(--ink);
  margin-bottom: 0;
}

.hero-trust {
  display: flex; flex-direction: column; gap: 12px;
}
.hero-trust-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
}
.hero-trust-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  margin-top: 1px;
  flex-shrink: 0;
}
.hero-trust-item strong { font-weight: 600; }

.hero-phone {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  font-family: var(--b-font);
  font-size: 14px;
  color: var(--muted);
}
.hero-phone a {
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: color .3s, border-color .3s;
}
.hero-phone a:hover { color: var(--gold); border-color: var(--gold); }

/* Quiz-Card im Hero rechts */
.quiz-card-hero {
  background: var(--white);
  border: 1.5px solid var(--gold-warm);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 6px rgba(184, 137, 95, 0.08),
    0 12px 28px rgba(184, 137, 95, 0.22),
    0 36px 90px rgba(7, 7, 26, 0.18);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
@media (min-width: 600px) { .quiz-card-hero { padding: 40px 36px; } }
.quiz-card-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold-warm) 0%, var(--gold) 50%, var(--gold-warm) 100%);
}
/* QUIZ-CARD-TRUST-TOP (nur Desktop sichtbar) */
.quiz-card-trust-top { display: none; }
@media (min-width: 980px) {
  .quiz-card-trust-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: -8px -8px 18px;
    padding: 10px 14px;
    background: linear-gradient(90deg, rgba(184, 137, 95, 0.10) 0%, rgba(184, 137, 95, 0.04) 100%);
    border: 1px solid rgba(184, 137, 95, 0.22);
    border-radius: 10px;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.3;
  }
  .quiz-card-trust-top .qctt-stars {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 1.5px;
    line-height: 1;
    flex-shrink: 0;
  }
  .quiz-card-trust-top .qctt-text strong {
    color: var(--ink);
    font-weight: 600;
  }
}

.quiz-card-eyebrow {
  font-family: var(--b-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.quiz-card-headline {
  font-family: var(--h-font);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 300;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.quiz-card-headline em { color: var(--gold); font-style: italic; font-weight: 300; }
.quiz-card-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ========== QUIZ STATES ========== */
.quiz-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
}
.quiz-progress-step {
  flex: 1;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  transition: background .25s;
}
.quiz-progress-step.is-active,
.quiz-progress-step.is-done { background: var(--gold); }

.quiz-step h3 {
  font-family: var(--h-font);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 300;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--ink);
}
.quiz-step h3 em { color: var(--gold); font-style: italic; font-weight: 300; }
.quiz-help {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 22px;
  line-height: 1.55;
}

.quiz-options {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}
.quiz-option {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  text-align: left;
  font-family: var(--b-font);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
  width: 100%;
}
.quiz-option:hover { border-color: var(--gold); background: var(--white); }
.quiz-option.is-selected { border-color: var(--gold); background: var(--gold-soft); }
.quiz-option .opt-mark {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  position: relative;
  transition: border-color .15s;
}
.quiz-option.is-selected .opt-mark { border-color: var(--gold); }
.quiz-option.is-selected .opt-mark::after {
  content: '';
  position: absolute; inset: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.quiz-field { display: block; margin-bottom: 14px; }
.quiz-field label {
  display: block;
  font-family: var(--b-font);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.quiz-field input[type="text"],
.quiz-field input[type="email"],
.quiz-field input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--b-font);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .15s, background .15s;
}
.quiz-field input:hover { background: var(--white); border-color: var(--line-strong); }
.quiz-field input:focus { outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px var(--gold-soft); }
.quiz-field .field-error { color: var(--error); font-size: 12.5px; margin-top: 4px; display: none; }
.quiz-field.has-error input { border-color: var(--error); background: rgba(179,58,58,0.04); }
.quiz-field.has-error .tel-wrap { border-color: var(--error); background: rgba(179,58,58,0.04); }
.quiz-field.has-error .field-error { display: block; }

/* Tel input with +49 flag prefix */
.tel-wrap {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.tel-wrap:hover { background: var(--white); border-color: var(--line-strong); }
.tel-wrap:focus-within { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px var(--gold-soft); }
.tel-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-right: 1px solid var(--line);
  height: 100%;
  flex-shrink: 0;
  background: var(--bg-alt);
}
.tel-flag-de {
  display: inline-block;
  width: 22px; height: 14px;
  border-radius: 2px;
  background:
    linear-gradient(to bottom,
      #000 0, #000 33%,
      #DD0000 33%, #DD0000 66%,
      #FFCE00 66%, #FFCE00 100%);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.tel-prefix {
  font-family: var(--b-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.tel-wrap input[type="tel"] {
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  flex: 1;
  padding: 14px 16px;
  box-shadow: none !important;
}
.tel-wrap input[type="tel"]:focus { outline: none; }

.quiz-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  margin: 18px 0 22px;
  line-height: 1.55;
  cursor: pointer;
}
.quiz-checkbox input { margin-top: 3px; flex: 0 0 auto; accent-color: var(--gold); }
.quiz-checkbox a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

.quiz-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

/* ========== Buttons ========== */
.btn-solid {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink);
  color: var(--white);
  padding: 15px 26px;
  border-radius: 100px;
  font-family: var(--b-font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .3s, transform .3s;
}
.btn-solid:hover { background: var(--gold); transform: translateY(-2px); }
.btn-solid:disabled { background: var(--line-strong); color: rgba(255,255,255,0.7); cursor: not-allowed; transform: none; }
.btn-solid .arrow { transition: transform .3s; }
.btn-solid:hover .arrow { transform: translateX(4px); }
.btn-solid-gold { background: var(--gold); color: var(--white); }
.btn-solid-gold:hover { background: var(--ink); }
.btn-solid-large { padding: 18px 32px; font-size: 13px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted);
  padding: 12px 14px;
  font-family: var(--b-font);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: color .3s;
}
.btn-ghost:hover { color: var(--ink); }

.btn-link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--b-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  transition: color .3s, border-color .3s, gap .3s;
}
.btn-link-arrow:hover { color: var(--gold); border-color: var(--gold); gap: 14px; }

/* ========== Confirmation ========== */
.quiz-confirm { padding: 4px 0 8px; }
.quiz-confirm .confirm-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.quiz-confirm h3 {
  font-family: var(--h-font);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.quiz-confirm h3 em { color: var(--gold); }
.quiz-confirm p { color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.quiz-confirm .cal-embed {
  margin: 22px 0 0;
  width: 100%;
  min-height: 720px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}
.quiz-confirm .cal-embed iframe { width: 100% !important; min-height: 720px; border: 0; display: block; }

/* ========== SECTION BASE ========== */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 120px 0; } }
.section-soft { background: var(--bg-alt); }
.section-white { background: var(--white); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: var(--gold-warm); }
.section-dark .eyebrow::before { background: var(--gold-warm); }

.section-head { max-width: 780px; margin-bottom: 56px; }
.section-title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  margin-top: 18px;
  letter-spacing: -0.025em;
}
.section-title em { color: var(--gold); font-style: italic; font-weight: 300; }
.section-lead {
  margin-top: 22px;
  font-family: var(--h-font);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
}

/* ========== TRUST NUMBERS ========== */
.numbers {
  background: var(--white);
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 0;
}
@media (min-width: 768px) { .numbers-grid { grid-template-columns: repeat(4, 1fr); } }
.num-cell { padding: 0 16px; text-align: center; border-left: 1px solid var(--line); }
.num-cell:nth-child(odd) { border-left: 0; }
@media (min-width: 768px) { .num-cell:nth-child(odd) { border-left: 1px solid var(--line); } .num-cell:first-child { border-left: 0; } }
.num-value {
  font-family: var(--h-font);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.num-value em { color: var(--gold); font-style: italic; font-size: 0.55em; margin-left: 2px; }
.num-label {
  margin-top: 16px;
  font-family: var(--b-font);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== CASE STUDY ========== */
.case-study-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .case-study-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
.case-quote {
  font-family: var(--h-font);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.case-cite {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 36px;
}
.case-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 12px;
}
.case-stat { text-align: left; padding: 12px 6px 12px 18px; border-left: 1px solid var(--line); }
.case-stat:first-child { border-left: 0; }
.case-stat-number {
  display: block;
  font-family: var(--h-font);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.case-stat-label {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ========== BENEFITS (3-Spalten) ========== */
.benefit-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .benefit-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 36px 36px;
  position: relative;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s;
}
.benefit-card::before {
  content: ''; position: absolute; top: 0; left: 36px; right: 36px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px rgba(7,7,26,0.08); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-roman {
  font-family: var(--h-font);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 28px;
  display: block;
}
.benefit-card h3 {
  font-family: var(--h-font);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.benefit-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* ========== STEPS (4) ========== */
.steps-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.step-num {
  font-family: var(--h-font);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: 22px;
  display: block;
}
.step-card h3 {
  font-family: var(--h-font);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.step-card p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0; }

/* ========== ABOUT ========== */
.about-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.3fr 1fr; gap: 64px; } }
.about-lead {
  font-family: var(--h-font);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.about-address {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.about-address a { color: var(--ink); border-bottom: 1px solid var(--line-strong); }
.about-address a:hover { color: var(--gold); border-color: var(--gold); }

.group-list {
  list-style: none;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.group-list li {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--b-font);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  display: flex; align-items: center; gap: 12px;
}
.group-list li:last-child { border-bottom: 0; }
.group-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========== FAQ ========== */
.faq {
  display: grid;
  gap: 12px;
  max-width: 820px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--h-font);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-family: var(--b-font);
  font-size: 24px;
  font-weight: 300;
  transition: transform .3s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 26px 26px; margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.7; }
.faq-item a { color: var(--ink); border-bottom: 1px solid var(--line-strong); }
.faq-item a:hover { color: var(--gold); border-color: var(--gold); }

/* ========== REGIONEN ========== */
.regions-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 600px) { .regions-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .regions-grid { grid-template-columns: repeat(4, 1fr); } }
.regions-grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 18px;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.regions-grid li:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(7,7,26,0.06); }
.regions-grid li strong {
  font-family: var(--h-font);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.regions-grid li span {
  font-family: var(--b-font);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.regions-note {
  margin: 28px 0 0;
  font-family: var(--h-font);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  text-align: center;
}

/* ========== Section CTA Row (Mid-Page CTAs zurück zum Quiz) ========== */
.section-cta-row {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.section-cta-row .btn-solid {
  padding: 18px 32px;
  font-size: 12.5px;
}
@media (min-width: 768px) {
  .section-cta-row { margin-top: 64px; }
}

/* ========== FINAL CTA ========== */
.section-final {
  background: var(--ink);
  color: var(--white);
  padding: 88px 0;
  text-align: center;
}
.section-final h2 {
  font-family: var(--h-font);
  font-weight: 300;
  font-size: clamp(30px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.section-final h2 em { color: var(--gold-warm); }
.section-final p { color: rgba(255,255,255,0.78); max-width: 56ch; margin: 0 auto 32px; font-size: 17px; line-height: 1.55; }
.section-final .btn-solid { background: var(--white); color: var(--ink); }
.section-final .btn-solid:hover { background: var(--gold); color: var(--white); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 56px 0 32px;
  font-size: 13.5px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.3fr 1fr; } }
.footer-brand .logo { color: var(--white); margin-bottom: 14px; font-size: 24px; }
.footer-brand .logo em { color: var(--gold-warm); }
.footer-address { line-height: 1.7; }
.footer-nav {
  display: flex; flex-wrap: wrap;
  gap: 14px 22px;
  margin-bottom: 0;
}
@media (min-width: 768px) { .footer-nav { justify-content: flex-end; } }
.footer-nav a {
  color: rgba(255,255,255,0.78);
  font-family: var(--b-font);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color .3s;
}
.footer-nav a:hover { color: var(--gold-warm); }
.footer-meta {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 200;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(7,7,26,0.16);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 540px;
}
@media (min-width: 768px) {
  .cookie-banner { flex-direction: row; align-items: center; left: auto; right: 24px; bottom: 24px; }
}
.cookie-banner.is-hidden { display: none; }
.cookie-banner p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--ink); }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-actions .btn-solid { padding: 10px 18px; font-size: 11px; }
.cookie-actions .btn-ghost { padding: 10px 14px; font-size: 11px; }

/* ========== ANIMATIONS ========== */
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quiz-step, .quiz-confirm { animation: fade-in .3s ease; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   TRUST-STRIP (zwischen Hero und numbers)
   ========================================================= */
.trust-strip {
  background: var(--bg-alt);
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 0 12px;
  border-right: 1px solid var(--line);
}
.trust-strip-item:last-child { border-right: 0; }
.trust-strip-value {
  font-family: var(--h-font);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.trust-strip-stars {
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
}
.trust-strip-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.trust-strip-label strong {
  color: var(--ink);
  font-weight: 500;
}
.trust-strip-label em {
  font-style: normal;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .trust-strip-grid { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
  .trust-strip-item { border-right: 0; padding: 14px 8px; }
  .trust-strip-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-strip-item:nth-child(1),
  .trust-strip-item:nth-child(2) { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
  .trust-strip-value { font-size: 22px; }
  .trust-strip-label { font-size: 12px; }
}

/* =========================================================
   FALLSTUDIE II — Reverse-Layout
   ========================================================= */
.case-study-grid-reverse > div:first-child { order: 2; }
.case-study-grid-reverse > div:last-child { order: 1; }
@media (max-width: 900px) {
  /* Mobile: gleiche Reihenfolge wie Fallstudie 1 — Quote oben, Stats darunter */
  .case-study-grid-reverse > div:first-child { order: 2; }   /* Stats-Grid nach unten */
  .case-study-grid-reverse > div:last-child  { order: 1; }   /* Quote nach oben */
}

/* =========================================================
   TESTIMONIALS-SECTION
   ========================================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(7, 7, 26, 0.06);
  border-color: var(--line-strong);
}
.testimonial-stars {
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--gold);
  line-height: 1;
}
.testimonial-card blockquote {
  font-family: var(--h-font);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  letter-spacing: -0.005em;
}
.testimonial-cite {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-top: auto;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
  .testimonial-card blockquote { font-size: 16px; }
}

/* =========================================================
   HERO-TRUST-LINE (direkt unter Hero-Sub — Mobile, Tablet & Desktop)
   Zeigt Trust BEVOR der Nutzer das Quiz wahrnimmt.
   ========================================================= */
.hero-trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 16px auto 0;
  padding: 10px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.3;
  min-width: 0;
  max-width: 100%;
}
/* Mobile (≤768): nur 2 Items in 1 Zeile, kompakter Text */
@media (max-width: 768px) {
  .hero-trust-line {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px 14px;
    font-size: 11.5px;
    white-space: nowrap;
  }
  .hero-trust-line .htl-extra { display: none; }
  .hero-trust-line .htl-i2,
  .hero-trust-line .htl-i4,
  .hero-trust-line .htl-s2,
  .hero-trust-line .htl-s3 { display: none; }
  /* Sichtbar: ★★★★★ · 60+ Verkäufer · seit 2011 */
}
.hero-trust-line .htl-stars {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--gold);
  line-height: 1;
}
.hero-trust-line .htl-item strong {
  color: var(--ink);
  font-weight: 500;
}
.hero-trust-line .htl-sep {
  color: var(--line-strong);
  font-weight: 400;
  opacity: 0.6;
}
@media (min-width: 980px) {
  /* Desktop: hero-trust-line ausgeblendet — Trust ist jetzt OBEN in der Quiz-Card */
  .hero-trust-line { display: none; }
}

/* =========================================================
   QUIZ-MIKRO-TRUST (unter Submit-Button)
   ========================================================= */
.quiz-micro-trust {
  margin-top: 12px;
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* =========================================================
   QUIZ-CARD-TRUST — Trust direkt in der Quiz-Card
   Verbindet Vertrauenssignale visuell mit dem Quiz.
   ========================================================= */
/* Mobile: glasige Trust-Box UNTER dem Quiz.
   Subtle Gold-Tint + frosted look + Sterne-Header + 2 Zeilen mit Punkten. */
.quiz-card-trust {
  display: none; /* Trust ist jetzt im Hero (.hero-trust-line) für alle Breakpoints */
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 22px 0 0;
  padding: 14px 18px 13px;
  background: rgba(184, 137, 95, 0.06);
  border: 1px solid rgba(184, 137, 95, 0.22);
  border-radius: 14px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
  text-align: center;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.quiz-card-trust .qct-stars {
  font-size: 14px;
  letter-spacing: 2.5px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 3px;
}
.quiz-card-trust .qct-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.quiz-card-trust .qct-item strong {
  color: var(--ink);
  font-weight: 500;
}
.quiz-card-trust .qct-sep {
  color: var(--gold-warm);
  opacity: 0.55;
  font-weight: 500;
}
@media (min-width: 980px) {
  /* Desktop: Trust ist im Hero-Text unter dem Sub (.hero-trust-line) */
  .quiz-card-trust { display: none; }
}

/* =========================================================
   HERO MOBILE-OPTIMIERUNG
   H1 kleiner, damit Quiz schneller sichtbar
   ========================================================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    max-width: 100%;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.45;
  }
  .hero { padding: 20px 0 28px; }
  .hero-grid { gap: 18px; }
}

/* =========================================================
   FALLSTUDIE MOBILE-FIX
   case-stats-grid: auf Mobile 1-spaltig mit horizontalen Trennern
   (statt 3-spaltig, das auf 390px-Viewport rausbricht)
   ========================================================= */
@media (max-width: 768px) {
  .case-stats-grid {
    grid-template-columns: 1fr;
    padding: 18px 16px;
    max-width: 100%;
  }
  .case-stat {
    padding: 14px 12px;
    border-left: 0;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 16px;
    text-align: left;
  }
  .case-stat:first-child { border-top: 0; }
  .case-stat-number { font-size: 36px; margin-bottom: 0; }
  .case-stat-label {
    margin-top: 0;
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0.18em;
  }
}

/* =========================================================
   QUIZ-SUBMIT — kompakter Button (weniger dick)
   ========================================================= */
.btn-solid.btn-solid-compact {
  padding: 12px 22px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .btn-solid.btn-solid-compact {
    padding: 11px 18px;
    font-size: 13.5px;
  }
}
