:root {
  --green: #95ca3e;
  --green-2: #b7e35e;
  --green-dark: #689d22;
  --gray: #5f6368;
  --ink: #171c20;
  --ink-2: #232a30;
  --text: #263039;
  --muted: #68737d;
  --line: rgba(23, 28, 32, 0.12);
  --line-soft: rgba(255,255,255,0.14);
  --bg: #ffffff;
  --soft: #f5f7f3;
  --soft-2: #edf2e8;
  --card: rgba(255,255,255,0.82);
  --shadow: 0 28px 90px rgba(23, 28, 32, 0.12);
  --shadow-strong: 0 34px 100px rgba(23, 28, 32, 0.2);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::selection { background: rgba(149, 202, 62, 0.35); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, ul { margin-top: 0; }
p { color: var(--muted); }
h1, h2, h3 {
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
h1 { font-size: clamp(3rem, 7vw, 6.65rem); margin-bottom: 26px; }
h2 { font-size: clamp(2.05rem, 4.4vw, 4.1rem); margin-bottom: 18px; }
h3 { font-size: 1.34rem; margin-bottom: 12px; letter-spacing: -0.035em; }
.container { width: min(var(--max), calc(100% - 42px)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 20px; top: -80px; z-index: 1000;
  padding: 10px 14px; color: #fff; background: var(--ink); border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(22px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.9);
  border-color: var(--line);
  box-shadow: 0 14px 44px rgba(23,28,32,.08);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 214px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 7px; color: #3a444d; font-size: .94rem; font-weight: 760; }
.main-nav a { padding: 10px 13px; border-radius: 999px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--ink); background: rgba(149,202,62,.17); }
.main-nav .nav-cta { padding-inline: 18px; color: #fff; background: var(--ink); box-shadow: 0 14px 30px rgba(23,28,32,.18); }
.main-nav .nav-cta:hover, .main-nav .nav-cta:focus-visible { color: #fff; background: var(--gray); transform: translateY(-1px); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 15px; background: #fff; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 2px; }

.hero { position: relative; overflow: hidden; padding: 118px 0 88px; background: linear-gradient(180deg, #fff 0%, #f6f9f2 100%); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg::before {
  content: ""; position: absolute; width: 760px; height: 760px; right: -240px; top: -300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(149,202,62,.32), rgba(149,202,62,.08) 43%, transparent 70%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(23,28,32,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(23,28,32,.055) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 62%, transparent 100%); opacity: .52;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(380px, .82fr); gap: 70px; align-items: center; }
.eyebrow { margin-bottom: 14px; color: var(--green-dark); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: var(--green); }
.hero-text { max-width: 780px; font-size: clamp(1.13rem, 1.8vw, 1.36rem); color: #4d5964; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 21px;
  border: 0; border-radius: 999px; font: inherit; font-weight: 880; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--ink), #333b42); box-shadow: 0 20px 46px rgba(23,28,32,.2); }
.button-primary:hover, .button-primary:focus-visible { background: linear-gradient(135deg, #303840, var(--gray)); }
.button-secondary { color: var(--ink); background: rgba(149,202,62,.18); border: 1px solid rgba(104,157,34,.14); }
.button-secondary:hover, .button-secondary:focus-visible { background: rgba(149,202,62,.28); }
.button.full { width: 100%; }
.proof-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.proof-row span, .ribbon-inner span {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,.76); color: #3d454d; font-size: .92rem; font-weight: 780;
}
.proof-row span::before, .ribbon-inner span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.hero-panel {
  position: relative; min-height: 540px; padding: 18px; border: 1px solid rgba(23,28,32,.10); border-radius: 36px;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(245,247,243,.78));
  box-shadow: var(--shadow-strong); backdrop-filter: blur(16px); overflow: hidden;
}
.hero-panel::before { content: ""; position: absolute; width: 280px; height: 280px; right: -90px; bottom: -80px; border-radius: 50%; background: rgba(149,202,62,.22); filter: blur(8px); }
.panel-toolbar { position: relative; display: flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 12px; color: #5c6871; font-size: .86rem; font-weight: 850; }
.panel-toolbar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(23,28,32,.18); }
.panel-toolbar span:first-child { background: var(--green); }
.panel-toolbar strong { margin-left: 8px; color: var(--ink); }
.panel-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 10px; }
.metric-card { min-height: 155px; padding: 22px; border: 1px solid rgba(23,28,32,.1); border-radius: 24px; background: rgba(255,255,255,.82); box-shadow: 0 18px 50px rgba(23,28,32,.08); }
.metric-card small { display: block; margin-bottom: 8px; color: var(--green-dark); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.metric-card strong { display: block; color: var(--ink); line-height: 1.18; font-size: 1.14rem; letter-spacing: -0.035em; }
.main-metric { grid-column: span 2; min-height: 190px; background: linear-gradient(135deg, #fff, #f3f8eb); }
.green-card { background: linear-gradient(135deg, var(--green), var(--green-2)); }
.green-card small, .green-card strong { color: var(--ink); }
.wide-card { grid-column: span 2; min-height: 118px; background: var(--ink); }
.wide-card small { color: var(--green); }
.wide-card strong { color: #fff; }
.mini-bars { display: flex; align-items: end; gap: 9px; height: 68px; margin-top: 22px; }
.mini-bars i { display: block; flex: 1; border-radius: 999px 999px 6px 6px; background: linear-gradient(180deg, var(--green), rgba(149,202,62,.25)); }
.mini-bars i:nth-child(1) { height: 44%; } .mini-bars i:nth-child(2) { height: 72%; } .mini-bars i:nth-child(3) { height: 54%; } .mini-bars i:nth-child(4) { height: 86%; }
.floating-target { position: absolute; right: 28px; top: 76px; width: 92px; filter: drop-shadow(0 16px 32px rgba(23,28,32,.16)); transform: rotate(8deg); }

.tool-ribbon { padding: 18px 0; background: var(--ink); }
.ribbon-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.ribbon-inner span { color: #fff; background: rgba(255,255,255,.08); border-color: var(--line-soft); }

.section { padding: 100px 0; }
.section-soft { background: linear-gradient(180deg, var(--soft), #fff); }
.section-heading { max-width: 850px; margin-bottom: 45px; }
.section-heading p:not(.eyebrow) { font-size: 1.08rem; }
.service-bento { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: auto auto; gap: 18px; }
.service-card {
  position: relative; overflow: hidden; min-height: 100%; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,255,255,.82); box-shadow: 0 18px 54px rgba(23,28,32,.065);
}
.service-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -60px; top: -60px; border-radius: 50%; background: rgba(149,202,62,.14); }
.feature-card { grid-row: span 2; min-height: 440px; background: linear-gradient(145deg, #fff, #f6faef); border-color: rgba(149,202,62,.48); box-shadow: 0 30px 88px rgba(104,157,34,.16); }
.dark-card { grid-column: span 2; background: var(--ink); }
.dark-card h3, .dark-card p, .dark-card .card-kicker { color: #fff; }
.card-kicker { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 24px; color: var(--ink); background: rgba(149,202,62,.2); border-radius: 16px; font-weight: 950; }
.service-card p { margin-bottom: 20px; }
.service-card ul { display: grid; gap: 9px; padding-left: 0; margin-bottom: 0; list-style: none; }
.service-card li { position: relative; padding-left: 22px; color: #46525b; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }

.split-layout { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 64px; align-items: start; }
.sticky-copy { position: sticky; top: 112px; }
.text-link { display: inline-flex; margin-top: 8px; color: var(--ink); font-weight: 880; border-bottom: 2px solid var(--green); }
.usecase-stack { display: grid; gap: 16px; }
.usecase { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 18px 54px rgba(23,28,32,.06); transition: transform .2s ease, box-shadow .2s ease; }
.usecase:hover { transform: translateY(-3px); box-shadow: 0 28px 74px rgba(23,28,32,.1); }
.usecase span { display: inline-flex; margin-bottom: 12px; padding: 6px 10px; border-radius: 999px; background: rgba(149,202,62,.18); color: var(--green-dark); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.usecase p { margin-bottom: 0; }

.section-dark { background: radial-gradient(circle at 85% 10%, rgba(149,202,62,.18), transparent 34%), linear-gradient(135deg, var(--ink), #262e35); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.72); }
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; margin-top: 44px; }
.timeline article { position: relative; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 25px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); }
.timeline span { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 20px; color: var(--ink); background: var(--green); border-radius: 50%; font-weight: 950; }

.profile-section { background: #fff; }
.profile-grid { display: grid; grid-template-columns: minmax(290px,.78fr) minmax(0,1.22fr); gap: 56px; align-items: center; }
.profile-visual { position: relative; min-height: 420px; padding: 44px; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(145deg, #fff, var(--soft)); box-shadow: var(--shadow); }
.profile-visual img { width: 132px; filter: drop-shadow(0 16px 34px rgba(23,28,32,.14)); }
.quote-card { position: absolute; left: 36px; right: 36px; bottom: 36px; padding: 24px; border-radius: 24px; background: var(--ink); box-shadow: 0 24px 70px rgba(23,28,32,.18); }
.quote-card strong { color: var(--green); }
.quote-card p { margin: 8px 0 0; color: rgba(255,255,255,.78); }
.profile-copy > p:not(.eyebrow) { font-size: 1.08rem; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 30px; }
.benefit-grid div { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.benefit-grid strong { display: block; margin-bottom: 6px; color: var(--ink); }
.benefit-grid span { display: block; color: var(--muted); font-size: .94rem; }

.faq-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: 56px; align-items: start; }
.faq-list { display: grid; gap: 14px; }
details { padding: 22px 24px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 14px 42px rgba(23,28,32,.055); }
summary { cursor: pointer; color: var(--ink); font-weight: 880; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--green-dark); font-weight: 900; }
details[open] summary::after { content: "–"; }
details p { margin: 12px 0 0; }

.contact-section { background: radial-gradient(circle at 15% 20%, rgba(149,202,62,.22), transparent 30%), linear-gradient(135deg, var(--ink), #2a3238); }
.contact-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(360px,.78fr); gap: 54px; align-items: start; }
.contact-copy h2 { color: #fff; }
.contact-copy p { color: rgba(255,255,255,.75); font-size: 1.08rem; }
.contact-notes { display: grid; gap: 10px; margin-top: 28px; }
.contact-notes span { display: inline-flex; width: fit-content; padding: 8px 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.85); background: rgba(255,255,255,.07); font-weight: 760; }
.contact-form { display: grid; gap: 15px; padding: 28px; border: 1px solid rgba(255,255,255,.38); border-radius: 30px; background: rgba(255,255,255,.95); box-shadow: 0 34px 100px rgba(0,0,0,.28); }
.contact-form label { display: grid; gap: 7px; color: var(--ink); font-weight: 820; }
.contact-form label span { color: var(--muted); font-weight: 650; }
input, select, textarea { width: 100%; border: 1px solid rgba(23,28,32,.18); border-radius: 16px; padding: 12px 13px; color: var(--text); background: #fff; font: inherit; }
textarea { resize: vertical; min-height: 130px; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(149,202,62,.26); border-color: var(--green-dark); }
.privacy-check { grid-template-columns: 20px 1fr !important; gap: 12px !important; align-items: start; font-size: .9rem; line-height: 1.45; }
.privacy-check input { width: 18px; height: 18px; margin-top: 3px; }
.website-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-hint { margin: 0; color: var(--muted); font-size: .86rem; }
.form-status { display: none; padding: 12px 14px; border-radius: 16px; font-weight: 780; }
.form-status.is-visible { display: block; }
.form-status.success { color: #285010; background: rgba(149,202,62,.2); border: 1px solid rgba(104,157,34,.25); }
.form-status.error { color: #7b1d1d; background: rgba(210,54,54,.1); border: 1px solid rgba(210,54,54,.22); }

.site-footer { padding: 34px 0; background: #fff; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .95rem; }
.footer-brand img { width: 190px; height: auto; }
.site-footer nav { display: flex; gap: 18px; color: var(--ink); font-weight: 760; }
.site-footer p { margin: 0; }

.legal-page { min-height: 100vh; background: var(--soft); }
.legal-main { padding: 86px 0; }
.legal-card { max-width: 880px; padding: 42px; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.legal-card h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.legal-card h2 { font-size: 1.7rem; margin-top: 32px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; } .delay-2 { transition-delay: .16s; } .delay-3 { transition-delay: .24s; }

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

@media (max-width: 1040px) {
  .header-inner { min-height: 76px; }
  .brand img { width: 190px; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 10px); display: none; flex-direction: column; align-items: stretch; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 15px; }
  .main-nav .nav-cta { text-align: center; }
  .hero { padding-top: 80px; }
  .hero-grid, .split-layout, .profile-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: 500px; }
  .sticky-copy { position: static; }
  .service-bento { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature-card { grid-row: auto; }
  .dark-card { grid-column: span 2; }
  .timeline, .benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, var(--max)); }
  h1 { font-size: clamp(2.35rem, 13vw, 3.6rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .section { padding: 72px 0; }
  .hero { padding: 62px 0 64px; }
  .brand img { width: 168px; }
  .hero-grid { gap: 38px; }
  .hero-panel { min-height: auto; padding: 14px; border-radius: 28px; }
  .panel-grid, .service-bento, .timeline, .benefit-grid { grid-template-columns: 1fr; }
  .main-metric, .wide-card, .dark-card { grid-column: auto; }
  .floating-target { width: 72px; right: 20px; top: 70px; }
  .metric-card { min-height: 128px; padding: 20px; }
  .proof-row span, .ribbon-inner span { font-size: .86rem; }
  .service-card, .usecase, .contact-form, .legal-card { padding: 24px; }
  .profile-visual { min-height: 380px; padding: 28px; }
  .quote-card { left: 24px; right: 24px; bottom: 24px; }
  .contact-notes span { width: 100%; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* --- Zeitziele Final-Modernisierung --- */
.green-text, .zz-process-card em { color: var(--green-dark, #6daa22); font-style: normal; }
.zz-hero { padding-top: 92px; background:
  radial-gradient(circle at 80% 18%, rgba(149,202,62,.22), transparent 32%),
  radial-gradient(circle at 8% 10%, rgba(149,202,62,.08), transparent 25%),
  linear-gradient(180deg, #fff 0%, #f7faf4 100%);
}
.zz-hero h1 { font-size: clamp(3.2rem, 6.4vw, 6.3rem); line-height: .93; letter-spacing: -.075em; }
.zz-hero-grid { grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.zz-chip-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin: 26px 0 28px; max-width: 620px; }
.zz-chip-grid span { min-height: 102px; padding: 16px; border-radius: 18px; color: #fff; background: linear-gradient(145deg, #10181c, #17272e); box-shadow: 0 16px 34px rgba(16,24,28,.16); display: grid; align-content: center; gap: 8px; }
.zz-chip-grid span:first-letter { color: var(--green); font-size: 1.4rem; }
.zz-chip-grid b { display: block; font-size: .9rem; line-height: 1.25; }
.zz-trust { max-width: 620px; padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.75); border: 1px solid rgba(16,24,28,.08); box-shadow: 0 12px 30px rgba(16,24,28,.05); }
.zz-trust span { color: var(--muted); }
.zz-visual { position: relative; min-height: 520px; border-radius: 42px; background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.46)), radial-gradient(circle at 60% 50%, rgba(149,202,62,.25), transparent 42%), linear-gradient(135deg, #fff, #f7faf4); border: 1px solid rgba(16,24,28,.08); box-shadow: 0 28px 80px rgba(16,24,28,.12); overflow: hidden; isolation: isolate; }
.zz-visual::before { content: ""; position: absolute; inset: 0; opacity: .32; background-image: radial-gradient(rgba(16,24,28,.12) 1px, transparent 1px); background-size: 18px 18px; mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent); }
.zz-file { position: absolute; width: 112px; height: 122px; padding: 15px 13px; border-radius: 14px; background: rgba(255,255,255,.92); border: 1px solid rgba(16,24,28,.1); box-shadow: 0 18px 34px rgba(16,24,28,.11); z-index: 3; }
.zz-file::after { content: ""; position: absolute; top: 0; right: 0; border-style: solid; border-width: 0 23px 23px 0; border-color: transparent rgba(16,24,28,.08) transparent transparent; }
.zz-file b { display: inline-flex; padding: 5px 7px; border-radius: 8px; background: #eaf6d9; color: var(--green-dark, #6daa22); font-size: .75rem; }
.zz-file small { display: block; margin-top: 16px; color: var(--muted); font-weight: 800; font-size: .72rem; }
.f1 { left: 56px; top: 125px; transform: rotate(-8deg); }
.f2 { left: 176px; top: 230px; transform: rotate(10deg); }
.f3 { left: 220px; top: 92px; transform: rotate(7deg); }
.f4 { left: 118px; top: 42px; transform: rotate(-4deg); }
.zz-folder { position: absolute; width: 116px; height: 74px; border-radius: 12px 16px 16px 16px; background: linear-gradient(135deg, #283137, #11181c); box-shadow: 0 20px 40px rgba(16,24,28,.18); z-index: 2; }
.zz-folder::before { content: ""; position: absolute; left: 0; top: -14px; width: 54px; height: 20px; border-radius: 10px 10px 0 0; background: inherit; }
.fo1 { left: 95px; top: 292px; } .fo2 { left: 240px; top: 334px; transform: scale(.78) rotate(8deg); opacity: .74; }
.q { position: absolute; color: rgba(16,24,28,.28); font-weight: 950; font-style: normal; font-size: 2rem; z-index: 1; }
.q1 { left: 46px; top: 232px; } .q2 { left: 310px; top: 152px; }
.zz-flow { position: absolute; left: 280px; right: 280px; top: 184px; height: 180px; z-index: 3; filter: drop-shadow(0 0 20px rgba(149,202,62,.45)); }
.zz-flow::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(12deg, rgba(149,202,62,.16) 0 2px, transparent 2px 12px), radial-gradient(circle at 55% 50%, rgba(149,202,62,.95), rgba(149,202,62,.35) 38%, transparent 70%); clip-path: polygon(0 40%, 76% 40%, 76% 16%, 100% 50%, 76% 84%, 76% 60%, 0 60%); }
.zz-flow::after { content: ""; position: absolute; right: 2px; top: 50%; width: 66px; height: 66px; transform: translateY(-50%) rotate(45deg); border-top: 12px solid #fff; border-right: 12px solid #fff; }
.zz-dashboard { position: absolute; right: 36px; top: 78px; width: 238px; height: 340px; z-index: 4; display: grid; grid-template-columns: 54px 1fr; overflow: hidden; border-radius: 24px; background: #fff; box-shadow: 0 34px 90px rgba(16,24,28,.22); border: 1px solid rgba(16,24,28,.08); }
.zz-dashboard aside { background: linear-gradient(180deg, #111b20, #0d1316); padding: 16px 13px; display: grid; justify-items: center; align-content: start; gap: 22px; }
.zz-dashboard aside img { width: 34px; height: 34px; }
.zz-dashboard aside i { width: 20px; height: 3px; border-radius: 10px; background: rgba(255,255,255,.24); }
.zz-dash-main { padding: 18px; }
.zz-dash-top { display: flex; justify-content: space-between; font-size: .78rem; text-transform: uppercase; font-weight: 900; margin-bottom: 14px; }
.zz-dash-top span { color: var(--green-dark, #6daa22); }
.zz-chart { height: 70px; border-radius: 14px; background: linear-gradient(180deg, #f8fbf5, #eef7e5); margin-bottom: 16px; position: relative; overflow: hidden; }
.zz-chart::before { content: ""; position: absolute; left: 10px; right: 10px; bottom: 14px; height: 42px; background: linear-gradient(135deg, transparent 0 18%, var(--green-dark,#6daa22) 19% 23%, transparent 24% 38%, var(--green) 39% 44%, transparent 45% 62%, var(--green-dark,#6daa22) 63% 67%, transparent 68% 100%); }
.zz-kpis { display: grid; grid-template-columns: 76px 1fr; gap: 12px; align-items: center; }
.zz-donut { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--green) 0 86%, #e6ecdf 86% 100%); font-weight: 950; font-size: .78rem; }
.zz-donut::before { content: ""; position: absolute; }
.zz-kpis i { display: block; height: 9px; margin: 8px 0; border-radius: 10px; background: #dfe7d8; }
.zz-kpis i:nth-child(1) { width: 88%; } .zz-kpis i:nth-child(2){width:66%;} .zz-kpis i:nth-child(3){width:78%;}
.zz-dashboard ul { list-style: none; padding: 0; margin: 18px 0 0; font-size: .75rem; color: var(--muted); font-weight: 850; }
.zz-dashboard li { margin: 9px 0; padding-left: 20px; position: relative; }
.zz-dashboard li::before { content: "✓"; position: absolute; left: 0; color: var(--green-dark,#6daa22); font-weight: 950; }
.zz-caption-left, .zz-caption-right { position: absolute; bottom: 24px; z-index: 5; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.zz-caption-left { left: 62px; color: #394248; } .zz-caption-right { right: 54px; color: var(--green-dark,#6daa22); }
.zz-process-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.zz-process-card { position: relative; min-height: 340px; padding: 34px; border-radius: 30px; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 52px rgba(16,24,28,.07); overflow: hidden; }
.zz-process-card > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 950; margin-bottom: 90px; }
.zz-process-card h3 { font-size: 2rem; }
.zz-process-card p { color: var(--muted); }
.zz-result-card { color: #fff; background: radial-gradient(circle at 80% 20%, rgba(149,202,62,.25), transparent 34%), linear-gradient(145deg, #111a1f, #0b1114); }
.zz-result-card p { color: rgba(255,255,255,.72); }
.zz-growth { position: absolute; right: 24px; bottom: 24px; width: 170px; height: 100px; background: linear-gradient(135deg, transparent 0 14%, var(--green) 15% 19%, transparent 20% 40%, var(--green) 41% 46%, transparent 47% 66%, var(--green) 67% 72%, transparent 73% 100%); filter: drop-shadow(0 0 16px rgba(149,202,62,.55)); }
.zz-about-grid, .zz-security-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items: stretch; }
.zz-about-card { padding: 34px; border-radius: 30px; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 52px rgba(16,24,28,.07); }
.zz-about-card > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.zz-about-points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin: 30px 0; }
.zz-about-points div { padding: 18px; border-radius: 20px; background: #f8faf6; border: 1px solid var(--line); font-weight: 830; }
.zz-proof { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; padding: 10px; border-radius: 22px; background: #f8faf6; border: 1px solid var(--line); }
.zz-proof span { padding: 10px; font-size: .85rem; } .zz-proof small { display: block; color: var(--muted); }
.zz-cta-card { padding: 34px; border-radius: 30px; color: #fff; background: radial-gradient(circle at 75% 20%, rgba(149,202,62,.20), transparent 34%), linear-gradient(145deg, #121c21, #0b1114); box-shadow: 0 34px 90px rgba(16,24,28,.22); display: flex; flex-direction: column; justify-content: center; }
.zz-cta-card p { color: rgba(255,255,255,.72); }
.zz-cta-card .button { margin-top: 12px; }
.zz-cta-card div { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 24px; }
.zz-cta-card div span { padding: 12px 8px; border-radius: 14px; background: rgba(255,255,255,.07); text-align: center; font-size: .8rem; font-weight: 800; }
.zz-security-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
.zz-security-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.zz-security-list article { padding: 24px; min-height: 160px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 16px 44px rgba(16,24,28,.06); }
.zz-security-list strong { display: block; margin-bottom: 10px; font-size: 1.1rem; }
.zz-security-list span { color: var(--muted); }
@media (max-width: 1040px) {
  .zz-hero-grid, .zz-about-grid, .zz-security-grid { grid-template-columns: 1fr; }
  .zz-process-grid { grid-template-columns: 1fr; }
  .zz-chip-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .zz-visual { min-height: 500px; }
}
@media (max-width: 700px) {
  .zz-chip-grid, .zz-about-points, .zz-proof, .zz-security-list { grid-template-columns: 1fr; }
  .zz-visual { min-height: 640px; border-radius: 28px; }
  .zz-file { width: 96px; height: 108px; }
  .f1 { left: 28px; top: 102px; } .f2 { left: 142px; top: 180px; } .f3 { left: 158px; top: 52px; } .f4 { left: 54px; top: 28px; }
  .fo1 { left: 46px; top: 268px; } .fo2 { left: 160px; top: 306px; }
  .zz-flow { left: 54px; right: 54px; top: 365px; height: 92px; }
  .zz-dashboard { width: min(290px, calc(100% - 46px)); height: 278px; right: 23px; top: auto; bottom: 64px; }
  .zz-caption-left { display: none; }
  .zz-caption-right { right: 28px; bottom: 28px; }
  .zz-cta-card div { grid-template-columns: 1fr; }
}

/* Aktuelle Überarbeitung: keine Sicherheitssektion auf der Startseite, keine dunkle Schlagwortleiste. */
.main-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 14px 30px rgba(104,157,34,.24);
}
.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #5e8f1d, var(--green-dark));
}
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 20px 46px rgba(104,157,34,.24);
}
.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #5e8f1d, var(--green-dark));
}
.button-outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.24);
}
.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255,255,255,.08);
}
.wide { width: 100%; }
.center-heading { max-width: 820px; margin-inline: auto; text-align: center; }
.align-left { text-align: left; }

.zz-hero { padding-bottom: 76px; }
.zz-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  margin-top: 48px;
}
.zz-chip-grid article {
  min-height: 148px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(23,28,32,.10);
  box-shadow: 0 18px 54px rgba(23,28,32,.07);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.zz-chip-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(149,202,62,.44);
  box-shadow: 0 28px 74px rgba(23,28,32,.11);
}
.zz-chip-grid i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: var(--green-dark);
  background: rgba(149,202,62,.17);
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 950;
}
.zz-chip-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.zz-chip-grid small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.zz-about-points div strong { display: block; margin-bottom: 5px; color: var(--ink); }
.zz-about-points div span { display: block; color: var(--muted); font-weight: 650; line-height: 1.45; }
.faq-grid { grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); }
.faq-list details { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.faq-list details:hover { transform: translateY(-2px); border-color: rgba(149,202,62,.38); box-shadow: 0 22px 58px rgba(23,28,32,.09); }
.contact-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.contact-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.07);
  font-weight: 760;
}
.contact-facts span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }

@media (max-width: 1040px) {
  .zz-chip-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 700px) {
  .zz-chip-grid, .form-grid { grid-template-columns: 1fr; }
  .zz-chip-grid { margin-top: 32px; }
}

/* ---------------------------------------------------------
   Korrektur 2026-06-09
   - Nutzenkarten über volle Breite ausbalanciert
   - dunkle Ergebnis-Karte mit sauberem Kontrast
   - CTA-Karte weniger gedrängt und besser lesbar
--------------------------------------------------------- */
.zz-chip-grid {
  max-width: none !important;
  width: min(var(--max), calc(100% - 42px));
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}
.zz-chip-grid article {
  min-height: 176px;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 18px;
  align-items: start;
}
.zz-chip-grid article i {
  grid-row: 1 / 3;
  margin: 0;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  font-size: 1.6rem;
}
.zz-chip-grid article strong {
  margin-top: 2px;
  margin-bottom: 8px;
  font-size: 1.03rem;
}
.zz-chip-grid article small {
  font-size: .94rem;
  max-width: 26ch;
}

.zz-process-grid {
  align-items: stretch;
}
.zz-process-card {
  min-height: 265px;
  padding: 30px;
}
.zz-process-card > span {
  margin-bottom: 52px;
}
.zz-process-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
}
.zz-process-card p {
  position: relative;
  z-index: 2;
  max-width: 32ch;
}
.zz-result-card {
  background:
    radial-gradient(circle at 82% 18%, rgba(149,202,62,.20), transparent 34%),
    linear-gradient(145deg, #111b20 0%, #0a1013 100%);
  isolation: isolate;
}
.zz-result-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.045), transparent 42%);
  pointer-events: none;
}
.zz-result-card > span {
  position: relative;
  z-index: 2;
  background: var(--green);
  color: #fff;
}
.zz-result-card h3,
.zz-result-card h3:not(.x),
.zz-result-card h3 em {
  color: #fff !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.zz-result-card h3 em {
  color: var(--green-2) !important;
}
.zz-result-card p {
  color: rgba(255,255,255,.82) !important;
  max-width: 34ch;
}
.zz-result-card .zz-growth {
  z-index: 1;
  right: -12px;
  bottom: -8px;
  width: 150px;
  height: 92px;
  opacity: .78;
  transform: rotate(-2deg);
}

.zz-cta-card {
  gap: 12px;
}
.zz-cta-card h2,
.zz-cta-card h2 span {
  color: #fff;
}
.zz-cta-card h2 span {
  color: var(--green-2);
}
.zz-cta-card .button {
  min-height: 56px;
  margin-top: 6px;
  padding-inline: 22px;
  line-height: 1.2;
}
.zz-cta-card .button-outline {
  border-color: rgba(255,255,255,.28);
  color: #fff;
  background: rgba(255,255,255,.04);
}
.zz-cta-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.zz-cta-card div span {
  flex: 1 1 150px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.88);
  font-size: .83rem;
  line-height: 1.25;
  white-space: normal;
}
.zz-cta-card div span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 7px;
  border-radius: 50%;
  background: rgba(149,202,62,.18);
  color: var(--green-2);
  font-size: .72rem;
}

@media (max-width: 1040px) {
  .zz-chip-grid {
    width: min(100% - 42px, var(--max));
  }
}
@media (max-width: 760px) {
  .zz-chip-grid {
    width: min(100% - 28px, var(--max));
  }
  .zz-chip-grid article {
    min-height: unset;
    grid-template-columns: 52px 1fr;
    padding: 20px;
  }
  .zz-chip-grid article i {
    width: 48px;
    height: 48px;
  }
  .zz-result-card .zz-growth {
    opacity: .38;
  }
}
