:root {
  --navy: #223748;
  --navy-dark: #16232e;
  --navy-mid: #2c4459;
  --accent: #2c4459;
  --accent-light: #9aa5b1;
  --white: #ffffff;
  --cream: #f4f5f6;
  --text: #1c2530;
  --text-muted: #5b6472;
  --border: #e4e6e9;
  --radius: 14px;
  --max-width: 1180px;
  --font-heading: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 500; line-height: 1.15; margin: 0 0 18px; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 16px; color: var(--text-muted); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block; font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px;
}
.eyebrow::before { content: ""; display: inline-block; width: 22px; height: 1px; background: var(--border); margin-right: 10px; vertical-align: middle; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); box-shadow: 0 10px 24px rgba(34,55,72,0.25); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { box-shadow: 0 10px 24px rgba(0,0,0,0.15); }
.btn-small { padding: 11px 22px; font-size: 0.85rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }
.logo { display: block; flex: 0 0 auto; text-decoration: none; line-height: 0; }
.logo img { height: 62px; width: auto; }
.logo-footer img { height: 58px; }
.main-nav { display: flex; gap: 32px; }
.main-nav a { position: relative; color: var(--text); text-decoration: none; font-size: 0.93rem; font-weight: 500; padding: 4px 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--accent); transition: width .2s ease; }
.main-nav a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; }

/* Hero */
.hero { position: relative; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); padding: 80px 0; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.hero-text { padding-bottom: 0; }
.hero h1 { color: var(--white); }
.hero-sub { color: rgba(255,255,255,0.78); font-size: 1.1rem; }
.hero-badges { list-style: none; padding: 0; margin: 32px 0 0; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges li { font-size: 0.82rem; color: var(--navy); background: rgba(255,255,255,0.92); padding: 7px 14px; border-radius: 999px; font-weight: 500; }
.hero-image { position: relative; align-self: center; }
.hero-image img { width: 100%; max-width: 480px; height: auto; margin: 0 auto; display: block; }

/* Sections */
.section { padding: 96px 0; }
.section-muted { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section-lead { max-width: 620px; font-size: 1.08rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: box-shadow .2s ease, transform .2s ease; }
.value-card:hover { box-shadow: 0 16px 32px rgba(34,55,72,0.08); transform: translateY(-3px); }
.value-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { margin: 0; font-size: 0.92rem; }

.cta-banner { position: relative; background: var(--navy); color: var(--white); text-align: center; padding: 80px 0; overflow: hidden; }

.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 560px; margin-left: auto; margin-right: auto; }

.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.topic-card { padding: 30px; background: var(--cream); border-radius: var(--radius); transition: background .2s ease; }
.topic-card:hover { background: #eceef0; }
.topic-card p { font-size: 0.92rem; margin: 0; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.process-card { position: relative; padding-top: 8px; }
.process-num { font-family: var(--font-heading); font-size: 2.4rem; color: #c9ccd1; font-weight: 500; line-height: 1; display: block; margin-bottom: 12px; }
.process-card ul { padding-left: 18px; color: var(--text-muted); font-size: 0.92rem; }
.process-card li { margin-bottom: 6px; }


.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 40px; margin-top: 36px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; list-style: none; font-family: var(--font-heading); font-size: 1.05rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--text-muted); font-weight: 400; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 12px 0 0; font-size: 0.92rem; }

.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 56px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
.logo-footer { color: var(--white); }

.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--white); }
.copyright { font-size: 0.8rem; margin: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; }

@media (max-width: 900px) {
  .hero-inner, .split { grid-template-columns: 1fr; }
  .value-grid, .topic-grid, .process-grid, .faq-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-inner .btn-small { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Rechtstexte / Legal pages */
.legal { padding: 72px 0 96px; }
.legal-inner { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 32px; }
.legal h2 { font-size: 1.35rem; margin-top: 44px; margin-bottom: 14px; }
.legal h3 { font-size: 1.05rem; margin-top: 28px; margin-bottom: 10px; }
.legal p { font-size: 0.95rem; line-height: 1.75; }
.legal ul { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--accent); }
.legal .address { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); }
.legal .upper { text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.01em; }
.legal-rule { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }
.legal-source { font-size: 0.82rem; color: var(--text-muted); margin-top: 40px; }

/* Header-Variante für Unterseiten (nur Logo) */
.header-simple .header-inner { justify-content: flex-start; }

/* Dokumentseite (gescannte Seiten als Bilder) */
.doc-pages { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.doc-pages img { width: 100%; border: 1px solid var(--border); border-radius: 8px; }
.doc-cta { text-align: center; margin-top: 48px; }

/* ---- Rechtstexte / Unterseiten ---- */
.header-simple .header-inner { justify-content: flex-start; }
.legal { padding: 72px 0 96px; }
.legal-inner { max-width: 800px; }
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 32px; }
.legal h2 { font-size: 1.35rem; margin: 40px 0 12px; padding-top: 24px; border-top: 1px solid var(--border); }
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal h3 { font-size: 1.05rem; margin: 28px 0 8px; font-family: var(--font-body); font-weight: 700; color: var(--text); }
.legal p { font-size: 0.95rem; line-height: 1.75; }
.legal ul { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--accent); }
.legal .contact-block { background: var(--cream); border-left: 2px solid var(--accent); padding: 20px 24px; margin: 20px 0; border-radius: 0 8px 8px 0; }
.legal .contact-block p { margin: 0; color: var(--text); }
.legal .uppercase-note { font-size: 0.88rem; background: var(--cream); padding: 18px 20px; border-radius: 8px; }
.legal .back-link { display: inline-block; margin-top: 48px; font-size: 0.9rem; }
.doc-pages { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.doc-pages img { width: 100%; border: 1px solid var(--border); border-radius: 8px; }

/* ---- Rechtsseiten (Impressum, Datenschutz, Erstinformation) ---- */
.legal-header { background: var(--navy); color: var(--white); padding: 64px 0 56px; }
.legal-header h1 { color: var(--white); margin: 0; font-size: clamp(2rem, 4vw, 3rem); }
.legal-body { padding: 64px 0 96px; }
.legal-body .container { max-width: 820px; }
.legal-body h2 {
  font-size: 1.35rem; margin: 44px 0 14px; padding-top: 22px;
  border-top: 1px solid var(--border);
}
.legal-body h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.legal-body h3 { font-size: 1.05rem; margin: 28px 0 10px; }
.legal-body p { font-size: 0.95rem; line-height: 1.75; }
.legal-body ul { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; padding-left: 20px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.legal-body address { font-style: normal; color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.legal-note {
  background: var(--cream); border-left: 3px solid var(--accent);
  padding: 18px 22px; border-radius: 0 8px 8px 0; margin: 28px 0;
}
.legal-note p { margin: 0; font-size: 0.92rem; }
.legal-body .uppercase-block { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }
.doc-pages { display: grid; gap: 20px; margin-top: 32px; }
.doc-pages img { width: 100%; border: 1px solid var(--border); border-radius: 8px; }

/* ---- SB-Methode / Landingpages ---- */
.about-image { border-radius: var(--radius); box-shadow: none; }
.signature { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text); margin-top: 26px; }
.signature span { font-family: var(--font-body); font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

.screenshot-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 40px; align-items: start;
}
.screenshot-grid img {
  width: 100%; border-radius: 10px; border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(34,55,72,0.08); background: var(--white);
}

.lead-form {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  max-width: 620px; margin: 28px auto 0;
}
.lead-form input {
  flex: 1 1 220px; padding: 14px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.1);
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
}
.lead-form input::placeholder { color: rgba(255,255,255,0.6); }
.lead-form input:focus { outline: 2px solid var(--accent); outline-offset: 2px; background: rgba(255,255,255,0.16); }
.lead-form button { flex: 0 0 auto; cursor: pointer; border: 0; font-family: var(--font-body); }
.form-hint { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 16px; }
.form-hint a { color: rgba(255,255,255,0.85); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- Leitfaden-Karten ---- */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.guide-card {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px 26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(34,55,72,0.12); border-color: #cfd4da; }
.guide-tag {
  display: inline-block; align-self: flex-start; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 999px; padding: 4px 12px; margin-bottom: 18px;
}
.guide-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.guide-card p { font-size: 0.92rem; flex-grow: 1; margin-bottom: 20px; }
.guide-link { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.guide-link::after { content: " \2192"; color: var(--navy); transition: margin-left .2s ease; display: inline-block; }
.guide-card:hover .guide-link::after { margin-left: 5px; }

/* ---- Was dich erwartet (Landingpages) ---- */
.expect-list { list-style: none; padding: 0; margin: 40px 0 0; display: grid; gap: 2px; }
.expect-list li {
  display: flex; gap: 18px; align-items: baseline;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.expect-list li:first-child { border-top: 1px solid var(--border); }
.expect-list .n { font-family: var(--font-heading); color: #c9ccd1; font-size: 1.1rem; flex: 0 0 auto; min-width: 28px; }
.expect-list strong { display: block; font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 4px; }
.expect-list span.txt { color: var(--text-muted); font-size: 0.93rem; }

@media (max-width: 900px) {
  .guide-grid { grid-template-columns: 1fr; }
}

/* ---- Einzelzitat auf hellem Grund ---- */
.quote-light {
  margin: 44px auto 0; max-width: 720px; text-align: center;
  border-top: 1px solid var(--border); padding-top: 32px;
}
.quote-light p { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text); line-height: 1.5; }
.quote-light cite { font-style: normal; font-size: 0.85rem; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; }

/* ---- Partner-Laufband ---- */
.partner-marquee {
  margin-top: 48px; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.partner-track {
  display: flex; align-items: center; width: max-content;
  animation: partner-scroll 42s linear infinite;
}
.partner-marquee:hover .partner-track { animation-play-state: paused; }
.partner-track img {
  height: 52px; width: auto; object-fit: contain; flex: 0 0 auto; margin-right: 56px;
  filter: grayscale(100%); opacity: 0.6;
  transition: filter .25s ease, opacity .25s ease;
}
.partner-track img:hover { filter: grayscale(0); opacity: 1; }
@keyframes partner-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partner-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; gap: 36px; }
}

/* Hero-Bild auf Mobil wieder normal einbetten */
@media (max-width: 900px) {
  .hero { padding-bottom: 0; }
  .hero-text { padding-bottom: 40px; }
  .hero-image img { max-width: 340px; margin: 0 auto; }
  .logo img { height: 50px; }
}

/* ---- Laufende Kundenstimmen ---- */
.t-marquee {
  overflow: hidden; margin-top: 32px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.t-marquee + .t-marquee { margin-top: 20px; }
.t-track { display: flex; width: max-content; align-items: stretch; }
.t-group { display: flex; align-items: stretch; flex-shrink: 0; gap: 20px; padding-right: 20px; }
.t-left  { animation: t-scroll-left  70s linear infinite; }
.t-right { animation: t-scroll-right 70s linear infinite; }
.t-marquee:hover .t-track { animation-play-state: paused; }
@keyframes t-scroll-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes t-scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.t-card {
  flex: 0 0 340px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; display: flex; flex-direction: column;
}
.t-card .stars { color: var(--navy); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 14px; }
.t-card blockquote {
  margin: 0 0 18px; font-size: 0.92rem; line-height: 1.7; color: var(--text-muted); flex-grow: 1;
}
.t-card figcaption strong { display: block; font-size: 0.9rem; color: var(--text); }
.t-card figcaption span { font-size: 0.82rem; color: var(--text-muted); }

@media (prefers-reduced-motion: reduce) {
  .t-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .t-card { flex: 1 1 300px; }
}
@media (max-width: 600px) { .t-card { flex: 0 0 280px; } }

/* ---- Icons in den Themenkarten ---- */
.topic-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--white);
  border-radius: 10px; color: var(--navy); margin-bottom: 18px;
  box-shadow: 0 1px 2px rgba(28,37,48,0.06);
}

/* ---- Bewertungskarten: Kopf mit Siegel-Optik ---- */
.t-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.t-badge { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em; color: var(--text-muted);
  border: 1px solid var(--border); border-radius: 999px; padding: 3px 10px; white-space: nowrap; }

/* ---- Landingpage-Hero: groessere Headline + weisse Cover-Karte ---- */
.hero-lp { padding: 96px 0; }
.hero-lp .hero-text { padding-bottom: 0; }
.hero-lp h1 { font-size: clamp(2.6rem, 5.2vw, 4rem); color: var(--white); }
.hero-lp .hero-inner { align-items: center; }
.hero-lp .hero-image {
  background: var(--white);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.28);
  align-self: center;
}
.hero-lp .hero-image img {
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.18));
}
@media (max-width: 900px) {
  .hero-lp { padding: 56px 0; }
  .hero-lp .hero-image { padding: 28px 24px; }
}

/* ---- Landingpage-Hero: Eyebrow weiss & groesser ---- */
.hero-lp .eyebrow { font-size: 0.85rem; color: rgba(255,255,255,0.85); }
.hero-lp .eyebrow::before { background: rgba(255,255,255,0.55); }


/* ---- Bewertungs-Screenshots: laufendes Band ---- */
.review-marquee {
  overflow: hidden; margin-top: 32px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.review-track { display: flex; width: max-content; align-items: flex-start; animation: review-scroll 90s linear infinite; }
.review-marquee:hover .review-track { animation-play-state: paused; }
.review-track img {
  height: 420px; width: auto; flex: 0 0 auto; margin-right: 20px;
  border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 8px 20px rgba(34,55,72,0.06); background: var(--white);
}
@keyframes review-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .review-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .review-track img { height: auto; max-width: 300px; }
}
@media (max-width: 600px) { .review-track img { height: 360px; } }

/* ---- PDF-Box & Viewer (Erstinformation) ---- */
.pdf-box {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 28px; margin: 36px 0 24px;
}
.pdf-box-info { display: flex; flex-direction: column; gap: 4px; }
.pdf-box-info strong { font-family: var(--font-heading); font-size: 1.1rem; }
.pdf-box-info span { font-size: 0.85rem; color: var(--text-muted); }
.pdf-viewer { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.pdf-viewer object { display: block; }
.legal-note-text { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text); text-align: center; margin: 32px 0 0; }
@media (max-width: 600px) {
  .pdf-box { flex-direction: column; align-items: flex-start; }
  .pdf-viewer object { height: 560px; }
}

/* ---- Kontaktformular ---- */
.contact-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.contact-intro .eyebrow { color: rgba(255,255,255,0.8); }
.contact-intro .eyebrow::before { background: rgba(255,255,255,0.55); }
.contact-intro p { color: rgba(255,255,255,0.78); }
.contact-alt { margin-top: 24px; font-size: 0.92rem; }
.contact-alt a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.contact-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 32px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  padding: 12px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: #fff; font-family: var(--font-body); font-size: 0.95rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 1px; background: rgba(255,255,255,0.14); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.field-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field-check { display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 22px; font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.field-check input { margin-top: 3px; flex: 0 0 auto; }
.field-check a { color: #fff; }
.contact-form button { cursor: pointer; border: 0; width: 100%; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---- Leitfaden-Formular: Einwilligung ---- */
.lead-check { display: flex; gap: 9px; align-items: flex-start; margin: 4px 0 4px; font-size: 0.78rem; color: rgba(255,255,255,0.7); text-align: left; max-width: 620px; }
.lead-check input { margin-top: 2px; flex: 0 0 auto; }
.lead-check a { color: rgba(255,255,255,0.9); }
