:root {
  --bg: #eef4f0;
  --surface: #ffffff;
  --text: #152820;
  --muted: #475a51;
  --accent: #0d6b4d;
  --accent-hover: #09543d;
  --accent-soft: #e4f0ea;
  --border: #cddfd4;
  --radius: 14px;
  --shadow:
    0 1px 2px rgba(21, 40, 32, 0.04),
    0 10px 36px rgba(13, 107, 77, 0.07);
  --shadow-hover:
    0 4px 12px rgba(21, 40, 32, 0.06),
    0 18px 44px rgba(13, 107, 77, 0.11);
  --hero-radius: 24px;
  --font:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--text);
  background: var(--bg);
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

a:focus-visible {
  border-radius: 2px;
}

.btn:focus-visible {
  outline-offset: 3px;
}

.nav a:focus-visible {
  outline-offset: 4px;
  border-radius: 4px;
}

.logo:focus-visible {
  border-radius: 4px;
}

.link-external:focus-visible {
  border-radius: 4px;
}

abbr[title] {
  text-decoration: underline dotted;
  text-underline-offset: 2px;
  cursor: help;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(205, 223, 212, 0.65);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

@supports not (backdrop-filter: blur(1px)) {
  .site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: none;
  }
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s var(--ease-out);
}

.nav a:hover {
  color: var(--accent);
}

/* Hero: erster sichtbarer Bereich unter der Navigation („Above the fold“) */
.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(2.75rem, 6vw, 4.25rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 85% 5%, rgba(13, 107, 77, 0.06) 0%, transparent 55%),
    radial-gradient(90% 60% at 0% 100%, rgba(180, 210, 196, 0.35) 0%, transparent 50%),
    linear-gradient(180deg, #f8faf9 0%, var(--bg) 52%, #e8f0ea 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.hero-blob--a {
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  background: rgba(13, 107, 77, 0.22);
  top: -12%;
  right: -8%;
}

.hero-blob--b {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  background: rgba(180, 210, 196, 0.65);
  bottom: 5%;
  left: -10%;
}

.hero-blob--c {
  width: 200px;
  height: 200px;
  background: rgba(13, 107, 77, 0.08);
  top: 40%;
  left: 35%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: min(44rem, 100%);
}

.hero-copy {
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.35rem, 2.5vw, 2rem);
  border-radius: var(--hero-radius);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 2px rgba(21, 40, 32, 0.04),
    0 16px 48px rgba(13, 107, 77, 0.07),
    0 0 0 1px rgba(13, 107, 77, 0.04);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-kicker-mark {
  color: var(--accent);
  letter-spacing: 0.04em;
}

.hero-kicker-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  vertical-align: middle;
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.95rem, 3.6vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--text);
  text-wrap: balance;
}

.hero-title-line {
  display: block;
  margin-top: 0.35rem;
}

.hero h1 .hero-accent {
  display: inline-block;
  color: var(--accent);
  position: relative;
  padding-bottom: 0.08em;
}

.hero h1 .hero-accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(13, 107, 77, 0.35));
}

.hero .lead {
  margin: 0 0 0.9rem;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: none;
  line-height: 1.68;
}

.hero .sublead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--text);
  max-width: none;
  line-height: 1.68;
  font-weight: 500;
  opacity: 0.92;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.75rem;
}

.hero-cta .btn {
  margin-left: 0;
  margin-top: 0;
}

.btn-glow {
  box-shadow: 0 4px 14px rgba(13, 107, 77, 0.35);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.btn-glow:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(13, 107, 77, 0.4);
  color: #fff;
}

.btn-soft {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  border: 1px solid rgba(13, 107, 77, 0.22);
  box-shadow: 0 2px 12px rgba(13, 107, 77, 0.06);
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.btn-soft:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-hover);
}

@media (prefers-reduced-motion: reduce) {
  .btn-glow,
  .btn-glow:hover {
    transition: none;
    transform: none;
  }

  .card,
  .brand-panel {
    transition: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .card:hover,
    .brand-panel:hover {
      transform: none;
      box-shadow: var(--shadow);
    }
  }

  .nav a {
    transition: none;
  }
}

.offer-matrix .offer-card {
  overflow-wrap: anywhere;
}

.offer-matrix .offer-card h3 {
  margin-top: 0;
  font-size: 1.08rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.offer-matrix .offer-card h3 a {
  color: var(--accent);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.offer-matrix .offer-card h3 a:hover {
  text-decoration: underline;
}

.offer-card-lead {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.offer-matrix .offer-card ul {
  margin-top: 0;
  font-size: 0.93rem;
  padding-left: 1.15rem;
}

.offer-matrix .offer-card li {
  overflow-wrap: anywhere;
}

.offer-footnote {
  margin-top: 1.75rem !important;
  max-width: 72ch;
}

.section-vorteile .section-intro {
  max-width: 70ch;
  font-size: 1.08rem;
}

.usp-grid .card h3 {
  font-size: 1.05rem;
}

.usp-closing {
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 72ch;
}

.usp-closing strong {
  color: var(--accent);
}

.contact-box .contact-muted {
  color: var(--muted);
  font-weight: 400;
}

.contact-box-footer {
  margin-top: 1.35rem !important;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  margin-bottom: 0 !important;
  font-size: 0.98rem;
  color: var(--muted);
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  margin-left: 0.5rem;
}

.btn-ghost:hover {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

section {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

section:nth-child(even) {
  background: var(--surface);
}

h2 {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Grid-Items dürfen schrumpfen, sonst ragen lange Wörter/URLs aus der Spalte */
.grid > * {
  min-width: 0;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }
}

section:nth-child(even) .card {
  background: var(--bg);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--accent);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.brand-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (hover: hover) and (pointer: fine) {
  .brand-panel:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
  }
}

section:nth-child(even) .brand-panel {
  background: var(--bg);
}

.brand-panel:last-child {
  margin-bottom: 0;
}

.brand-panel h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.brand-meta {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.brand-meta a {
  font-weight: 600;
  word-break: break-all;
}

.brand-panel .brand-body p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.brand-panel .brand-body p:last-child {
  margin-bottom: 0;
}

.brand-panel .brand-body ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.brand-panel .brand-body li {
  margin-bottom: 0.35rem;
}

.link-external {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.link-external:hover {
  text-decoration: underline;
}

.section-intro {
  color: var(--muted);
  max-width: 68ch;
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
}

.hero-trust {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-trust-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.hero-trust-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.hero-trust-stars {
  letter-spacing: 0.06em;
  color: #b8860b;
  text-shadow: 0 0 0.5px rgba(21, 40, 32, 0.15);
}

.hero-trust-score {
  font-weight: 700;
  color: var(--text);
}

.section-bewertungen {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, transparent 100%);
}

.trust-google-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem 2rem 1.5rem;
  max-width: 720px;
}

.trust-google-scoreline {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--text);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
}

.trust-google-stars {
  letter-spacing: 0.08em;
  color: #b8860b;
  font-size: 1.25rem;
  line-height: 1;
}

.trust-google-links {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.55;
}

.trust-google-links-label {
  margin-right: 0.35rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-google-textlink {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  text-underline-offset: 3px;
}

.trust-google-textlink:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.trust-google-links-sep {
  margin: 0 0.4rem;
  color: #8aa399;
  font-weight: 400;
}

.trust-google-ext {
  margin-left: 0.2rem;
  font-size: 0.85em;
  color: #8aa399;
  vertical-align: baseline;
}

.trust-google-themes {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.65;
}

.contact-box {
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  max-width: 520px;
}

.contact-box p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.contact-box p.contact-box-footer:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: var(--text);
  color: #c8d4cc;
  padding: 2rem 0;
  margin-top: 0;
  font-size: 0.92rem;
}

.site-footer a {
  color: #e6f2ec;
}

.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer .footer-line {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-footer .footer-org {
  font-size: 0.88rem;
  color: #a8bdb0;
  font-weight: 500;
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.legal h1 {
  font-size: 1.75rem;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.longread {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.longread > header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.longread .subtitle {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
}

.disclaimer-box {
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 0 0 2rem;
  font-size: 0.95rem;
  color: var(--text);
}

.disclaimer-box p {
  margin: 0;
}

.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 0 0 2.5rem;
  box-shadow: var(--shadow);
}

.toc h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.toc ol {
  margin: 0;
  padding-left: 1.35rem;
  color: var(--muted);
}

.toc li {
  margin-bottom: 0.4rem;
}

.toc a {
  text-decoration: none;
}

.toc a:hover {
  text-decoration: underline;
}

.longread h2 {
  margin-top: 2.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  scroll-margin-top: 5rem;
}

.longread h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.longread h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.15rem;
  color: var(--text);
  scroll-margin-top: 5rem;
}

.longread h4 {
  margin: 1.15rem 0 0.5rem;
  font-size: 1rem;
  color: var(--accent);
}

.longread p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.longread ul,
.longread ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
  color: var(--muted);
  line-height: 1.65;
}

.longread li {
  margin-bottom: 0.4rem;
}

.longread .law-block {
  margin: 1rem 0;
  padding: 1rem 1.15rem;
  background: var(--bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.98rem;
  color: var(--text);
}

.longread .law-block p:last-child {
  margin-bottom: 0;
}

.longread .key-point {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.longread .key-point strong {
  color: var(--text);
}

@media (max-width: 520px) {
  .btn-ghost {
    margin-left: 0;
    margin-top: 0.75rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .hero-cta .btn-ghost {
    margin-top: 0;
  }

  .hero-copy {
    padding: 1.35rem 1.25rem;
  }
}
