/* Steuerkanzlei Fenzl — Website
   Design-System "Bluemont-Stil, Fenzl-CI": Indigo als Markenfarbe, Manrope (Headlines) +
   Karla (Fließtext), Karten-Raster statt Fließtext-Listen, dunkle Indigo-Bänder für
   Auszeichnung/Kontakt, Rot/Grün weiterhin für die Vergleichstabelle. */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Karla";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/karla-variable.woff2") format("woff2");
}

:root {
  --bg: #FFFFFF;
  --bg-alt: #F0F0F8;
  --bg-dark: #22225F;
  --rule: #E2E2EF;
  --text: #374151;
  --text-strong: #0B0B12;
  --text-muted: #6B7280;
  --indigo: #303093;
  --indigo-dark: #22225F;
  --indigo-pale: #C6C5EA;
  --indigo-pale-2: #9C9AE0;
  --green: #2F6B4C;
  --red: #9C3B2E;
  --red-muted: #7A5148;
  --max: 1240px;
  --radius: 10px;
  --font-head: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--indigo); text-decoration: none; }
a:hover { color: var(--indigo-dark); }
h1, h2, h3 { font-family: var(--font-head); font-weight: 800; margin: 0; color: var(--text-strong); letter-spacing: -0.01em; }
p { margin: 0; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
}
.eyebrow.is-red { color: var(--red); }
.eyebrow.is-green { color: var(--green); }
.eyebrow.on-dark { color: var(--indigo-pale-2); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 72px; }
.section { padding: 96px 0; }
.section.is-tight { padding: 64px 0; }
.section.bg-alt { background: var(--bg-alt); }
.section.bg-dark { background: var(--bg-dark); }
.section.bg-indigo { background: var(--indigo); }

/* Header */
.site-header {
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  z-index: 50;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 32px; height: 32px; border-radius: 4px; }
.brand span {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-strong);
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.main-nav a.nav-link.is-active { color: var(--text-strong); font-weight: 700; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 5px; font-size: 15px; font-weight: 500; color: var(--text); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-strong);
  position: relative;
  transition: transform 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.btn-sm { font-size: 14px; padding: 11px 20px; }
.btn-primary { background: var(--indigo); color: #FFFFFF; }
.btn-primary:hover { background: var(--indigo-dark); color: #FFFFFF; }
.btn-on-light { background: #FFFFFF; color: var(--indigo); }
.btn-on-light:hover { color: var(--indigo-dark); }
.btn-outline {
  background: transparent;
  border: 1.5px solid #D7D7E8;
  color: var(--text-strong);
}
.btn-outline:hover { color: var(--indigo); border-color: var(--indigo); }

/* Hero — centered (Für Selbstbucher) */
.hero-centered {
  padding: 88px 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero-centered h1 { font-size: 56px; line-height: 1.1; max-width: 840px; }
.hero-centered .lead { font-size: 18px; line-height: 1.6; color: var(--text-muted); max-width: 620px; }
.hero-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.home-hero .hero-cta-row,
.home-hero-copy .hero-cta-row { justify-content: flex-start; }

/* Hero — Startseite: asymmetrisch, mit grafischer Beweis-Karte statt Zentrierung */
.home-hero { position: relative; padding: 68px 0 0; overflow: hidden; }
.home-hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 48px;
  padding-bottom: 64px;
}
.home-hero-copy { display: flex; flex-direction: column; gap: 24px; }
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--indigo);
  background: #FFFFFF;
  border: 1px solid var(--indigo-pale);
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  opacity: 0;
  animation: locationLineIn 0.7s ease 0.35s forwards;
}
.eyebrow-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--indigo); flex: none; }
.home-hero h1 { font-size: 60px; line-height: 1.05; letter-spacing: -0.02em; max-width: 600px; }
.home-hero h1 .accent { color: var(--indigo); }
.home-hero .lead { font-size: 18px; line-height: 1.6; color: var(--text-muted); max-width: 500px; }

.home-hero-visual {
  position: relative;
  height: 460px;
  border-radius: 24px;
  background: var(--bg-alt);
  overflow: hidden;
}
.home-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--indigo-pale) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.55;
}
.home-hero-visual::after {
  content: "";
  position: absolute;
  right: -70px; bottom: -70px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: var(--indigo);
  opacity: 0.09;
}
/* Hero — split (Karriere) */
.hero-split .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: stretch; gap: 56px; }
.hero-split .hero-copy { padding: 92px 0 76px; display: flex; flex-direction: column; gap: 24px; justify-content: center; }
.hero-split h1 { font-size: 46px; line-height: 1.14; max-width: 480px; }
.hero-split .lead { font-size: 17px; line-height: 1.65; color: var(--text-muted); max-width: 460px; }
.hero-split .hero-media { position: relative; overflow: hidden; min-height: 480px; border-radius: 20px; }
.hero-split .hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Hero photo band with caption (Startseite) */
.hero-photo-band { position: relative; height: 420px; overflow: hidden; }
.hero-photo-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-photo-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,11,18,0.55) 0%, rgba(11,11,18,0) 45%);
}
.hero-photo-band .caption { position: absolute; left: 72px; bottom: 28px; color: #FFFFFF; z-index: 1; }
.hero-photo-band .caption .name { font-family: var(--font-head); font-size: 18px; font-weight: 800; }
.hero-photo-band .caption .role { font-size: 13px; color: #E5E4F5; margin-top: 2px; }

/* Fakten & Zahlen (4-col stat bar, dunkles Vollformat-Band) */
.stats-band { background: var(--indigo-dark); }
.stats-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-4 > div { padding: 44px 32px 44px 0; border-right: 1px solid rgba(255, 255, 255, 0.14); }
.stats-4 > div:last-child { border-right: none; padding-left: 32px; }
.stats-4 > div:first-child { padding-left: 0; }
.stat-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--indigo-pale-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.stat-num { font-family: var(--font-head); font-size: 38px; font-weight: 800; color: #FFFFFF; }
.stat-label { font-size: 14px; color: var(--indigo-pale); margin-top: 6px; line-height: 1.4; }

/* Section headers */
.section-head { max-width: 600px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: 34px; line-height: 1.25; }
.section-head p.lede { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin-top: 16px; }
.section-head.is-left { text-align: left; margin-left: 0; }

/* Card grids (Leistungen, Branchen, Prozess) */
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { background: #FFFFFF; border-radius: var(--radius); padding: 30px 26px; }
.card-outline { border: 1px solid var(--rule); border-radius: var(--radius); padding: 32px; }
.card svg.icon, .card-outline svg.icon { color: var(--indigo); margin-bottom: 18px; }
.card h3, .card-outline h3 { font-size: 16px; margin-bottom: 10px; }
.card-outline h3 { font-size: 17px; }
.card p, .card-outline p { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); }
.card-outline p { font-size: 14px; }

/* Reusable "mehr erfahren" link (also used standalone inside cards) */
.more-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--indigo); margin-top: 6px; font-size: 14px; }
.card .more-link, .card-outline .more-link { margin-top: 16px; }

/* Breadcrumbs */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0; font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--indigo); }
.breadcrumb .sep { margin: 0 8px; color: var(--rule); }
.breadcrumb .current { color: var(--text-strong); font-weight: 600; }

/* Sub-page hero (Leistungen/Branchen hubs & detail pages) */
.sub-hero { padding: 48px 0 8px; }
.sub-hero h1 { font-size: 40px; line-height: 1.16; max-width: 760px; }
.sub-hero .lead { font-size: 17px; line-height: 1.65; color: var(--text-muted); max-width: 640px; margin-top: 16px; }

/* Feature split (Digitale Kanzlei) */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-split .copy { display: flex; flex-direction: column; gap: 18px; }
.feature-split h2 { font-size: 30px; line-height: 1.3; }
.feature-split p { font-size: 15.5px; line-height: 1.7; color: var(--text-muted); }
.feature-split img { width: 100%; height: 340px; object-fit: cover; border-radius: var(--radius); }
.feature-split .more-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--indigo); margin-top: 6px; }

/* Auszeichnung (dark award band) */
.award-band { background: var(--bg-dark); padding: 72px 0; }
.award-band .wrap { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; text-align: left; }
.award-band img { height: 96px; width: auto; }
.award-band .copy { max-width: 560px; }
.award-band h2 { font-size: 24px; line-height: 1.35; color: #FFFFFF; margin-bottom: 10px; }
.award-band p { font-size: 14.5px; color: var(--indigo-pale); }

/* Comparison table */
.compare-head {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--text-strong);
}
.compare-head .col-bad { color: var(--red); }
.compare-head .col-good { color: var(--green); }
.compare-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  font-size: 14.5px;
  line-height: 1.55;
  border-bottom: 1px solid var(--rule);
}
.compare-row .criterion { padding: 20px 16px 20px 0; font-weight: 700; color: var(--text-strong); font-family: var(--font-head); }
.compare-row .bad, .compare-row .good {
  padding: 20px 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.compare-row .bad { color: var(--red-muted); }
.compare-row .good { color: var(--text-strong); border-left: 1px solid var(--rule); padding-left: 20px; }
.compare-row .bad svg { color: var(--red); flex-shrink: 0; margin-top: 3px; }
.compare-row .good svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* Process steps (card grid on bg-alt) */
.step-card { background: #FFFFFF; border-radius: var(--radius); padding: 32px; }
.step-num { font-family: var(--font-head); font-weight: 800; font-size: 34px; color: var(--indigo); margin-bottom: 14px; }
.step-card h3 { font-size: 16px; margin-bottom: 10px; }
.step-card p { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* Bio / about */
.bio-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.bio-grid img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius); }
.bio-grid blockquote { font-family: var(--font-head); font-weight: 700; font-size: 24px; line-height: 1.4; margin: 18px 0 20px; color: var(--text-strong); }
.bio-grid p.body { font-size: 15.5px; line-height: 1.75; color: var(--text-muted); max-width: 560px; margin-bottom: 18px; }
.bio-grid .sig { font-size: 14px; font-weight: 600; color: var(--indigo); }

.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.about-grid img { width: 100%; height: 340px; object-fit: cover; border-radius: var(--radius); }
.about-grid p.body { font-size: 15.5px; line-height: 1.75; color: var(--text-muted); max-width: 520px; margin-top: 14px; }

/* CTA band */
.cta-band { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.cta-band h2 { font-size: 36px; line-height: 1.25; color: #FFFFFF; max-width: 620px; }
.cta-band p { font-size: 16px; color: var(--indigo-pale); }

/* Referenzen / testimonials */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { border: 1px solid var(--rule); border-radius: var(--radius); padding: 28px; }
.review-card.on-alt { background: #FFFFFF; border: none; }
.review-card blockquote { font-family: var(--font-sans); font-weight: 400; font-size: 15px; line-height: 1.6; color: var(--text); margin: 0 0 16px; }
.review-card .who { font-size: 13px; color: var(--text-muted); }

/* Kontaktformular (dark split with form card) */
.contact-split { background: var(--bg-dark); padding: 96px 0; }
.contact-split .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; color: #FFFFFF; }
.contact-info h2 { color: #FFFFFF; font-size: 32px; line-height: 1.3; }
.contact-info p.lead { color: var(--indigo-pale); font-size: 15px; line-height: 1.7; max-width: 420px; }
.contact-details { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; color: #E5E4F5; }
.contact-form-card { background: #FFFFFF; border-radius: 12px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.form-field label { font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; display: block; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-strong);
  background: #FFFFFF;
}
.form-field textarea { min-height: 96px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--indigo); outline-offset: 1px; }
.form-submit {
  display: flex; align-items: center; justify-content: center;
  background: var(--indigo); color: #FFFFFF;
  padding: 14px; border-radius: 6px; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer; margin-top: 6px; font-family: var(--font-sans);
}
.form-submit:hover { background: var(--indigo-dark); }

/* Footer */
.site-footer { padding-top: 56px; border-top: 1px solid var(--rule); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.footer-col a, .footer-col span { font-size: 14px; color: var(--text); display: block; margin-bottom: 10px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 26px; height: 26px; border-radius: 4px; }
.footer-brand span { font-family: var(--font-head); font-size: 14px; font-weight: 800; margin: 0; color: var(--text-strong); }
.footer-tagline { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); max-width: 260px; }

/* Footer-Kartenausschnitt (Google Maps, DSGVO-konform erst nach Einwilligung geladen) */
.footer-map { margin-top: 4px; border-radius: 10px; overflow: hidden; border: 1px solid var(--rule); }
.gmap-embed { position: relative; height: 150px; background: var(--bg-alt); }
.gmap-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.gmap-embed .consent-placeholder { position: absolute; inset: 0; height: auto; padding: 12px 10px; gap: 6px; }
.gmap-embed .consent-placeholder-icon { width: 30px; height: 30px; }
.gmap-embed .consent-placeholder-icon svg { width: 15px; height: 15px; }
.gmap-embed .consent-placeholder h3 { font-size: 12.5px; margin: 0; }
.gmap-embed .consent-placeholder p { font-size: 11px; line-height: 1.4; max-width: none; }
.gmap-embed .consent-placeholder .btn { font-size: 11.5px; padding: 7px 12px; }
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding: 22px 0 40px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a { color: var(--text-muted); }
.footer-minimal { border-top: 1px solid var(--rule); padding: 24px 0 40px; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-minimal a { color: var(--text-muted); }
.footer-minimal .legal-links { display: flex; gap: 24px; }
.footer-center { display: flex; align-items: center; justify-content: center; padding: 22px 0; border-bottom: 1px solid var(--rule); }

/* Legal / prose pages */
.prose { max-width: 760px; }
.prose h1 { font-size: 36px; margin-bottom: 28px; }
.prose h2 { font-size: 21px; margin: 40px 0 12px; font-family: var(--font-head); font-weight: 800; }
.prose h3 { font-size: 16px; margin: 24px 0 8px; font-family: var(--font-head); font-weight: 700; }
.prose p, .prose li { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 14px; }
.prose a { text-decoration: underline; }
.prose ul { padding-left: 20px; }

/* Simple booking placeholder */
.booking-embed {
  width: 100%;
  max-width: 960px;
  height: 600px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin: 0 auto;
  gap: 10px;
  flex-direction: column;
  text-align: center;
  font-size: 14px;
}
.booking-note-row { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.booking-note-row .item { font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.booking-note-row .item svg { color: var(--green); }

/* FAQ */
.faq-row {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}
.faq-row:last-child { border-bottom: 1px solid var(--rule); }
.faq-row .q { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--text-strong); }
.faq-row .a { font-size: 15px; line-height: 1.65; color: var(--text-muted); }

/* Challenge tiles (Herausforderungen) */
.tile-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tile-outline { border: 1px solid var(--rule); border-radius: var(--radius); padding: 28px; }
.tile-outline svg.mark { margin-bottom: 14px; }
.tile-outline h3 { font-family: var(--font-head); font-size: 15.5px; font-weight: 700; margin-bottom: 8px; color: var(--text-strong); }
.tile-outline p { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1080px) {
  .wrap { padding: 0 40px; }
  .hero-centered h1 { font-size: 44px; }
  .hero-split h1 { font-size: 38px; }
  .sub-hero h1 { font-size: 32px; }
  .section { padding: 72px 0; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3, .tile-grid-3, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-4 > div:nth-child(2n) { border-right: none; padding-left: 32px; }
  .stats-4 > div:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 24px; margin-top: 8px; }
  .bio-grid, .about-grid, .feature-split, .contact-split .wrap { gap: 40px; }
  .home-hero h1 { font-size: 48px; max-width: 100%; }
  .home-hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .home-hero-visual { height: 340px; order: -1; }
}

@media (max-width: 860px) {
  .main-nav { position: fixed; inset: 73px 0 0 0; background: var(--bg); flex-direction: column; align-items: flex-start; padding: 28px 40px; gap: 22px; overflow-y: auto; display: none; }
  .main-nav.is-open { display: flex; }
  .main-nav .btn { margin-top: 8px; }
  .nav-toggle { display: block; }
  .hero-split .wrap { grid-template-columns: 1fr; gap: 0; }
  .hero-split .hero-copy { padding: 56px 0 40px; order: 2; }
  .hero-split .hero-media { min-height: 320px; order: 1; }
  .hero-split h1 { font-size: 34px; }
  .hero-centered h1 { font-size: 34px; }
  .hero-photo-band { height: 300px; }
  .hero-photo-band .caption { left: 40px; }
  .card-grid-4, .card-grid-3, .card-grid-2, .tile-grid-3, .review-grid { grid-template-columns: 1fr; }
  .stats-4 { grid-template-columns: 1fr; }
  .stats-4 > div { border-right: none !important; padding: 24px 0 0 !important; border-top: 1px solid rgba(255, 255, 255, 0.14); margin-top: 8px; }
  .stats-4 > div:first-child { border-top: none; margin-top: 0; }
  .stats-4 > div:last-child { padding-bottom: 28px !important; }
  .home-hero { padding-top: 48px; }
  .home-hero h1 { font-size: 36px; }
  .home-hero-visual { height: 280px; }
  .feature-split, .about-grid, .bio-grid { grid-template-columns: 1fr; }
  .feature-split img, .about-grid img, .bio-grid img { height: 300px; order: -1; }
  .award-band .wrap { flex-direction: column; text-align: center; gap: 28px; }
  .award-band .copy { text-align: center; }
  .compare-head, .compare-row { grid-template-columns: 1fr; }
  .compare-head .col-bad, .compare-head .col-good { padding: 10px 0 4px; }
  .compare-row .criterion { padding: 20px 0 6px; }
  .compare-row .good { border-left: none; padding-left: 0; border-top: 1px dashed var(--rule); padding-top: 12px; margin-top: 4px; }
  .contact-split .wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-row { grid-template-columns: 1fr; gap: 8px; }
  .booking-embed { height: 420px; }
}

@media (max-width: 540px) {
  .wrap { padding: 0 22px; }
  .site-header .wrap { padding-top: 18px; padding-bottom: 18px; }
  .hero-split .hero-copy { padding: 40px 0 32px; }
  .hero-centered { padding: 56px 0 40px; }
  .hero-split h1, .hero-centered h1, .sub-hero h1 { font-size: 28px; }
  .hero-centered .lead, .hero-split .lead { font-size: 16px; }
  .section { padding: 56px 0; }
  .section-head h2 { font-size: 26px; }
  .cta-band h2 { font-size: 26px; }
  .award-band h2 { font-size: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom, .footer-minimal { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .hero-cta-row .btn { width: 100%; }
  .booking-note-row { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ============== STARTSEITE RELAUNCH (Sept. 2026) ============== */
.home-hero h1 { font-size: 50px; line-height: 1.1; max-width: 640px; }
.home-hero .lead a { font-weight: 700; white-space: nowrap; }
.trust-row { display: flex; align-items: center; gap: 18px; margin-top: 8px; padding-top: 22px; border-top: 1px solid var(--rule); }
.trust-row img { height: 56px; width: auto; flex: none; }
.trust-items { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 13.5px; font-weight: 700; color: var(--text-strong); }
.trust-items span { position: relative; padding-left: 12px; }
.trust-items span::before { content: ""; position: absolute; left: 0; top: 50%; width: 5px; height: 5px; margin-top: -2.5px; border-radius: 50%; background: var(--indigo-pale-2); }

.intro-band { background: var(--bg-dark); padding: 56px 0; }
.intro-band p { max-width: 880px; margin: 0 auto; text-align: center; font-family: var(--font-head); font-weight: 500; font-size: 21px; line-height: 1.6; color: #E5E4F5; }
.intro-band strong { color: #FFFFFF; font-weight: 800; }

.audience-card { display: flex; flex-direction: column; color: inherit; transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.audience-card:hover { color: inherit; border-color: var(--indigo); box-shadow: 0 10px 30px rgba(48, 48, 147, 0.10); transform: translateY(-2px); }
.audience-card p { flex: 1; }
.audience-card .more-link { margin-top: 20px; }
.fine-print { max-width: 820px; margin: 32px auto 0; text-align: center; font-size: 13.5px; line-height: 1.65; font-style: italic; color: var(--text-muted); }

.pain-card { border-left: 3px solid var(--indigo); }
.pain-card h3 { font-size: 17px; }
.pain-card p { font-size: 14.5px; }
.section-close { text-align: center; margin-top: 36px; font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--text-strong); }
.section-close a { white-space: nowrap; }

.pillars > div { border-top: 2px solid var(--indigo); padding-top: 24px; }
.pillar-num { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: 0.12em; color: var(--indigo-pale-2); margin-bottom: 10px; }
.pillars h3 { font-size: 24px; margin-bottom: 12px; }
.pillars p { font-size: 15px; line-height: 1.7; color: var(--text-muted); }

.services-split { align-items: start; }
.service-list { list-style: none; margin: 0; padding: 0; background: #FFFFFF; border-radius: var(--radius); }
.service-list li { padding: 22px 28px; border-bottom: 1px solid var(--rule); }
.service-list li:last-child { border-bottom: none; }
.service-list h3 { font-size: 16px; margin-bottom: 6px; }
.service-list p { font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }

.step-card-outline { border: 1px solid var(--rule); }
.center-cta { display: flex; justify-content: center; margin-top: 40px; }

.bio-title { font-size: 30px; line-height: 1.3; margin: 10px 0 20px; }
.bio-grid img { object-position: center 20%; }
.bio-grid p.body strong { color: var(--text-strong); }

.fee-block { max-width: 820px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.fee-block h2 { font-size: 30px; }
.fee-block p { font-size: 16px; line-height: 1.75; color: var(--text-muted); }

.faq-list { max-width: 1000px; margin: 0 auto; }
.faq-row .a a { font-weight: 700; white-space: nowrap; }

.contact-details a { color: #E5E4F5; }
.contact-details a:hover { color: #FFFFFF; }
.contact-split.is-booking .wrap { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
.booking-card { background: #FFFFFF; border-radius: 12px; overflow: hidden; min-height: 700px; }
.booking-card .calendly-inline-widget { width: 100%; }

@media (max-width: 1080px) {
  .home-hero h1 { font-size: 42px; }
  .intro-band p { font-size: 19px; }
}
@media (max-width: 860px) {
  .home-hero h1 { font-size: 34px; }
  .intro-band { padding: 44px 0; }
  .intro-band p { font-size: 17px; text-align: left; }
  .trust-row { align-items: flex-start; }
  .service-list li { padding: 20px 22px; }
}
@media (max-width: 540px) {
  .home-hero h1 { font-size: 29px; }
  .trust-row img { height: 46px; }
  .fee-block { text-align: left; align-items: flex-start; }
  .fine-print { text-align: left; }
}
@media (max-width: 1080px) {
  .contact-split.is-booking .wrap { grid-template-columns: 1fr; }
}
#termin, #fuer-wen, #faq, #leistungen, #ueber-uns { scroll-margin-top: 80px; }

/* ============== HUB-SEITEN (Selbstbucher / Holding / Immobilien) ============== */
.hub-hero { padding-top: 36px; }
.hub-hero .breadcrumb { margin-bottom: -8px; }
.hub-hero h1 { font-size: 48px; }
.fit-split { align-items: start; }
.fit-split h2 { font-size: 28px; }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; font-size: 15.5px; line-height: 1.6; color: var(--text); }
.check-list li::before { content: ""; position: absolute; left: 2px; top: 5px; width: 14px; height: 8px; border-left: 2px solid var(--indigo); border-bottom: 2px solid var(--indigo); transform: rotate(-45deg); }
.split-box { background: #FFFFFF; border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 14px; border-top: 4px solid var(--indigo); }
.split-box h3 { font-size: 20px; }
.split-box p { font-size: 15px; line-height: 1.7; color: var(--text-muted); }
.split-table { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.split-table > div { display: flex; align-items: center; gap: 14px; background: var(--bg-alt); border-radius: 8px; padding: 14px 16px; font-size: 14.5px; font-weight: 700; color: var(--text-strong); }
.who-tag { flex: none; min-width: 48px; text-align: center; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 8px; border-radius: 4px; background: #FFFFFF; color: var(--indigo); border: 1px solid var(--indigo-pale); }
.who-tag.is-us { background: var(--indigo); color: #FFFFFF; border-color: var(--indigo); }
.xref-box { margin-top: 14px; padding: 22px 24px; border: 1px solid var(--indigo-pale); border-radius: var(--radius); background: #FFFFFF; display: flex; flex-direction: column; gap: 6px; }
.xref-box p { font-size: 14.5px !important; }
.badge-row { display: flex; align-items: center; gap: 18px; margin-top: 8px; }
.badge-row img { height: 72px !important; width: auto !important; border-radius: 0 !important; object-fit: contain !important; }
.badge-row span { font-family: var(--font-head); font-weight: 800; color: var(--text-strong); font-size: 16px; line-height: 1.4; }
.badge-row small { font-family: var(--font-sans); font-weight: 400; font-size: 13px; color: var(--text-muted); }
.reviews-below { margin-top: 56px; }

@media (max-width: 1080px) {
  .hub-hero h1 { font-size: 40px; }
}
@media (max-width: 860px) {
  .hub-hero h1 { font-size: 32px; }
  .hub-hero .home-hero-copy { order: 1; }
  .fit-split h2 { font-size: 24px; }
  .badge-row img { height: 56px !important; order: 0 !important; }
}
@media (max-width: 540px) {
  .hub-hero h1 { font-size: 28px; }
  .split-box { padding: 24px 20px; }
}
.trust-badges { display: flex; gap: 10px; flex: none; }
.trust-badges img { height: 56px; width: auto; }
.trust-row > img { display: none; }
@media (max-width: 540px) { .trust-badges img { height: 46px; } }

/* Strukturdiagramm (Hub Holding) */
.structure-diagram { background: var(--bg-alt); border-radius: 8px; padding: 22px 18px 16px; display: flex; flex-direction: column; align-items: center; }
.structure-diagram .node { background: #FFFFFF; border: 1.5px solid var(--indigo-pale); border-radius: 6px; padding: 9px 14px; font-family: var(--font-head); font-weight: 800; font-size: 13.5px; color: var(--text-strong); text-align: center; }
.structure-diagram .node-top { background: var(--indigo); border-color: var(--indigo); color: #FFFFFF; }
.structure-diagram .branches { position: relative; width: 50%; height: 26px; border-top: 1.5px solid var(--indigo-pale-2); margin-top: 13px; }
.structure-diagram .branches::before { content: ""; position: absolute; left: 50%; top: -14px; height: 13px; border-left: 1.5px solid var(--indigo-pale-2); }
.structure-diagram .branches span { position: absolute; top: 0; height: 26px; border-left: 1.5px solid var(--indigo-pale-2); }
.structure-diagram .branches span:first-child { left: 0; }
.structure-diagram .branches span:last-child { right: 0; }
.structure-diagram .node-row { display: flex; justify-content: space-between; width: 100%; gap: 12px; }
.structure-diagram .node-row .node { width: 46%; }
.structure-diagram .diagram-caption { text-align: center; margin-top: 14px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--indigo); }

/* Objekt-Stapel (Hub Immobilien) */
.object-stack { display: flex; flex-direction: column; gap: 8px; background: var(--bg-alt); border-radius: 8px; padding: 16px; }
.object-row { display: flex; align-items: center; gap: 12px; background: #FFFFFF; border-radius: 6px; padding: 10px 12px; font-size: 13px; color: var(--text-muted); }
.object-tag { flex: none; min-width: 86px; text-align: center; font-family: var(--font-head); font-weight: 800; font-size: 12.5px; color: var(--indigo); background: var(--bg-alt); border: 1px solid var(--indigo-pale); border-radius: 4px; padding: 5px 8px; }
.object-row.is-total { margin-top: 4px; border: 1.5px solid var(--indigo); font-weight: 700; color: var(--text-strong); }
.object-row.is-total .object-tag { background: var(--indigo); color: #FFFFFF; border-color: var(--indigo); }
.bio-grid > *, .about-grid > *, .feature-split > * { min-width: 0; }

/* Danke-Seiten */
.thanks-hero { padding-top: 72px; }
.thanks-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; }
.thanks-check { width: 64px; height: 64px; border-radius: 50%; background: var(--indigo); color: #FFFFFF; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.thanks-wrap h1 { font-size: 44px; line-height: 1.12; max-width: 760px; }
.thanks-wrap .lead { font-size: 17px; line-height: 1.65; color: var(--text-muted); max-width: 640px; }
.thanks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; text-align: left; width: 100%; }
.thanks-grid .split-box { background: var(--bg-alt); }
.thanks-steps ol { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 10px; font-size: 15px; line-height: 1.6; color: var(--text); }
.thanks-steps a { font-weight: 700; white-space: nowrap; }
.thanks-links { justify-content: center !important; margin-top: 24px; }
@media (max-width: 860px) {
  .thanks-grid { grid-template-columns: 1fr; }
  .thanks-wrap h1 { font-size: 32px; }
}
@media (max-width: 540px) {
  .thanks-hero { padding-top: 48px; }
  .thanks-wrap h1 { font-size: 27px; }
}

/* Siegel-Vorteile (Lexware-Unterseite) */
.seal-split { display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: center; }
.seal-split > img { width: 180px; height: auto; box-shadow: 0 10px 30px rgba(11, 11, 18, 0.08); }
.benefit-card { border-top: 3px solid var(--indigo); }
.benefit-card h3 { font-size: 17px; }
.benefit-card p { font-size: 14.5px; }
@media (max-width: 1080px) { .seal-split { grid-template-columns: 1fr; justify-items: center; } .seal-split > img { width: 140px; } }

/* Booking CTA card (Popup statt Inline-Widget auf den Conversion-Seiten) */
.booking-card--cta { min-height: 0; padding: 40px 36px; display: flex; align-items: center; }
.booking-cta { display: flex; flex-direction: column; gap: 14px; }
.booking-cta h3 { font-size: 22px; line-height: 1.3; color: var(--text-strong); margin: 0; }
.booking-cta p { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.booking-cta .btn { align-self: flex-start; margin-top: 6px; }
.booking-cta-note { font-size: 13px; color: var(--text-muted); }
.booking-cta-note a { color: var(--indigo); text-decoration: underline; }
@media (max-width: 860px) {
  .booking-card--cta { padding: 32px 24px; }
}

/* ============== ÜBERARBEITUNG 16.09.2026 ============== */

/* Ablauf: schmale Pfeil-Dreiecke zwischen den Schritten */
.step-flow { column-gap: 44px; }
.step-flow > .step-card { position: relative; }
.step-flow > .step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  right: -32px;
  width: 20px;
  background: var(--indigo-pale);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (max-width: 1080px) {
  .card-grid-3.step-flow { grid-template-columns: repeat(3, 1fr); column-gap: 36px; }
  .step-flow > .step-card { padding: 26px 22px; }
  .step-flow > .step-card:not(:last-child)::after { right: -28px; width: 18px; }
}
@media (max-width: 860px) {
  .card-grid-3.step-flow { grid-template-columns: 1fr; row-gap: 40px; }
  .step-flow > .step-card:not(:last-child)::after {
    top: auto; bottom: -30px; left: 0; right: 0;
    width: auto; height: 18px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}

/* FAQ als Akkordeon (Buchungsseite) */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #FFFFFF; border: 1px solid var(--rule); border-radius: 12px; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.faq-item:hover { border-color: var(--indigo-pale); }
.faq-item[open] { border-color: var(--indigo-pale); box-shadow: 0 8px 24px rgba(48, 48, 147, 0.07); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 24px;
  font-family: var(--font-head); font-weight: 700; font-size: 16.5px; line-height: 1.4;
  color: var(--text-strong);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--indigo); outline-offset: 2px; border-radius: 12px; }
.faq-icon { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--bg-alt); position: relative; transition: background 0.2s ease; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: var(--indigo); border-radius: 1px; transition: transform 0.2s ease; }
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon { background: var(--indigo); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: #FFFFFF; }
.faq-item[open] .faq-icon::after { transform: rotate(0deg); }
.faq-answer { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.7; color: var(--text-muted); max-width: 680px; }
.faq-section-head { text-align: center; margin-bottom: 32px; }
.faq-section-head h2 { font-size: 30px; margin-top: 8px; }
@media (max-width: 540px) {
  .faq-item summary { padding: 18px 18px; font-size: 15.5px; }
  .faq-answer { padding: 0 18px 20px; }
}

/* Leistungen-Übersicht (neu) */
.services-hero { background: var(--bg-alt); padding: 28px 0 56px; }
.services-hero .breadcrumb { margin-bottom: 36px; }
.services-hero-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 56px; align-items: end; }
.services-hero h1 { font-size: 44px; line-height: 1.12; letter-spacing: -0.02em; margin-top: 12px; }
.services-hero .lead { font-size: 17px; line-height: 1.65; color: var(--text-muted); max-width: 600px; margin-top: 18px; }
.services-hero-aside { border-left: 2px solid var(--indigo); padding: 4px 0 4px 24px; display: flex; flex-direction: column; gap: 10px; }
.services-hero-aside p { font-size: 14.5px; line-height: 1.6; color: var(--text); }
.services-hero-aside strong { color: var(--text-strong); }

.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: -32px; position: relative; }
.bento-card {
  background: #FFFFFF; border: 1px solid var(--rule); border-radius: 14px; padding: 30px 28px;
  display: flex; flex-direction: column; color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.bento-card:hover { color: inherit; border-color: var(--indigo-pale-2); box-shadow: 0 12px 32px rgba(48, 48, 147, 0.10); transform: translateY(-2px); }
.bento-card .icon-wrap { width: 46px; height: 46px; border-radius: 10px; background: var(--bg-alt); color: var(--indigo); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.bento-card h2 { font-size: 19px; line-height: 1.3; margin-bottom: 10px; }
.bento-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }
.bento-tags { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.bento-tags li { font-size: 12.5px; font-weight: 700; color: var(--text-strong); background: var(--bg-alt); border-radius: 999px; padding: 5px 11px; }
.bento-card .more-link { margin-top: auto; padding-top: 22px; }
.bento-feature { grid-column: span 2; background: var(--bg-dark); border-color: var(--bg-dark); position: relative; overflow: hidden; }
.bento-feature::after { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; border: 40px solid rgba(255, 255, 255, 0.05); }
.bento-feature:hover { border-color: var(--bg-dark); }
.bento-feature .icon-wrap { background: rgba(255, 255, 255, 0.1); color: #FFFFFF; }
.bento-feature .eyebrow { margin-bottom: 8px; }
.bento-feature h2 { color: #FFFFFF; font-size: 26px; max-width: 520px; }
.bento-feature p { color: var(--indigo-pale); font-size: 15.5px; max-width: 540px; }
.bento-feature .bento-tags li { background: rgba(255, 255, 255, 0.1); color: #FFFFFF; }
.bento-feature .more-link { color: #FFFFFF; }

.selfbook-panel { display: grid; grid-template-columns: 150px 1fr auto; gap: 40px; align-items: center; background: var(--bg-alt); border-radius: 16px; padding: 40px 44px; }
.selfbook-panel img { width: 150px; height: auto; }
.selfbook-panel h2 { font-size: 26px; line-height: 1.3; margin: 8px 0 10px; }
.selfbook-panel p { font-size: 15.5px; line-height: 1.7; color: var(--text-muted); max-width: 560px; }
.selfbook-links { display: flex; flex-direction: column; gap: 10px; }
.selfbook-links .btn { justify-content: center; }
.btn-outline.on-alt { background: #FFFFFF; }

@media (max-width: 1080px) {
  .services-hero-grid { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .services-hero h1 { font-size: 36px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-feature { grid-column: span 2; }
  .selfbook-panel { grid-template-columns: 120px 1fr; }
  .selfbook-panel img { width: 120px; }
  .selfbook-links { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; margin-top: -24px; }
  .bento-feature { grid-column: auto; }
  .bento-feature h2 { font-size: 22px; }
  .selfbook-panel { grid-template-columns: 1fr; padding: 32px 26px; gap: 22px; }
  .selfbook-panel img { width: 110px; }
}
@media (max-width: 540px) {
  .services-hero h1 { font-size: 28px; }
  .bento-card { padding: 26px 22px; }
}

/* Über uns: Auszeichnung als helle Karte, ruhige Farbfolge */
.award-card { display: flex; align-items: center; gap: 40px; border: 1px solid var(--rule); border-radius: 16px; padding: 36px 44px; background: #FFFFFF; }
.award-card img { height: 110px; width: auto; flex: none; }
.award-card h2 { font-size: 22px; line-height: 1.4; margin-bottom: 8px; }
.award-card p { font-size: 15px; line-height: 1.65; color: var(--text-muted); }
.section.bg-alt .tile-outline { background: #FFFFFF; border-color: transparent; }
@media (max-width: 860px) {
  .award-card { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 24px; }
  .award-card img { height: 84px; }
}

/* Standort-Zeile über der Startseiten-Headline (Variante B) */
.location-line { display: flex; align-items: center; gap: 8px; font-size: 15px; line-height: 1.4; color: var(--text-muted); opacity: 0; animation: locationLineIn 0.7s ease 0.35s forwards; }
.location-line svg { flex: none; color: var(--indigo); }
.location-line strong { color: var(--text-strong); font-weight: 700; }
@media (max-width: 540px) { .location-line { align-items: flex-start; font-size: 14px; } .location-line svg { margin-top: 1px; } }
@keyframes locationLineIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .location-line, .eyebrow-pill { animation: none; opacity: 1; } }

/* Team-Visualisierung (Über uns) – Inhaber + 6 Mitarbeitende als versetzte Avatare */
.team-card { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; border: 1px solid var(--rule); border-radius: 16px; padding: 40px 44px; }
.team-stack { display: flex; align-items: center; padding: 8px 0; }
.team-avatar { width: 76px; height: 76px; border-radius: 50%; border: 4px solid #FFFFFF; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; flex: none; margin-left: -20px; box-shadow: 0 4px 14px rgba(34, 34, 95, 0.12); transition: transform 0.2s ease; }
.team-avatar:first-child { margin-left: 0; }
.team-avatar svg { width: 76px; height: 76px; margin-bottom: -18px; flex: none; }
.team-avatar:nth-child(odd) { transform: translateY(-8px); }
.team-avatar:nth-child(even) { transform: translateY(8px); }
.team-avatar:hover { transform: translateY(-14px); }
.team-avatar--lead { width: 92px; height: 92px; object-fit: cover; object-position: center 20%; background: var(--bg-alt); z-index: 7; position: relative; }
.team-avatar:nth-child(2) { background: var(--indigo); color: #FFFFFF; z-index: 6; }
.team-avatar:nth-child(3) { background: var(--indigo-dark); color: var(--indigo-pale); z-index: 5; }
.team-avatar:nth-child(4) { background: var(--indigo-pale-2); color: #FFFFFF; z-index: 4; }
.team-avatar:nth-child(5) { background: var(--indigo); color: var(--indigo-pale); z-index: 3; }
.team-avatar:nth-child(6) { background: var(--indigo-pale); color: var(--indigo); z-index: 2; }
.team-avatar:nth-child(7) { background: var(--bg-alt); color: var(--indigo-pale-2); z-index: 1; }
.team-avatar:not(img) { position: relative; }
.team-copy h2 { font-size: 26px; line-height: 1.3; margin: 8px 0 12px; max-width: 520px; }
.team-num { color: #B8860B; }
.team-copy p { font-size: 15.5px; line-height: 1.7; color: var(--text-muted); max-width: 540px; }
@media (max-width: 1080px) {
  .team-card { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .team-card { padding: 30px 22px; }
  .team-avatar { width: 50px; height: 50px; margin-left: -16px; border-width: 3px; }
  .team-avatar--lead { width: 62px; height: 62px; }
  .team-avatar svg { width: 50px; height: 50px; margin-bottom: -12px; }
  .team-copy h2 { font-size: 22px; }
}
.nowrap { white-space: nowrap; }

/* Hero-Porträt Startseite: näher heranzoomen (Originalbild bleibt unverändert) */
.home-hero-visual img.hero-zoom { transform: scale(1.35); transform-origin: 49% 62%; }
@media (max-width: 1080px) { .home-hero-visual img.hero-zoom { transform: scale(1.45); } }

/* Deko-Kreis und Punktraster über den Hero-Fotos entfernt */
.home-hero-visual::before, .home-hero-visual::after { content: none; }

/* Leistungen-Übersicht v2: ruhige Liste statt Karten */
.svc-hero { padding: 28px 0 40px; }
.svc-hero .breadcrumb { margin-bottom: 40px; }
.svc-hero h1 { font-size: 44px; line-height: 1.12; letter-spacing: -0.02em; max-width: 760px; margin-top: 12px; }
.svc-hero .lead { font-size: 17px; line-height: 1.65; color: var(--text-muted); max-width: 620px; margin-top: 18px; }
.svc-section { padding: 0 0 96px; }
.svc-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--text-strong); }
.svc-list li { border-bottom: 1px solid var(--rule); }
.svc-row { display: grid; grid-template-columns: 56px minmax(0, 1fr) minmax(0, 1fr) 32px; gap: 32px; align-items: center; padding: 30px 8px; color: inherit; transition: background 0.2s ease; }
.svc-row:hover { color: inherit; background: var(--bg-alt); }
.svc-num { font-family: var(--font-head); font-weight: 800; font-size: 14px; letter-spacing: 0.08em; color: var(--indigo-pale-2); }
.svc-title { font-family: var(--font-head); font-weight: 800; font-size: 22px; line-height: 1.3; color: var(--text-strong); }
.svc-desc { font-size: 15.5px; line-height: 1.6; color: var(--text-muted); }
.svc-arrow { color: var(--text-strong); display: flex; justify-content: flex-end; transition: transform 0.2s ease, color 0.2s ease; }
.svc-row:hover .svc-arrow { transform: translateX(4px); color: var(--indigo); }
.svc-note { margin-top: 32px; font-size: 15.5px; color: var(--text-muted); }
.svc-note a { font-weight: 700; white-space: nowrap; }
@media (max-width: 860px) {
  .svc-hero h1 { font-size: 32px; }
  .svc-row { grid-template-columns: 40px minmax(0, 1fr) 24px; gap: 8px 16px; padding: 24px 4px; }
  .svc-desc { grid-column: 2 / 3; }
  .svc-arrow { grid-row: 1; grid-column: 3; }
  .svc-num, .svc-arrow { align-self: start; padding-top: 4px; }
  .svc-title { font-size: 19px; }
  .svc-section { padding-bottom: 64px; }
}
@media (max-width: 540px) { .svc-hero h1 { font-size: 28px; } }

/* ============== ÜBERARBEITUNG 17.09.2026 ============== */

/* --- Mobile Navigation (Fix): backdrop-filter am Header machte den Header zum
   Bezugsrahmen des fixierten Menüs – das Menü war dadurch 0 px hoch. --- */
.legal-link-btn { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }
.legal-link-btn:hover { color: var(--indigo); }
@media (max-width: 860px) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #FFFFFF; }
  .main-nav {
    position: absolute; inset: auto; top: 100%; left: 0; right: 0;
    height: calc(100vh - 69px); height: calc(100dvh - 69px);
    padding: 12px 22px 32px; gap: 0; align-items: stretch;
    border-top: 1px solid var(--rule);
    box-shadow: 0 18px 30px rgba(11, 11, 18, 0.08);
  }
  .main-nav a.nav-link { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--text-strong); padding: 17px 2px; border-bottom: 1px solid var(--rule); }
  .main-nav a.nav-link.is-active { color: var(--indigo); }
  .main-nav .btn { margin-top: 24px; width: 100%; justify-content: center; padding: 16px 20px; font-size: 16px; }
  .nav-toggle { position: relative; width: 40px; height: 40px; margin-right: -8px; }
  .nav-toggle span { margin: 0 auto; }
  .nav-toggle span::before, .nav-toggle span::after { transition: transform 0.2s ease, top 0.2s ease; }
  .nav-toggle[aria-expanded="true"] span { background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
  body.nav-open { overflow: hidden; }
}

/* --- Hero mobil: Botschaft zuerst, Foto als ruhige Karte darunter --- */
.hero-caption { display: none; }
@media (max-width: 860px) {
  .home-hero { padding-top: 28px; background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-alt) 55%, #FFFFFF 100%); }
  .home-hero .wrap { gap: 28px; padding-bottom: 44px; }
  .home-hero-copy { gap: 18px; }
  .home-hero-visual { order: 2; height: 300px; border-radius: 18px; box-shadow: 0 16px 36px rgba(34, 34, 95, 0.14); }
  .home-hero-visual img.hero-zoom { transform: scale(1.4); transform-origin: 62% 66%; }
  .home-hero h1 { font-size: 34px; line-height: 1.12; letter-spacing: -0.02em; }
  .home-hero .lead { font-size: 16.5px; max-width: none; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 4px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .home-hero .btn-outline { background: #FFFFFF; }
  .trust-row { align-items: center; gap: 14px; padding-top: 18px; }
  .trust-items { flex-direction: column; gap: 4px; font-size: 13px; }
  .hero-caption {
    display: flex; flex-direction: column; position: absolute; left: 14px; bottom: 14px; z-index: 1;
    background: rgba(255, 255, 255, 0.94); border-radius: 10px; padding: 9px 14px;
    box-shadow: 0 6px 18px rgba(11, 11, 18, 0.12);
  }
  .hero-caption strong { font-family: var(--font-head); font-size: 14.5px; color: var(--text-strong); }
  .hero-caption span { font-size: 12.5px; color: var(--text-muted); }
  /* Hub-Seiten: Bild als flacheres Band unter der Botschaft */
  .hub-hero { padding-top: 20px; }
  .hub-hero .breadcrumb { margin-bottom: 0; }
  .hub-hero .home-hero-visual { height: 220px; }
  .hub-hero h1 { font-size: 32px; }
}
@media (max-width: 540px) {
  .home-hero h1 { font-size: 30px; }
  .hub-hero h1 { font-size: 28px; }
  .home-hero-visual { height: 260px; }
  .hub-hero .home-hero-visual { height: 190px; }
  .eyebrow-pill { font-size: 11.5px; padding: 7px 13px; }
}

/* --- Selbstbucher: typische Fehler / Pain Points klar als Negativpunkte --- */
.pain-grid { align-items: stretch; }
@supports (grid-template-rows: subgrid) {
  .pain-card--neg { display: grid !important; grid-row: span 2; grid-template-rows: subgrid; row-gap: 0; }
}
.pain-card--neg { background: #FFFFFF; border: 1px solid #EBD5D1; border-top: 4px solid var(--red); border-left-width: 1px; border-radius: 12px; padding: 0; display: flex; flex-direction: column; overflow: hidden; }
.pain-card--neg .pain-problem { background: #FBF1EF; padding: 26px 28px 22px; }
.pain-card--neg .pain-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: #FFFFFF; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pain-card--neg .pain-label, .pain-card--neg .fix-label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.pain-card--neg .pain-label { color: var(--red); }
.pain-card--neg h3 { font-size: 18px; line-height: 1.3; margin-bottom: 10px; }
.pain-card--neg .pain-problem p { color: var(--red-muted); font-size: 14.5px; line-height: 1.6; }
.pain-card--neg .pain-fix { padding: 20px 28px 26px; border-top: 1px dashed #E3C7C1; flex: 1; }
.pain-card--neg .fix-label { color: var(--green); display: flex; align-items: center; gap: 6px; }
.pain-card--neg .pain-fix p { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }
@media (max-width: 540px) {
  .pain-card--neg .pain-problem { padding: 22px 22px 18px; }
  .pain-card--neg .pain-fix { padding: 18px 22px 22px; }
}

/* --- Einwilligungs-Banner --- */
.consent-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1000;
  max-width: 720px; margin: 0 auto;
  background: #FFFFFF; color: var(--text); border: 1px solid var(--rule); border-top: 4px solid var(--indigo);
  border-radius: 14px; box-shadow: 0 24px 60px rgba(11, 11, 18, 0.22);
  max-height: calc(100vh - 32px); overflow-y: auto;
}
.consent-banner[hidden] { display: none; }
.consent-inner { padding: 24px 28px 20px; display: flex; flex-direction: column; gap: 14px; }
.consent-banner h2 { font-size: 19px; }
.consent-text, .consent-request-note { font-size: 14.5px; line-height: 1.6; }
.consent-request-note { background: var(--bg-alt); border-radius: 8px; padding: 10px 14px; color: var(--text-strong); }
.consent-request-note[hidden], .consent-details[hidden], .consent-btn[hidden] { display: none; }
.consent-details { display: flex; flex-direction: column; gap: 10px; }
.consent-option { display: flex; gap: 12px; align-items: flex-start; background: var(--bg-alt); border-radius: 8px; padding: 12px 14px; font-size: 13.5px; line-height: 1.5; cursor: pointer; }
.consent-option.is-locked { cursor: default; }
.consent-option input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--indigo); flex: none; }
.consent-option strong { display: block; color: var(--text-strong); font-size: 14.5px; margin-bottom: 2px; }
.consent-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.consent-btn { background: var(--indigo); color: #FFFFFF; font-size: 15px; padding: 13px 22px; min-width: 170px; justify-content: center; }
.consent-btn:hover { background: var(--indigo-dark); color: #FFFFFF; }
.consent-link { background: none; border: 0; padding: 8px 4px; font: inherit; font-size: 14.5px; font-weight: 700; color: var(--indigo); text-decoration: underline; cursor: pointer; }
.consent-legal { display: flex; gap: 18px; font-size: 13px; }
.consent-legal a { color: var(--text-muted); text-decoration: underline; }
.consent-banner button:focus-visible, .consent-banner a:focus-visible { outline: 2px solid var(--indigo); outline-offset: 2px; }
@media (max-width: 540px) {
  .consent-banner { left: 10px; right: 10px; bottom: 10px; }
  .consent-inner { padding: 20px 18px 16px; }
  .consent-btn { flex: 1 1 100%; width: 100%; }
  .consent-link { width: 100%; text-align: center; }
}

/* Platzhalter für Calendly ohne Einwilligung */
.calendly-inline-widget { position: relative; }
.consent-placeholder { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; padding: 40px 28px; background: var(--bg-alt); }
.consent-placeholder-icon { width: 56px; height: 56px; border-radius: 50%; background: #FFFFFF; color: var(--indigo); display: flex; align-items: center; justify-content: center; }
.consent-placeholder h3 { font-size: 22px; }
.consent-placeholder p { max-width: 520px; font-size: 15px; line-height: 1.65; color: var(--text-muted); }
.consent-placeholder-alt { font-size: 14px !important; }
.consent-placeholder-alt a { font-weight: 700; white-space: nowrap; }

/* ============== ÜBERARBEITUNG 17.09.2026 (2) ============== */

/* Selbstbucher „Für wen“: Kopfzeile + zwei gleichwertige Karten */
.fit-head { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; margin-bottom: 44px; }
.fit-head h2 { font-size: 30px; line-height: 1.28; margin-top: 12px; }
.fit-head p { font-size: 16px; line-height: 1.75; color: var(--text-muted); }
.fit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.fit-card { background: #FFFFFF; border-radius: 14px; border-top: 4px solid var(--indigo); padding: 34px 34px 32px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 10px 30px rgba(34, 34, 95, 0.06); }
.fit-card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--bg-alt); color: var(--indigo); display: flex; align-items: center; justify-content: center; }
.fit-card h3 { font-size: 21px; line-height: 1.3; }
.fit-card > p { font-size: 15px; line-height: 1.7; color: var(--text-muted); }
.fit-card .check-list { gap: 0; }
.fit-card .check-list li { padding: 14px 0 14px 36px; border-bottom: 1px solid var(--rule); }
.fit-card .check-list li:last-child { border-bottom: none; padding-bottom: 0; }
.fit-card .check-list li::before { left: 0; top: 16px; width: 22px; height: 22px; border: 0; border-radius: 50%; transform: none; background: var(--indigo) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5L7 11.5L12 5' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat; }
.fit-card .split-table { margin: 0 0 4px; }
#fuer-wen .fine-print { margin-top: 36px; }
@media (max-width: 1080px) {
  .fit-head { gap: 36px; }
  .fit-card { padding: 28px 26px; }
}
@media (max-width: 860px) {
  .fit-head, .fit-cards { grid-template-columns: 1fr; }
  .fit-head { gap: 16px; margin-bottom: 32px; }
  .fit-head h2 { font-size: 25px; }
}
@media (max-width: 540px) {
  .fit-card { padding: 24px 20px; }
  .fit-card h3 { font-size: 19px; }
}

/* Pain Points: grüne Häkchen größer und deutlicher */
.pain-card--neg .fix-label { font-size: 12.5px; gap: 9px; margin-bottom: 10px; }
.pain-card--neg .fix-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--green); color: #FFFFFF; display: inline-flex; align-items: center; justify-content: center; flex: none; }

/* 404: Rechtslinks */
.footer-minimal-404 { display: flex; justify-content: center; gap: 22px; padding: 24px 0 40px; font-size: 14px; }
.footer-minimal-404 a, .footer-minimal-404 button { color: var(--text-muted); }

/* ---------- Startseite: Leistungen als Kachelraster (Sept. 2026) ---------- */
.services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 40px; }
.services-head-copy { max-width: 620px; }
.services-head h2 { font-size: 34px; line-height: 1.25; margin: 8px 0 12px; }
.services-head p { font-size: 16px; line-height: 1.7; color: var(--text-muted); }
.services-head .more-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--indigo); white-space: nowrap; flex: none; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-tile { background: #FFFFFF; border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 10px; border: 1px solid transparent; transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.service-tile:hover { border-color: var(--indigo-pale); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(34, 34, 95, 0.08); }
.service-tile-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.service-icon { width: 44px; height: 44px; padding: 10px; border-radius: 10px; background: var(--bg-alt); color: var(--indigo); flex: none; }
.service-num { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: 0.12em; color: var(--indigo-pale-2); }
.service-tile h3 { font-size: 18px; line-height: 1.35; }
.service-tile p { font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }
.service-tile--cta { background: var(--indigo); color: #FFFFFF; text-decoration: none; }
.service-tile--cta .service-num { color: #E8C36A; text-transform: uppercase; margin-bottom: 8px; }
.service-tile--cta h3 { color: #FFFFFF; font-size: 22px; }
.service-tile--cta p { color: #DAD9F2; }
.service-tile--cta .more-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: #FFFFFF; margin-top: auto; padding-top: 8px; }
.service-tile--cta:hover { border-color: transparent; background: var(--indigo-dark); }
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  .services-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-head h2 { font-size: 28px; }
}
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } .service-tile { padding: 24px 22px; } }

/* ---------- Startseite: Team-Block im Abschnitt „Über uns“ (abgeschwächt) ---------- */
.team-card--home { margin-top: 48px; background: #FFFFFF; border-color: transparent; padding: 32px 40px; gap: 40px; }
.team-card--home { grid-template-columns: minmax(320px, 0.8fr) 1.2fr; align-items: stretch; padding: 20px 40px 20px 20px; }
.team-card--home .team-stack { opacity: 0.85; background: var(--bg-alt); border-radius: 12px; padding: 36px 28px; justify-content: center; }
.team-card--home .team-copy { padding: 16px 0; align-self: center; }
.team-card--home .team-avatar { width: 58px; height: 58px; margin-left: -16px; border-width: 3px; box-shadow: 0 3px 10px rgba(34, 34, 95, 0.08); }
.team-card--home .team-avatar:first-child { margin-left: 0; }
.team-card--home .team-avatar--lead { width: 70px; height: 70px; }
.team-card--home .team-avatar svg { width: 58px; height: 58px; margin-bottom: -14px; }
.team-card--home .team-avatar:nth-child(odd) { transform: translateY(-6px); }
.team-card--home .team-avatar:nth-child(even) { transform: translateY(6px); }
.team-card--home .team-avatar:hover { transform: translateY(-10px); }
.team-card--home h3 { font-size: 22px; line-height: 1.3; margin: 8px 0 10px; max-width: 560px; }
.team-card--home .team-copy p { font-size: 15px; max-width: 640px; }
.team-facts { list-style: none; margin: 16px 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.team-facts li { font-size: 13.5px; font-weight: 600; color: var(--indigo-dark); background: var(--bg-alt); border-radius: 999px; padding: 7px 14px; }
.team-card--home .more-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--indigo); }
.bio-grid img[src*="office-library-seated"] { object-position: 47% center; }
@media (max-width: 540px) {
  .team-card--home { padding: 14px 14px 22px; }
  .team-card--home .team-copy { padding: 0 8px; }
  .team-facts li { border-radius: 12px; }
  .team-card--home .team-avatar { width: 44px; height: 44px; margin-left: -12px; }
  .team-card--home .team-avatar--lead { width: 54px; height: 54px; }
  .team-card--home .team-avatar svg { width: 44px; height: 44px; margin-bottom: -10px; }
  .team-card--home h3 { font-size: 19px; }
}

/* ---------- Rezensionen: große, transparente Anführungszeichen ---------- */
.review-card { position: relative; overflow: hidden; padding-top: 56px; }
.review-card::before { content: "\201C"; position: absolute; top: -18px; left: 18px; font-family: Georgia, "Times New Roman", serif; font-size: 150px; line-height: 1; font-weight: 700; color: var(--indigo); opacity: 0.12; pointer-events: none; }
.review-card blockquote, .review-card .who { position: relative; }
.review-card .who { font-weight: 600; }

@media (max-width: 1080px) {
  .team-card--home { grid-template-columns: 1fr; padding: 20px 20px 28px; }
  .team-card--home .team-copy { padding: 0 12px; }
}
@media (max-width: 540px) {
  .team-card--home { padding: 14px 14px 22px; }
  .team-card--home .team-copy { padding: 0 8px; }
}

/* ---------- Über uns: beide DATEV-Siegel nebeneinander ---------- */
.award-badges { display: flex; align-items: center; flex: none; }
.award-card .award-badges img { height: 110px; width: auto; position: relative; }
.award-card .award-badges img:first-child { height: 82px; z-index: 1; }
.award-card .award-badges img:last-child { margin-left: -34px; z-index: 2; filter: drop-shadow(-4px 4px 10px rgba(34, 34, 95, 0.18)); }
@media (max-width: 860px) {
  .award-card .award-badges img { height: 84px; }
  .award-card .award-badges img:first-child { height: 62px; }
  .award-card .award-badges img:last-child { margin-left: -26px; }
}

/* Hero mobil: Namensschild kompakter und nach rechts, damit die Person frei bleibt */
@media (max-width: 860px) {
  .hero-caption { left: auto; right: 10px; bottom: 10px; padding: 6px 10px; border-radius: 8px; background: rgba(255, 255, 255, 0.88); }
  .hero-caption strong { font-size: 12.5px; }
  .hero-caption span { font-size: 11px; }
}

/* Leistungs-Kacheln: Querverweis-Kachel mit zwei Links */
.service-tile--cta .xref-links { margin-top: auto; padding-top: 8px; display: flex; flex-direction: column; gap: 8px; }
.service-tile--cta .xref-links .more-link { margin-top: 0; padding-top: 0; }
.service-tile--cta .xref-links .more-link:hover { color: #E8C36A; }

/* ---------- Holding: Leistungen mit Strukturdiagramm (Idee 3) ---------- */
.struct-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.struct-visual { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.struct-diagram { background: #FFFFFF; border-radius: 16px; padding: 28px 24px 18px; box-shadow: 0 10px 30px rgba(34, 34, 95, 0.06); }
.struct-svg { width: 100%; height: auto; display: block; font-family: var(--font-sans); }
.struct-hint { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 10px; }
.struct-visual .xref-box { margin-top: 0; }
.sd-node rect { fill: #C6C5EA; transition: fill .2s ease, transform .2s ease; }
.sd-node text { font-family: var(--font-head); font-weight: 700; font-size: 14px; fill: var(--indigo-dark); }
.sd-top rect { fill: var(--indigo-dark); } .sd-top text { fill: #FFFFFF; }
.sd-holding rect { fill: var(--indigo); } .sd-holding text { fill: #FFFFFF; font-size: 15px; }
.sd-child--immo rect { fill: #E4E3F5; }
.sd-child text { font-size: 13px; }
.sd-link path { stroke: var(--indigo-pale-2); stroke-width: 2; fill: none; transition: stroke .2s ease, stroke-width .2s ease; }
.sd-exit { stroke-dasharray: 3 3; }
.sd-frame { fill: none; stroke: var(--indigo-pale); stroke-width: 1.5; stroke-dasharray: 5 5; transition: stroke .2s ease; }
.sd-label { font-size: 12.5px; font-weight: 700; fill: #8A6508; paint-order: stroke; stroke: #FFFFFF; stroke-width: 5px; stroke-linejoin: round; }
.sd-pill rect { fill: #FFF8E6; stroke: #E8C36A; }
.sd-pill text { font-size: 12px; font-weight: 700; fill: #8A6508; }
.sd-band rect { fill: var(--bg-alt); stroke: var(--indigo-pale); transition: fill .2s ease; }
.sd-band text { font-family: var(--font-head); font-weight: 700; font-size: 13.5px; fill: var(--indigo-dark); }
.sd-badge circle { fill: #B8860B; transition: r .2s ease; }
.sd-badge text { font-family: var(--font-head); font-weight: 800; font-size: 12.5px; fill: #FFFFFF; }
.struct-svg [data-step] { transition: opacity .2s ease; }
.struct-copy h2 { font-size: 34px; line-height: 1.25; margin: 8px 0 12px; }
.struct-lead { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin-bottom: 26px; }
.struct-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.struct-card { display: flex; gap: 16px; align-items: flex-start; background: #FFFFFF; border-radius: var(--radius); padding: 20px 22px; border: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; cursor: default; }
.struct-card:hover { border-color: #E8C36A; box-shadow: 0 10px 26px rgba(34, 34, 95, 0.08); transform: translateX(-3px); }
.struct-num { flex: none; width: 28px; height: 28px; border-radius: 50%; background: #B8860B; color: #FFFFFF; font-family: var(--font-head); font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.struct-card h3 { font-size: 16.5px; line-height: 1.35; margin-bottom: 6px; }
.struct-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }
/* Hover-Kopplung Karte -> Schaubild */
.struct-split:has(.struct-card:hover) .struct-svg [data-step] { opacity: .28; }
.struct-split:has(.struct-card[data-step="1"]:hover) .struct-svg [data-step="1"],
.struct-split:has(.struct-card[data-step="2"]:hover) .struct-svg [data-step="2"],
.struct-split:has(.struct-card[data-step="3"]:hover) .struct-svg [data-step="3"],
.struct-split:has(.struct-card[data-step="4"]:hover) .struct-svg [data-step="4"],
.struct-split:has(.struct-card[data-step="5"]:hover) .struct-svg [data-step="5"] { opacity: 1; }
.struct-split:has(.struct-card[data-step="1"]:hover) .sd-frame { stroke: #B8860B; }
.struct-split:has(.struct-card[data-step="2"]:hover) .sd-link[data-step="2"] path,
.struct-split:has(.struct-card[data-step="3"]:hover) .sd-link[data-step="3"] path,
.struct-split:has(.struct-card[data-step="4"]:hover) .sd-link[data-step="4"] path { stroke: #B8860B; stroke-width: 3; }
@media (max-width: 1080px) { .struct-split { gap: 36px; } .struct-copy h2 { font-size: 30px; } }
@media (max-width: 860px) {
  .struct-split { grid-template-columns: 1fr; }
  .struct-visual { position: static; order: 2; }
  .struct-hint { display: none; }
  .struct-diagram { padding: 18px 12px 12px; }
  .struct-copy h2 { font-size: 28px; }
}
@media (max-width: 540px) { .struct-card { padding: 18px 16px; gap: 12px; } }

/* Hero-Unterseiten: Zielgruppen-Zeile ohne Rahmen (statt Pill) */
.eyebrow-pill, .hub-hero .eyebrow-pill { background: none; border: 0; border-radius: 0; padding: 0; box-shadow: none; font-size: 13px; letter-spacing: 0.12em; }
@media (max-width: 540px) { .eyebrow-pill, .hub-hero .eyebrow-pill { padding: 0; font-size: 12px; } }

.bio-grid img.bio-portrait { object-position: 44% 30%; }
.home-hero-visual img.hero-img-sb { object-position: 72% 40%; }
@media (min-width: 1081px) {
  .hub-hero--sb .wrap { grid-template-columns: 1fr 1.1fr; }
  .hub-hero--sb .home-hero-visual { height: 420px; }
}

/* ============== Werdegang-Leiste (/ueber-uns) ============== */
.cv-rail {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin: 26px 0 0;
  padding: 0;
}
.cv-rail li {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.cv-rail li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--indigo);
}
.cv-year {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 8px;
}
.cv-rail h3 {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-strong);
  margin-bottom: 8px;
}
.cv-rail p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}
@media (max-width: 1080px) {
  .cv-rail { grid-template-columns: repeat(2, 1fr); gap: 28px 32px; }
}
@media (max-width: 620px) {
  .cv-rail { grid-template-columns: 1fr; gap: 24px; }
}
