/* ============================================================
   Eigentümer-Leads (eigentuemer-leads.de)
   Design-System: Fachkraft-Jetzt Brand DNA 1:1
   Quelle der Tokens: wissen/fachkraft-jetzt-design.md (Stand 2026-05-07)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --color-gold:         #F2CD5C;
  --color-gold-light:   #F6D979;
  --color-gold-soft:    rgba(242, 205, 92, 0.20);
  --color-gold-border:  rgba(242, 205, 92, 0.45);
  --color-gold-glow:    rgba(242, 205, 92, 0.28);

  --color-teal:         #6FBFB1;
  --color-teal-light:   #8BCFC3;
  --color-teal-soft:    rgba(111, 191, 177, 0.18);
  --color-teal-border:  rgba(111, 191, 177, 0.45);
  --color-teal-glow:    rgba(111, 191, 177, 0.22);

  --color-petrol:       #2C5B70;
  --warning:            #EF7850;

  --bg:                 #081520;
  --bg-deeper:          #050E16;
  --bg-card:            rgba(255, 255, 255, 0.035);
  --bg-card-hover:      rgba(255, 255, 255, 0.06);
  --bg-card-featured:   rgba(242, 205, 92, 0.04);
  --bg-nav:             rgba(8, 21, 32, 0.35);
  --bg-nav-scrolled:    rgba(8, 21, 32, 0.65);

  --text:               #FFFFFF;
  --text-bright:        rgba(255, 255, 255, 0.96);
  --text-muted:         rgba(255, 255, 255, 0.72);
  --text-dim:           rgba(255, 255, 255, 0.62);
  --text-faint:         rgba(255, 255, 255, 0.30);

  --border:             rgba(255, 255, 255, 0.08);
  --border-bright:      rgba(255, 255, 255, 0.14);
  --border-hover:       rgba(111, 191, 177, 0.45);

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --fs-h1:    clamp(42px, 5.6vw, 84px);
  --fs-h2:    clamp(30px, 4.0vw, 54px);
  --fs-h3:    clamp(22px, 2.2vw, 28px);
  --fs-lead:  clamp(17px, 1.3vw, 20px);
  --fs-body:  16.5px;
  --fs-small: 14px;
  --fs-micro: 12px;

  --s-1: 4px;  --s-2: 8px;  --s-3: 12px;  --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-7: 32px;  --s-8: 40px;
  --s-9: 48px; --s-10: 64px; --s-11: 80px; --s-12: 96px;
  --s-13: 120px; --s-14: 160px;

  --r-xs: 6px; --r-sm: 10px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px; --r-pill: 999px;

  --shadow-card:    0 4px 30px rgba(0, 0, 0, 0.38), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --shadow-card-lg: 0 12px 60px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.06) inset;

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:   180ms var(--ease);
  --t-base:   320ms var(--ease);
  --t-slow:   560ms var(--ease-out);

  --container-max: 1200px;
  --container-pad: 24px;
  --nav-h: 72px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--color-teal); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--color-teal-light); }
:focus-visible { outline: 2px solid var(--color-teal); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4 { margin: 0; color: var(--text-bright); letter-spacing: -0.015em; }
p { margin: 0 0 var(--s-4); }

/* Globaler Gradient-Glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(242, 205, 92, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(111, 191, 177, 0.10), transparent 50%),
    linear-gradient(180deg,
      rgba(242, 205, 92, 0.05) 0%,
      transparent 30%,
      rgba(111, 191, 177, 0.06) 70%,
      rgba(111, 191, 177, 0.04) 100%);
}

.container {
  max-width: var(--container-max);
  padding: 0 var(--container-pad);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

section { position: relative; padding: var(--s-12) 0; }

/* ---------- Ambient Blobs ---------- */
.blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  will-change: transform;
  animation: blob-float 22s ease-in-out infinite alternate;
}
.blob--gold {
  width: 58vmin; height: 58vmin;
  top: -10vmin; right: -14vmin;
  background: radial-gradient(circle, var(--color-gold) 0%, transparent 65%);
  opacity: 0.25;
}
.blob--petrol {
  width: 78vmin; height: 78vmin;
  top: 30vh; left: -22vmin;
  background: radial-gradient(circle, var(--color-petrol) 0%, transparent 68%);
  opacity: 0.55;
}
.blob--teal {
  width: 60vmin; height: 60vmin;
  bottom: -14vmin; right: 12vmin;
  background: radial-gradient(circle, var(--color-teal) 0%, transparent 65%);
  opacity: 0.25;
}
@keyframes blob-float {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(3%, -4%, 0) scale(1.04); }
  100% { transform: translate3d(-3%, 3%, 0) scale(0.98); }
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 20px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--color-gold);
  color: #0B1D2A;
  border-radius: var(--r-sm);
  font-weight: 700;
}
.skip-link:focus { left: 20px; color: #0B1D2A; }

/* ---------- Nav (Floating Glass Pill) ---------- */
.nav {
  position: fixed;
  top: 20px;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 var(--container-pad);
}
.nav__pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 10px 20px 10px 24px;
  background: var(--bg-nav);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-pill);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  max-width: calc(var(--container-max) - 16px);
  width: 100%;
  transition: background var(--t-base);
}
.nav.is-scrolled .nav__pill { background: var(--bg-nav-scrolled); }
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  color: var(--text-bright);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav__brand:hover { color: var(--text-bright); }
.nav__brand-mark { color: var(--color-gold); display: inline-flex; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}
.nav__links a:hover { color: var(--color-teal); }
.nav__cta-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #0B1D2A;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--r-pill);
  line-height: 1.2;
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.nav__cta-pill:hover { color: #0B1D2A; }
.nav__cta-pill .cta-sub { font-size: 9.5px; color: rgba(0, 0, 0, 0.6); font-weight: 500; }

/* ---------- Nav-Logo (FK-Jetzt Fisch im Goldring) ---------- */
.nav__logo { display: inline-flex; align-items: center; gap: 11px; }
.nav__logo:hover { color: inherit; }
.nav__logo-icon { width: 38px; height: 38px; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.12; }
.nav__logo-text .logo-main {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
}
.nav__logo-text .logo-sub {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ---------- Stat-Kacheln (Ergebnis-Sektion) ---------- */
.stat-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-bottom: var(--s-7);
}
.stat-tile {
  position: relative;
  padding: clamp(28px, 3vw, 38px) var(--s-6) var(--s-7);
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  text-align: center;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base);
}
.stat-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-teal) 100%);
  opacity: 0.85;
}
.stat-tile:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.stat-tile__value {
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: var(--s-3);
}
.stat-tile__label { font-size: 16px; font-weight: 700; color: var(--text-bright); margin-bottom: 6px; }
.stat-tile__note { font-size: var(--fs-small); color: var(--text-muted); line-height: 1.5; }

/* ---------- Hervorgehobene Spalte in der Vergleichstabelle ---------- */
.comp-wrap { position: relative; }
.comp-table { table-layout: fixed; min-width: 720px; }
.comp-table col:nth-child(1) { width: 25%; }
.comp-table col:nth-child(2) { width: 20%; }
.comp-table col:nth-child(3) { width: 22%; }
.comp-table col.is-own {
  width: 33%;
  background: linear-gradient(180deg, rgba(242,205,92,0.07) 0%, rgba(111,191,177,0.05) 100%);
}
.comp-table .own-col { color: var(--text-bright); }
.comp-table thead .own-col {
  background: linear-gradient(135deg, rgba(242,205,92,0.18) 0%, rgba(111,191,177,0.16) 100%);
}
.own-head { display: inline-flex; align-items: center; gap: 9px; }
.own-head__logo {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: inline-flex;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  overflow: hidden;
}
.own-head__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Durchgehender Gradient-Rahmen um die eigene Spalte (Overlay, nur Rand) */
.own-frame {
  position: absolute;
  top: 0; right: 0;
  width: 33%;
  height: 100%;
  border: 1.6px solid transparent;
  border-radius: var(--r-md);
  pointer-events: none;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  box-shadow: 0 0 34px rgba(242, 205, 92, 0.18);
}

/* ---------- Preiskarte: ein Preis groß, Rest klein ---------- */
.price-hero { text-align: center; padding: var(--s-4) 0 var(--s-6); }
.price-hero__value {
  font-size: clamp(52px, 6.4vw, 78px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.price-hero__unit {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: -0.01em;
}
.price-hero__claim {
  font-size: 16.5px;
  color: var(--text-bright);
  font-weight: 600;
  margin: var(--s-4) auto 0;
  max-width: 34ch;
  line-height: 1.5;
}
.price-hero__fine {
  font-size: var(--fs-small);
  color: var(--text-dim);
  margin: var(--s-5) auto 0;
  max-width: 42ch;
  line-height: 1.6;
}
.price-hero__fine strong { color: var(--text-muted); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #0B1D2A;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow:
    0 4px 20px rgba(242, 205, 92, 0.4),
    0 0 50px rgba(242, 205, 92, 0.2),
    0 0 80px rgba(111, 191, 177, 0.15),
    0 0 120px rgba(242, 205, 92, 0.08);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  color: #0B1D2A;
  box-shadow:
    0 8px 30px rgba(242, 205, 92, 0.5),
    0 0 70px rgba(242, 205, 92, 0.3),
    0 0 100px rgba(111, 191, 177, 0.2),
    0 0 140px rgba(242, 205, 92, 0.1);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine {
  0%, 100% { left: -100%; }
  50%      { left: 150%; }
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 15.5px;
  font-weight: 600;
  border: 1px solid var(--border-bright);
  border-radius: var(--r-pill);
  transition: all var(--t-fast);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  color: var(--text);
}

/* ---------- Section-Label (Eyebrow-Pill) ---------- */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  margin-bottom: var(--s-2);
}
.section-label--warning {
  color: var(--warning);
  background: rgba(239, 120, 80, 0.10);
  border-color: rgba(239, 120, 80, 0.35);
}

/* ---------- Zentrierte Section-Header ---------- */
.section-intro--centered {
  text-align: center;
  max-width: 880px;
  margin: 0 auto var(--s-9);
}
.section-intro--centered .section-label { margin-bottom: var(--s-3); }
.section-intro__headline {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text-bright);
  margin: 0 0 var(--s-3);
}
.section-intro__sub {
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- Gradient-Text ---------- */
.gradient-text {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Glass-Card ---------- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.glass-card--featured {
  background: var(--bg-card-featured);
  border-color: var(--color-gold-border);
}
.glass-card--static:hover { transform: none; }

/* ---------- Hero ---------- */
.hero {
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 56px) 0 var(--s-11);
}
@media (max-height: 1200px) {
  .hero { min-height: 100dvh; }
}
.hero__inner { text-align: center; max-width: 980px; margin: 0 auto; }
.hero h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.04;
  margin: var(--s-4) 0 var(--s-6);
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
}
.hero__stat { text-align: center; }
.hero__stat-value {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: 2px;
}
.hero__ctas {
  display: flex;
  justify-content: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-bottom: var(--s-8);
}
.hero__pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: var(--fs-small);
  color: var(--text-muted);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.trust-pill svg { color: var(--color-teal); flex-shrink: 0; }

/* ---------- Pain-Sektion ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.pain-card { border-color: rgba(239, 120, 80, 0.22); }
.pain-card:hover { border-color: rgba(239, 120, 80, 0.4); }
.pain-card h3 { font-size: var(--fs-h3); margin-bottom: var(--s-3); }
.pain-card p { color: var(--text-muted); margin: 0; }
.pain-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(239, 120, 80, 0.10);
  border: 1px solid rgba(239, 120, 80, 0.35);
  color: var(--warning);
  margin-bottom: var(--s-4);
}

/* ---------- Prozess / Timeline ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  counter-reset: step;
}
.process-step { position: relative; padding-top: var(--s-5); }
.process-step__num {
  position: absolute;
  top: -6px; left: clamp(28px, 3vw, 40px);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  opacity: 0.9;
}
.process-step h3 { font-size: 19px; margin: var(--s-6) 0 var(--s-3); }
.process-step p { color: var(--text-muted); font-size: 15.5px; margin: 0; }

/* ---------- Zahlen-Tabelle ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); }
table.data {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  font-size: 15.5px;
}
table.data caption {
  caption-side: bottom;
  text-align: left;
  font-size: var(--fs-micro);
  color: var(--text-dim);
  padding: var(--s-3) var(--s-2) 0;
}
table.data th, table.data td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
table.data thead th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
}
table.data tbody tr:last-child th,
table.data tbody tr:last-child td { border-bottom: none; }
table.data tbody th { font-weight: 600; color: var(--text-bright); }
table.data td { color: var(--text-muted); }
table.data .num { font-variant-numeric: tabular-nums; }

/* ---------- Check-Listen ---------- */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-4); }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-muted); }
.check-list li svg { color: var(--color-teal); flex-shrink: 0; margin-top: 3px; }
.check-list li strong { color: var(--text-bright); }

/* ---------- Split-Layout (Text + Karte) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 var(--s-4);
}
.split .lead { font-size: var(--fs-lead); color: var(--text-muted); }

/* ---------- Pricing ---------- */
.pricing-card {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 34px;
  position: relative;
}
.pricing-card__tag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  color: #0B1D2A;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border: 1px solid rgba(255, 255, 255, 0.40);
  box-shadow: 0 3px 10px rgba(242, 205, 92, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.40);
  white-space: nowrap;
}
.pricing-rows { display: grid; gap: 0; margin: var(--s-5) 0; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row__label { color: var(--text-muted); }
.pricing-row__label small { display: block; color: var(--text-dim); font-size: var(--fs-small); }
.pricing-row__value {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: var(--s-3); }
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0;
  transition: border-color var(--t-base);
}
.faq details[open] { border-color: var(--color-teal-border); }
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--text-bright);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--color-teal);
  transition: transform var(--t-fast);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 22px 20px; color: var(--text-muted); }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* ---------- Autor / E-E-A-T ---------- */
.author {
  display: flex;
  gap: var(--s-6);
  align-items: flex-start;
}
.author__badge {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #0B1D2A;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.author h3 { font-size: var(--fs-h3); margin-bottom: var(--s-2); }
.author p { color: var(--text-muted); }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; padding-bottom: var(--s-13); }
.final-cta .glass-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px);
}
.final-cta h2 { font-size: var(--fs-h2); font-weight: 800; line-height: 1.08; margin-bottom: var(--s-4); }
.final-cta p { color: var(--text-muted); max-width: 560px; margin: 0 auto var(--s-7); }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: var(--s-9) 0 var(--s-8);
  position: relative;
  z-index: 1;
  background: var(--bg-deeper);
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: var(--s-7);
  flex-wrap: wrap;
}
.footer__brand { font-weight: 800; color: var(--text-bright); margin-bottom: var(--s-2); }
footer p, footer li { font-size: var(--fs-small); color: var(--text-dim); }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-2); }
footer a { color: var(--text-muted); }
footer a:hover { color: var(--color-teal); }
.footer__legal {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
  font-size: var(--fs-micro);
  color: var(--text-dim);
}

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Unterseiten (Impressum etc.) ---------- */
.legal-page { padding: calc(var(--nav-h) + 72px) 0 var(--s-12); max-width: 760px; margin: 0 auto; }
.legal-page h1 { font-size: var(--fs-h2); margin-bottom: var(--s-7); }
.legal-page h2 { font-size: var(--fs-h3); margin: var(--s-8) 0 var(--s-3); }
.legal-page p, .legal-page li { color: var(--text-muted); }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob { animation: none; }
  .btn-primary::after { animation: none; display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 1ms !important; animation-duration: 1ms !important; }
}

/* ---------- Mobile ---------- */
.nav__cta-pill .cta-label-short { display: none; }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: var(--s-10) 0; }
  .nav { top: 12px; }
  .nav__pill { gap: 10px; padding: 8px 10px 8px 14px; }
  .nav__brand { font-size: 15px; gap: 7px; }
  .nav__cta-pill { padding: 14px 16px; font-size: 12px; }
  .nav__cta-pill .cta-sub { display: none; }
  .nav__cta-pill .cta-label-long { display: none; }
  .nav__cta-pill .cta-label-short { display: inline; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .process { grid-template-columns: 1fr; }
  .hero__ctas .btn-primary, .hero__ctas .btn-secondary { width: 100%; justify-content: center; }
  .author { flex-direction: column; }
  .pricing-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ---------- Mobile-Ergänzungen für die neuen Komponenten ---------- */
@media (max-width: 900px) {
  .stat-tiles { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav__logo-icon { width: 32px; height: 32px; }
  .nav__logo-text .logo-main { font-size: 15px; }
  .nav__logo-text .logo-sub { display: none; }
  .stat-tile { padding: var(--s-6) var(--s-5); }
}

/* Preiskarte: Inhalt vertikal zentrieren, damit neben der Textkarte kein Leerraum steht */
.pricing-card { display: flex; flex-direction: column; justify-content: center; }

/* Hero-Pills mit mehr Praesenz */
.hero__pills { gap: var(--s-4); }
.hero__pills .trust-pill {
  padding: 11px 20px 11px 12px;
  gap: 11px;
  font-size: 15px;
  color: var(--text-bright);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-bright);
}
.hero__pills .trust-pill svg {
  width: 28px; height: 28px;
  padding: 6px;
  border-radius: 50%;
  color: #0B1D2A;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  box-shadow: 0 2px 10px rgba(242, 205, 92, 0.28);
}

/* Setup-Gebuehr direkt unter dem Monatspreis, klein (Muster wie VSL-Funnel) */
.price-hero__plus {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 10px 0 0;
  letter-spacing: -0.005em;
}
.price-hero__plus strong { color: var(--text-bright); font-weight: 700; }
.price-hero__claim { margin-top: var(--s-5); }

/* Bildunterschrift ausserhalb der Tabelle, damit der Gradient-Rahmen sauber abschliesst */
.table-note {
  font-size: var(--fs-micro);
  color: var(--text-dim);
  margin: var(--s-3) 0 0;
  max-width: 90ch;
}
.comp-wrap { border-radius: var(--r-md); }

/* Schmerz-Akzent: Warning-Orange ist laut Brand-DNA fuer Pain reserviert,
   Gradient ausschliesslich fuer Ergebnisse. */
.pain-text { color: var(--warning); }

/* Echtes Portrait statt Monogramm in der Anbieter-Sektion */
.author__photo {
  flex-shrink: 0;
  width: 112px; height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%) border-box;
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.4);
}
@media (max-width: 640px) {
  .author__photo { width: 88px; height: 88px; }
}

/* ---------- Trust-Bar (Bewertungen, Muster wie fachkraft-jetzt.de) ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-4);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-bright);
  font-size: 15px;
  transition: border-color var(--t-fast), transform var(--t-fast), background var(--t-fast);
}
a.trust-badge:hover {
  color: var(--text-bright);
  border-color: var(--color-gold-border);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}
.trust-badge__stars { display: inline-flex; gap: 1px; }
.trust-badge__text { white-space: nowrap; }
.trust-badge__text strong { font-weight: 800; }
.trust-badge__count { color: var(--text-dim); font-size: 13.5px; }
.trust-badge--plain { color: var(--text-muted); }
.trust-badge--plain svg { color: var(--color-teal); }
.trust-note {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--text-dim);
  max-width: 62ch;
  margin: var(--s-5) auto 0;
  line-height: 1.6;
}

/* ---------- Fallstudien-Karte ---------- */
.case-card { display: flex; gap: var(--s-7); align-items: center; }
.case-card__media {
  flex-shrink: 0;
  width: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}
.case-card__media svg { width: 78px; height: 78px; }
.case-card__soon {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
}
@media (max-width: 640px) {
  .case-card { flex-direction: column; align-items: flex-start; gap: var(--s-5); }
  .case-card__media { flex-direction: row; width: auto; }
  .case-card__media svg { width: 54px; height: 54px; }
}

/* ============================================================
   Hero als Split-Layout, Muster 1:1 aus fachkraft-jetzt.de
   ============================================================ */
.hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 3vw, 48px);
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: left;
}
.hero__text { max-width: 640px; }
.hero__h1 {
  font-size: clamp(36px, 4.2vw, 66px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--text);
  margin: var(--s-4) 0 var(--s-5);
  text-wrap: balance;
}
.hero__sub {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 46ch;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--s-3);
  margin-top: var(--s-6);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--s-6);
}
.stat-item { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1 1 auto; }
.stat-item__value {
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-shadow: 0 0 12px rgba(242, 205, 92, 0.4);
  white-space: nowrap;
}
.stat-item__label { font-size: 13.5px; color: var(--color-teal); line-height: 1.35; font-weight: 600; }
.stat-divider { width: 1px; align-self: stretch; background: var(--border); margin: 0 2px; }

.hero__guarantee {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: var(--s-6) 0;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 520px;
}
.hero__guarantee > svg { color: var(--color-teal); flex-shrink: 0; margin-top: 2px; }
.hero__guarantee-text { display: flex; flex-direction: column; gap: 5px; }
.hero__guarantee-text strong { color: var(--text-bright); font-size: 15.5px; }
.hero__guarantee-text > span { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.hero__visual { display: flex; flex-direction: column; align-items: center; position: relative; min-width: 0; }
.hero__portrait-wrap { position: relative; width: 100%; max-width: 520px; }
.hero__hero-img {
  width: 100%; height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  border-radius: var(--r-lg);
  border: 2px solid var(--color-gold-border);
  box-shadow: 0 0 80px rgba(242, 205, 92, 0.28), 0 20px 60px rgba(0, 0, 0, 0.55);
  position: relative;
  z-index: 2;
}
.hero__portrait-ring {
  position: absolute;
  inset: -14px;
  border-radius: calc(var(--r-lg) + 10px);
  border: 1px dashed var(--color-teal-border);
  animation: pulse-ring 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring { 0%,100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.012); } }

.hero__name-badge {
  position: absolute;
  left: 14px; bottom: -22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 18px 10px 12px;
  border-radius: var(--r-md);
  background: rgba(8, 21, 32, 0.9);
  border: 1px solid var(--color-gold-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.5);
  max-width: calc(100% - 28px);
}
.hero__name-badge-logo {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  overflow: hidden;
  display: inline-flex;
}
.hero__name-badge-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__name-badge-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.hero__name-badge-name { font-size: 11px; color: var(--text-dim); }
.hero__name-badge-text strong {
  font-size: 13.5px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-teal) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__name-badge-text > span:last-child { font-size: 11px; color: var(--text-muted); }

.hero .hero__ctas { justify-content: flex-start; margin-bottom: 0; }
.hero .hero__pills { margin-top: var(--s-11); justify-content: center; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-8); text-align: center; }
  .hero__text { max-width: 100%; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__stats { justify-content: center; }
  .stat-item { align-items: center; text-align: center; min-width: 40%; }
  .stat-divider { display: none; }
  .hero__guarantee { margin-left: auto; margin-right: auto; text-align: left; }
  .hero .hero__ctas { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__portrait-ring { display: none; }
  .hero .hero__pills { margin-top: var(--s-9); }
}
@media (max-width: 640px) {
  .hero__hero-img { aspect-ratio: 16 / 10; }
  .hero__name-badge { left: 10px; bottom: -18px; padding: 8px 14px 8px 9px; }
  .hero__stats { gap: var(--s-4); }
}

/* H1 auf zwei Zeilen halten: "Immobilienmakler" ist ein sehr langes Wort.
   Spezifitaet muss .hero h1 aus dem Basis-Block schlagen. */
.hero h1.hero__h1 {
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.04;
  margin: var(--s-4) 0 var(--s-5);
}
.hero .hero__text { max-width: 680px; }

/* balance verteilt die H1 auf drei gleich lange Zeilen, hier unerwuenscht */
.hero h1.hero__h1 { text-wrap: pretty; }
.hero .hero__inner { grid-template-columns: 1.45fr 1fr; }

/* Eine Kennzahl statt drei */
.hero__stats--single .stat-item { flex: 0 1 auto; }
.hero__stats--single .stat-item__value { font-size: clamp(28px, 3vw, 38px); }
.hero__stats--single .stat-item__label { font-size: 15px; }

/* Bewertungen direkt unter dem Foto */
.hero__reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-9);
}
.hero__review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-bright);
  white-space: nowrap;
}
.hero__review:hover { color: var(--color-teal-light); }
.hero__review strong { font-weight: 800; }
.hero__review-stars { display: inline-flex; gap: 1px; }
.hero__review-count { color: var(--text-dim); font-size: 12.5px; }
.hero__review-sep { width: 1px; height: 20px; background: var(--border-bright); }
.hero__review-note {
  text-align: center;
  font-size: var(--fs-micro);
  color: var(--text-dim);
  max-width: 46ch;
  margin: var(--s-3) auto 0;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .hero__reviews { gap: var(--s-3); margin-top: var(--s-8); }
  .hero__review-sep { display: none; }
}

/* Gebiets-Kachel sitzt jetzt rechts unter den Bewertungen */
.hero__visual .hero__guarantee {
  margin: var(--s-6) 0 0;
  max-width: 520px;
  width: 100%;
  text-align: left;
}

/* ============================================================
   Mobile-Hero. MUSS am Ende stehen und mindestens die
   Spezifitaet von ".hero .hero__inner" haben, sonst greift die
   Desktop-Zweispalter-Regel weiter und die Spalten ueberlappen.
   ============================================================ */
@media (max-width: 900px) {
  .hero .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    text-align: center;
  }
  .hero .hero__text { display: contents; }
  .hero .hero__text > .section-label { order: 1; align-self: center; margin-bottom: 0; }
  .hero h1.hero__h1 { order: 2; margin: 18px 0 0; }
  .hero .hero__sub { order: 3; margin: 16px auto 0; max-width: 100%; }
  .hero .hero__visual { order: 4; margin: 30px auto 0; width: 100%; max-width: 520px; }
  .hero .hero__stats { order: 5; margin-top: 30px; justify-content: center; }
  .hero .hero__ctas { order: 6; margin-top: 28px; justify-content: center; }
  .hero .hero__visual .hero__guarantee { text-align: left; margin-top: var(--s-6); }
  .hero .hero__reviews { margin-top: var(--s-7); }
  .hero .stat-item { align-items: center; text-align: center; }
}
@media (max-width: 640px) {
  .hero .hero__ctas .btn-primary,
  .hero .hero__ctas .btn-secondary { width: 100%; justify-content: center; }
}

/* Bewertungen sitzen jetzt links unter den CTAs */
.hero__text .hero__reviews { justify-content: flex-start; margin-top: var(--s-7); }
.hero__text .hero__review-note { text-align: left; margin-left: 0; max-width: 52ch; }
.hero__visual .hero__guarantee { margin-top: var(--s-8); }
@media (max-width: 900px) {
  .hero .hero__text > .hero__reviews { order: 7; justify-content: center; margin-top: var(--s-7); }
  .hero .hero__text > .hero__review-note { order: 8; text-align: center; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   Hero-Breite: Reste der ersten, zentrierten Hero-Version.
   .hero__inner hatte noch max-width 980px und margin auto, dadurch
   war der Hero schmaler als Navigation und alle anderen Sektionen.
   Zusaetzlich schrumpft .container als Flex-Item auf Inhaltsbreite.
   Nur ab Desktop, damit der Mobile-Block darunter gueltig bleibt.
   ============================================================ */
@media (min-width: 901px) {
  .hero > .container { width: 100%; }
  .hero .hero__inner { max-width: none; margin: 0; text-align: left; }
  .hero .hero__stats { justify-content: flex-start; }
}

/* Nav-Pille exakt auf die Container-Breite, damit Logo und Inhalt fluchten
   (vorher calc(--container-max - 16px), das ergab 8px Versatz zu allen Sektionen) */
.nav__pill { max-width: var(--container-max); }

/* ============================================================
   QA-Runde 27.08.2026. Dieser Block steht bewusst GANZ am Ende und
   arbeitet durchgehend mit mindestens der Spezifitaet der Regel, die er
   ueberschreibt. Grund: dreimal hat hier eine spaetere, aber
   unspezifischere Regel nicht gegriffen.
   ============================================================ */

/* ---------- 1. Vertrauensanker am Formular ---------- */
.form-trust {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  max-width: 520px;
  margin: var(--s-6) auto 0;
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
  text-align: left;
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.form-trust svg { color: var(--color-teal); flex-shrink: 0; margin-top: 2px; }

/* ---------- 2. Sekundaerer Hero-CTA optisch zuruecknehmen ----------
   Vorher gleiche Button-Optik wie der primaere, dadurch zwei gleichrangige
   Angebote im Hero. Jetzt klar nachgeordnet, bleibt aber 44px hoch. */
.hero .hero__ctas .btn-secondary {
  background: transparent;
  border-color: transparent;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  box-shadow: none;
}
.hero .hero__ctas .btn-secondary:hover {
  background: transparent;
  color: var(--text-bright);
  text-decoration-color: var(--color-teal);
}

/* ---------- 3. Kleinstschriften anheben ---------- */
.pricing-card .pricing-card__tag { font-size: 11px; letter-spacing: 0.06em; padding: 5px 13px; }
.nav__cta-pill .cta-sub { font-size: 11px; }
.hero__name-badge .hero__name-badge-name { font-size: 12.5px; }
.case-card .case-card__soon { font-size: 12px; }

/* ---------- 4. Touch-Targets auf mindestens 44px ----------
   Gemessen bei 390px: Footer-Links 15 bis 17px, Bewertungs-Links 22px.
   WCAG 2.2 AA (2.5.8) verlangt 24px, Apple und Google empfehlen 44px. */
footer ul { gap: 0; }
footer ul li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 2px 0;
}
.hero__reviews .hero__review { min-height: 44px; align-items: center; }
.nav .nav__logo { min-height: 44px; }
#gebiets-form p a { display: inline-block; padding: 14px 4px; margin: -14px 0; }

/* ============================================================
   5. Vergleichstabelle mobil.
   Zwei Fehler in einem: (a) ".own-frame" ist absolut im Scroll-Container
   positioniert und stand deshalb quer ueber den fremden Spalten, weil sich
   "right:0; width:33%" auf die 342px breite Sichtbox bezog statt auf die
   720px breite Tabelle. (b) Von der Tabelle war mobil nur "Portal-Leads"
   sichtbar, die eigene Spalte lag hinter einem Scroll ohne Hinweis.
   Loesung: unter 768px keine Tabelle mehr, sondern eine Karte je Kriterium.
   Die Labels kommen aus data-label an den Zellen.
   768px, weil der Container dort auf 720px faellt und die Tabelle
   (min-width 720px) genau ab da ueberlaeuft.
   ============================================================ */
@media (max-width: 767px) {
  .comp-wrap .own-frame { display: none; }
  .table-wrap.comp-wrap { overflow-x: visible; }
  .comp-wrap .comp-table { min-width: 0; width: 100%; display: block; background: none; border: 0; }
  .comp-wrap .comp-table thead,
  .comp-wrap .comp-table colgroup { display: none; }
  .comp-wrap .comp-table tbody { display: block; }

  .comp-wrap .comp-table tbody tr {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 15px 17px 6px;
    margin-bottom: 12px;
  }
  .comp-wrap .comp-table tbody th[scope="row"] {
    display: block;
    padding: 0 0 10px;
    border: 0;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-bright);
  }
  .comp-wrap .comp-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    padding: 9px 0;
    border: 0;
    border-top: 1px solid var(--border);
    font-size: 14.5px;
    text-align: right;
  }
  .comp-wrap .comp-table tbody td::before {
    content: attr(data-label);
    flex: 0 0 auto;
    text-align: left;
    color: var(--text-dim);
    font-size: 13.5px;
  }
  /* Die eigene Spalte ist mobil die letzte Zeile jeder Karte und wird
     hervorgehoben, damit sie nicht mehr untergeht. */
  .comp-wrap .comp-table tbody td.own-col {
    margin: 4px -17px 0;
    padding: 11px 17px;
    border-top: 1px solid var(--color-gold-border);
    background: linear-gradient(135deg, rgba(242,205,92,0.10) 0%, rgba(111,191,177,0.08) 100%);
    border-radius: 0 0 var(--r-md) var(--r-md);
    color: var(--text-bright);
  }
  .comp-wrap .comp-table tbody td.own-col::before { color: var(--color-gold); font-weight: 700; }
  .comp-wrap .comp-table tbody td.own-col strong { color: var(--text-bright); }
}

/* ============================================================
   6. Hero-Reihenfolge mobil.
   Gemessen bei 390x844: die CTAs begannen erst bei y=988, also unter dem
   Fold, weil das Foto 411px des ersten Bildschirms belegte. Kennzahl und
   CTAs wandern jetzt vor das Bild.
   Muss die Spezifitaet des Blocks "@media (max-width:900px) .hero ..."
   weiter oben erreichen, deshalb ueberall ".hero" davor.
   ============================================================ */
@media (max-width: 900px) {
  .hero .hero__stats { order: 4; margin-top: 26px; }
  .hero .hero__ctas { order: 5; margin-top: 24px; }
  .hero .hero__visual { order: 6; margin-top: 34px; }
  .hero .hero__text > .hero__reviews { order: 7; }
  .hero .hero__text > .hero__review-note { order: 8; }
}

/* Letzte Kleinschrift im Hero-Badge, gemessen 11px */
.hero__name-badge .hero__name-badge-text > span:last-child { font-size: 12.5px; }
