/* ---- Selbst gehostete Display-Schrift (DSGVO-konform, kein Google-CDN) ---- */
@font-face{font-family:"Outfit";font-style:normal;font-weight:600;font-display:swap;src:url("fonts/outfit-600.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:"Outfit";font-style:normal;font-weight:600;font-display:swap;src:url("fonts/outfit-600-ext.woff2") format("woff2");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:"Outfit";font-style:normal;font-weight:700;font-display:swap;src:url("fonts/outfit-700.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:"Outfit";font-style:normal;font-weight:700;font-display:swap;src:url("fonts/outfit-700-ext.woff2") format("woff2");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}
@font-face{font-family:"Outfit";font-style:normal;font-weight:800;font-display:swap;src:url("fonts/outfit-800.woff2") format("woff2");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;}
@font-face{font-family:"Outfit";font-style:normal;font-weight:800;font-display:swap;src:url("fonts/outfit-800-ext.woff2") format("woff2");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;}

:root {
  --green: #26873D;
  --green-bright: #2FB343;
  --green-dark: #206731;
  --teal: #2B8C9E;
  --teal-dark: #216d7b;
  --red: #cf4636;
  --ink: #16241b;
  --body: #48594e;
  --muted: #7a8a7f;
  --line: #e4ece6;
  --tint: #f4f9f5;
  --tint2: #eef6f0;
  --white: #ffffff;
  --shadow: 0 1px 2px rgba(20,40,25,.04), 0 8px 24px rgba(20,40,25,.05), 0 22px 48px rgba(20,40,25,.05);
  --radius: 14px;
  --wrap: 1120px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --brand-grad: linear-gradient(115deg, #279141 0%, #22803b 45%, #17532a 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Sichtbarer Tastatur-Fokus (nur bei Tastatur-Navigation, nicht bei Maus-Klick) */
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 4px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--white);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { color: var(--ink); line-height: 1.12; margin: 0; text-wrap: balance; font-family: var(--display); }
h1, h2 { letter-spacing: -0.028em; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 4.7vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
h3 { font-size: 1.15rem; font-weight: 720; letter-spacing: -0.015em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; color: var(--ink); font-size: 1.18rem; letter-spacing: -.01em; }
.brand .mark { width: 30px; height: 30px; display: block; flex: none; }
.brand b { color: var(--green); font-weight: 750; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--body); font-weight: 550; font-size: .96rem; }
.nav-links a:hover { color: var(--green); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 650; font-size: .96rem; padding: 11px 20px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: .18s ease;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(38,135,61,.28); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-lg { padding: 14px 26px; font-size: 1.02rem; }
.nav-menu { display: contents; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  align-items: center; justify-content: center;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: 12px;
  cursor: pointer; transition: border-color .18s ease, color .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { border-color: var(--green); color: var(--green); }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  content: ""; display: block; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, background .2s ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; left: 0; top: -6px; }
.nav-toggle-bars::after  { position: absolute; left: 0; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---- hero ---- */
.hero { padding: 76px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 650; letter-spacing: .02em; color: var(--green); background: var(--tint2); padding: 6px 14px; border-radius: 999px; text-transform: uppercase; }
.hero h1 { margin: 20px 0 18px; }
.hero .lead { font-size: 1.16rem; max-width: 34ch; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: .9rem; color: var(--muted); }

/* signature comparison card */
.compare-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 26px; box-shadow: var(--shadow);
}
.compare-card .cc-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.compare-card .cc-tag { font-size: .74rem; font-weight: 650; color: var(--teal); background: #e9f4f6; padding: 4px 10px; border-radius: 999px; }
.compare-card h3 { font-size: 1.05rem; }
.compare-card .cc-sub { font-size: .86rem; color: var(--muted); margin: 2px 0 20px; }

/* bar rows (signature motif) */
.bars { display: flex; flex-direction: column; gap: 18px; }
.bar-row .bar-label { display: flex; justify-content: space-between; font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.bar-row .bar-label span:last-child { color: var(--muted); font-weight: 500; font-size: .82rem; }
.track { position: relative; }
.bar { height: 13px; border-radius: 999px; margin-bottom: 6px; }
.bar.you { background: var(--green); }
.bar.avg { background: #c4cfc8; }
/* Hero-Karte: dezenter Grün-Glanz nur auf den „Ihre Kommune"-Balken (greift den Score-Ring auf); Auswertungsseite bleibt solide */
.compare-card .bar.you { background: linear-gradient(90deg, var(--green-dark), var(--green-bright)); }
.compare-card .bar-mini-legend .dot.you { background: linear-gradient(90deg, var(--green-dark), var(--green-bright)); }
.bar-mini-legend { display: flex; gap: 20px; margin-top: 16px; font-size: .8rem; color: var(--body); }
.chip { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 11px; height: 11px; border-radius: 4px; display: inline-block; }
.dot.you { background: var(--green); }
.dot.avg { background: #aabbb0; }

/* ---- proof / participation ---- */
.proof { background: var(--tint); }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.proof h2 { margin: 14px 0 16px; }
.proof .lead2 { font-size: 1.08rem; }
.proof ul { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 13px; }
.proof li { display: flex; gap: 12px; font-size: 1.02rem; color: var(--body); align-items: flex-start; }
.proof li b { color: var(--ink); font-weight: 700; }
.proof li .tick { flex: none; width: 22px; height: 22px; border-radius: 999px; background: var(--tint2); color: var(--green); display: grid; place-items: center; font-size: 12px; margin-top: 2px; }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px; box-shadow: var(--shadow); }
.pcard h3 { font-size: 1.05rem; margin-bottom: 4px; }
.pcard .sub { font-size: .86rem; color: var(--muted); margin-bottom: 26px; }
.pbar { margin-bottom: 22px; }
.pbar .pl { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.pbar .pl .name { font-weight: 650; color: var(--ink); font-size: .96rem; }
.pbar .pl .val { font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; }
.pbar .track2 { height: 26px; background: var(--tint2); border-radius: 8px; overflow: hidden; }
.pbar .fill { height: 100%; border-radius: 8px; }
.pbar.ours .fill { background: var(--green); }
.pbar.ours .val { color: var(--green); }
.pbar.usual .fill { background: #cdd8d0; }
.pbar.usual .val { color: var(--muted); }
.pcard .pfoot { font-size: .82rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; margin-top: 6px; }
.communities { border-top: 1px solid var(--line); margin-top: 52px; padding-top: 32px; text-align: center; }
.communities .kicker { font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); font-weight: 700; margin-bottom: 18px; }
.communities .names { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; font-weight: 750; color: var(--ink); font-size: 1.08rem; letter-spacing: -.01em; }
.communities .names span { opacity: .55; font-weight: 500; }

/* ---- generic sections ---- */
section.block { padding: 80px 0; }
section.tinted { background: var(--tint); }
.sec-head { max-width: 60ch; margin-bottom: 40px; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head p { margin-top: 14px; font-size: 1.08rem; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.step .n { width: 40px; height: 40px; border-radius: 12px; background: var(--tint2); color: var(--green); font-weight: 800; display: grid; place-items: center; font-size: 1.1rem; margin-bottom: 18px; }
.step h3 { margin-bottom: 8px; }
.step p { font-size: .97rem; }
.step .accent { color: var(--green); font-weight: 650; }

/* showcase */
.showcase { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.showcase .panel { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px; box-shadow: var(--shadow); }
.panel-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.panel-head .cc-tag { font-size: .74rem; font-weight: 650; color: var(--teal); background: #e9f4f6; padding: 4px 10px; border-radius: 999px; }

/* testimonial */
.quote { max-width: 760px; margin: 0 auto; text-align: center; }
.quote blockquote { font-size: clamp(1.35rem, 2.5vw, 1.85rem); color: var(--ink); font-weight: 640; letter-spacing: -.02em; line-height: 1.32; margin: 0 0 22px; }
.quote .who { font-size: .98rem; color: var(--body); }
.quote .who b { color: var(--ink); }
.placeholder-tag { display:inline-block; margin-top:14px; font-size:.76rem; color:var(--muted); background:#fff; border:1px dashed var(--line); padding:5px 12px; border-radius:999px; }

/* about teaser */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about .story p { font-size: 1.08rem; margin-bottom: 16px; }
.about .card-laaber { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.about .card-laaber .kv { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.about .card-laaber .kv:last-child { border-bottom: 0; }
.about .card-laaber .kv b { color: var(--ink); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: #fff; border-radius: 24px; padding: 56px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d6f0dd; max-width: 46ch; margin: 14px auto 28px; font-size: 1.1rem; }
.cta-band .btn-primary { background: #fff; color: var(--green-dark); }
.cta-band .btn-primary:hover { background: #eefaf0; }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 54px 0 34px; color: var(--muted); font-size: .92rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; margin-bottom: 34px; }
.foot-grid h4 { color: var(--ink); font-size: .95rem; margin: 0 0 14px; }
.foot-grid a { display: block; color: var(--body); padding: 4px 0; }
.foot-grid a:hover { color: var(--green); }
.foot-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 22px; flex-wrap: wrap; gap: 10px; }

.link-arrow { color: var(--green); font-weight: 650; display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; }
.link-arrow:hover { gap: 10px; }

/* ---- Auswertung page ---- */
.page-hero { padding: 58px 0 6px; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { max-width: 20ch; }
.page-hero p { margin-top: 16px; font-size: 1.12rem; max-width: 58ch; }
.scoregrid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 26px; }
/* Marken-Karten mit grünem Verlauf + weicher Tiefe (Score, Callout, Kontakt) */
.scorecard, .callout, .kontakt-card { position: relative; overflow: hidden; background: var(--brand-grad); }
.scorecard::before, .callout::before, .kontakt-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(75% 85% at 90% 0%, rgba(255,255,255,.16), transparent 55%), radial-gradient(60% 72% at 0% 100%, rgba(0,0,0,.14), transparent 60%); }
.scorecard > *, .callout > *, .kontakt-card > * { position: relative; z-index: 1; }
.scorecard { color: #eaf4ee; border-radius: 18px; padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.scorecard .lab { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.75); font-weight: 700; }
.scorecard .big { font-size: clamp(3rem, 7vw, 4.2rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; margin: 14px 0 8px; color: #fff; }
.scorecard .big small { font-size: 1.3rem; color: rgba(255,255,255,.72); font-weight: 600; }
.scorecard .cmp { font-size: .95rem; color: rgba(255,255,255,.85); }
.scorecard .cmp b { color: var(--green-bright); }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.metric { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center; }
.metric .mnum { font-size: 2.1rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.metric .mnum em { color: var(--green); font-style: normal; }
.metric .mlab { font-size: .92rem; color: var(--muted); margin-top: 6px; }
.catchart .bars { gap: 4px; }
.catchart .bar-label span:last-child { font-variant-numeric: tabular-nums; }
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voice { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 26px; box-shadow: var(--shadow); font-size: 1.02rem; color: var(--ink); line-height: 1.5; }
.voice .qm { display: block; font-size: 2.4rem; line-height: 1; color: var(--teal); font-weight: 800; margin-bottom: 4px; }
.voice .vsrc { margin-top: 16px; font-size: .82rem; color: var(--muted); }
.summary-box { background: var(--tint2); border: 1px solid var(--line); border-radius: 16px; padding: 38px; }
.summary-box h3 { font-size: 1.3rem; margin-bottom: 20px; }
.summary-box .cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.summary-box h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; margin: 0 0 12px; }
.summary-box h4.good { color: var(--green); }
.summary-box h4.watch { color: #b4622f; }
.summary-box ul.pts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.summary-box ul.pts li { display: flex; gap: 11px; align-items: flex-start; font-size: .98rem; color: var(--body); }
.summary-box ul.pts li .pico { flex: none; width: 20px; height: 20px; margin-top: 1px; }
.summary-box ul.pts.good li .pico { color: var(--green); }
.summary-box ul.pts.watch li .pico { color: #b4622f; }
@media (max-width: 900px) {
  .scoregrid, .metrics, .voices, .summary-box .cols { grid-template-columns: 1fr; }
}

/* ---- Referenzen page ---- */
.brand .wm { white-space: nowrap; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.tcard .tqm { display: block; font-size: 2.4rem; line-height: 1; color: var(--teal); font-weight: 800; margin-bottom: 4px; }
.tcard .tq { font-size: 1.06rem; color: var(--ink); line-height: 1.5; font-weight: 500; margin-top: 8px; }
.tcard .tperson { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 22px; }
.tcard .tsep { border-top: 1px solid var(--line); margin-top: 22px; }
.avatar { width: 52px; height: 52px; border-radius: 999px; background: var(--tint2); border: 1px dashed #b8ccbe; display: grid; place-items: center; color: #9bb3a3; flex: none; }
.tperson .pn { font-weight: 700; color: var(--ink); font-size: .98rem; }
.tperson .pr { font-size: .85rem; color: var(--muted); }
.komm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.komm { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; text-align: center; box-shadow: var(--shadow); }
.komm .kn { font-weight: 750; color: var(--ink); font-size: 1.05rem; letter-spacing: -.01em; }
.komm .kt { display: block; font-size: .82rem; color: var(--muted); font-weight: 500; margin-top: 4px; }
.komm .kt em { color: var(--green); font-style: normal; font-weight: 700; }
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ---- So funktioniert's page ---- */
.process { display: flex; flex-direction: column; gap: 20px; }
.pstep { display: grid; grid-template-columns: 56px 1fr; gap: 24px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px 32px; box-shadow: var(--shadow); align-items: start; }
.pstep .pnum { width: 52px; height: 52px; border-radius: 14px; background: var(--green); color: #fff; font-weight: 800; font-size: 1.4rem; display: grid; place-items: center; }
.pstep h3 { font-size: 1.22rem; margin-bottom: 8px; }
.pstep p { font-size: 1.02rem; }
.pstep .tag2 { display: inline-block; margin-top: 14px; font-size: .8rem; font-weight: 650; color: var(--green); background: var(--tint2); padding: 6px 13px; border-radius: 999px; }
.callout { color: #eaf4ee; border-radius: 18px; padding: 40px 44px; display: flex; gap: 38px; align-items: center; }
.callout .ctext h3 { color: #fff; font-size: 1.35rem; margin-bottom: 8px; }
.callout .ctext p { color: rgba(255,255,255,.85); font-size: 1.05rem; }
/* Timer-Dial: rückt die Zeitangabe in den Mittelpunkt */
.callout-dial { position: relative; width: 168px; height: 168px; flex: none; display: grid; place-items: center; }
.callout-dial .dialring { position: absolute; inset: 0; width: 100%; height: 100%; }
.callout-dial .dialinner { position: relative; text-align: center; line-height: 1; }
.callout-dial .dpre { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.72); font-weight: 700; margin-bottom: 2px; }
.callout-dial .dnum { font-family: var(--display); font-size: 3.6rem; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.callout-dial .dunit { display: block; font-size: 1rem; color: rgba(255,255,255,.85); font-weight: 600; margin-top: 3px; }
.themes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.theme { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; box-shadow: var(--shadow); }
.theme h3 { font-size: 1.12rem; margin-bottom: 10px; }
.theme p { font-size: .95rem; color: var(--body); }
.note-line { display: flex; align-items: center; gap: 12px; background: var(--tint2); border: 1px solid var(--line); border-radius: 12px; padding: 20px 24px; font-size: 1rem; color: var(--ink); }
.note-line .nicon { flex: none; width: 30px; height: 30px; border-radius: 999px; background: #fff; color: var(--green); display: grid; place-items: center; border: 1px solid var(--line); }
@media (max-width: 900px) {
  .themes-grid { grid-template-columns: 1fr; }
  .callout { flex-direction: column; text-align: center; align-items: center; }
}
.theme .ticon { width: 46px; height: 46px; border-radius: 12px; background: var(--tint2); color: var(--green); display: grid; place-items: center; margin-bottom: 16px; }
.theme .ticon svg { width: 25px; height: 25px; }
.note-line .nicon svg { width: 16px; height: 16px; }

/* ---- Über uns / Kontakt page ---- */
.photo-ph { background: var(--tint2); border: 1px dashed #b8ccbe; border-radius: 16px; min-height: 320px; display: grid; place-items: center; color: var(--muted); text-align: center; padding: 24px; }
.photo-ph svg { width: 46px; height: 46px; color: #9bb3a3; margin-bottom: 12px; }
.photo-ph .pt { font-size: .9rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px; box-shadow: var(--shadow); }
.value .vicon { width: 46px; height: 46px; border-radius: 12px; background: var(--tint2); color: var(--green); display: grid; place-items: center; margin-bottom: 16px; }
.value .vicon svg { width: 25px; height: 25px; }
.value h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value p { font-size: .96rem; }
.kontakt-card { color: #eaf4ee; border-radius: 18px; padding: 52px; text-align: center; }
.kontakt-card h2 { color: #fff; }
.kontakt-card p { color: rgba(255,255,255,.85); margin: 14px auto 26px; max-width: 46ch; font-size: 1.08rem; }
.kontakt-card .mail { display: inline-block; font-size: 1.25rem; font-weight: 700; color: #fff; border-bottom: 2px solid rgba(255,255,255,.6); padding-bottom: 3px; transition: border-color .18s ease; }
.kontakt-card .mail:hover { border-bottom-color: #fff; }
@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr; }
  .kontakt-card { padding: 40px 24px; }
}

/* ---- comparison numbers + scorecard (Auswertung) ---- */
.bar-label .sc { font-weight: 800; display: inline-block; padding: 2px 10px; border-radius: 999px; }
.bar-label .sc.up { color: var(--green); background: rgba(38,135,61,.12); }
.bar-label .sc.down { color: var(--red); background: rgba(207,70,54,.13); }
.score-cmp { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.delta { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: 1.15rem; padding: 7px 16px; border-radius: 999px; letter-spacing: -.01em; }
.delta .arrow { font-size: .8em; }
.delta.up { background: rgba(255,255,255,.2); color: #fff; }
.delta.down { background: rgba(207,70,54,.2); color: #f08c7e; }
.score-cmp .cmp-sub { color: rgba(255,255,255,.85); font-size: .92rem; max-width: 30ch; }
.scorecard.wide { flex-direction: row; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 30px 40px; }
.scorecard.wide .big { margin: 8px 0 0; }
.scorecard.wide .cmp { max-width: 32ch; }
/* score ring gauge */
.score-ring { position: relative; width: 148px; height: 148px; flex: none; }
.score-ring .ring-val { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-ring .ring-val .num { font-size: 2.5rem; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1; }
.score-ring .ring-val .of { font-size: .8rem; color: rgba(255,255,255,.72); margin-top: 3px; }
@keyframes ringFill { from { stroke-dashoffset: 364.4; } to { stroke-dashoffset: 109.3; } }
#scoreArc.go { animation: ringFill 1.3s cubic-bezier(.2,.7,.2,1) forwards; }
/* animated + interactive chart rows */
.catchart .bar { transition: width 1.05s cubic-bezier(.2,.7,.2,1); }
/* homepage bars grow on scroll, same easing as the Auswertung chart */
.compare-card .bar, .showcase .panel .bar, .pbar .fill { transition: width 1.05s cubic-bezier(.2,.7,.2,1); }
.catchart .bar-row { padding: 9px 10px; margin: 0 -10px; border-radius: 9px; transition: background .15s ease; }
.catchart .bar-row:hover { background: var(--tint2); }
.rdelta { display: inline-block; opacity: 0; transform: translateX(-4px); font-weight: 800; margin-left: 8px; font-size: .8rem; transition: opacity .16s ease, transform .16s ease; }
.rdelta.up { color: var(--green); }
.rdelta.down { color: var(--red); }
.catchart .bar-row:hover .rdelta { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .catchart .bar { transition: none; }
  .compare-card .bar, .showcase .panel .bar, .pbar .fill { transition: none; }
  #scoreArc.go { animation: none; }
}
.metrics.below { margin-top: 20px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .metrics.below { grid-template-columns: 1fr 1fr; } }

/* scroll-reveal: Karten sanft einblenden (nur wenn JS/IO aktiv, sonst immer sichtbar) */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1), box-shadow .2s ease, border-color .2s ease; will-change: opacity, transform; }
.js .reveal.in { opacity: 1; transform: none; }
.js .steps .step:nth-child(2) { transition-delay: .09s; }
.js .steps .step:nth-child(3) { transition-delay: .18s; }
/* Unterseiten-Hero gestaffelt einblenden, wie der Startseiten-Hero */
.js .page-hero .eyebrow.reveal { transition-delay: 0s; }
.js .page-hero h1.reveal { transition-delay: .07s; }
.js .page-hero p.reveal { transition-delay: .14s; }
/* gestaffeltes Einblenden in dreispaltigen Karten-/Textreihen */
.js .process .pstep:nth-child(2), .js .values-grid .value:nth-child(2), .js .testimonials .tcard:nth-child(2), .js .voices .voice:nth-child(2) { transition-delay: .09s; }
.js .process .pstep:nth-child(3), .js .values-grid .value:nth-child(3), .js .testimonials .tcard:nth-child(3), .js .voices .voice:nth-child(3) { transition-delay: .18s; }
/* dreispaltiges Themenfeld-Grid: Spalten je Reihe kaskadieren */
.js .themes-grid .theme:nth-child(3n+2) { transition-delay: .08s; }
.js .themes-grid .theme:nth-child(3n+3) { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
/* hero entrance: gestaffelt einblenden beim Laden */
.js .hero .eyebrow.reveal { transition-delay: 0s; }
.js .hero h1.reveal { transition-delay: .07s; }
.js .hero .lead.reveal { transition-delay: .14s; }
.js .hero .hero-cta.reveal { transition-delay: .21s; }
.js .hero .hero-note.reveal { transition-delay: .28s; }

/* Header löst sich beim Scrollen mit weichem Schatten vom Inhalt */
.site-header { transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { box-shadow: 0 1px 0 rgba(20,40,25,.03), 0 10px 30px rgba(20,40,25,.07); background: rgba(255,255,255,.94); }

/* weicher Tiefen-Glow hinter dem Hero */
.hero { position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -140px; right: -100px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(47,179,67,.14), rgba(47,179,67,0) 68%); pointer-events: none; z-index: 0; }
.hero::after { content: ""; position: absolute; left: -140px; bottom: -180px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(43,140,158,.10), rgba(43,140,158,0) 68%); pointer-events: none; z-index: 0; }
.hero .wrap { position: relative; z-index: 1; }

/* Grün-Verlauf für ein einzelnes Wort in der Headline */
.grad { background: linear-gradient(100deg, var(--green-bright), var(--green) 55%, var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* "live"-Punkt im Eyebrow */
.eyebrow .live { width: 7px; height: 7px; border-radius: 999px; background: var(--green-bright); box-shadow: 0 0 0 0 rgba(47,179,67,.5); animation: livePulse 2.4s infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(47,179,67,.5); } 70% { box-shadow: 0 0 0 7px rgba(47,179,67,0); } 100% { box-shadow: 0 0 0 0 rgba(47,179,67,0); } }

/* Sterne-Referenz unter den Buttons */
.stars-ref { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: .9rem; color: var(--body); }
.stars-ref .stars { color: #F5A623; letter-spacing: 1px; font-size: 1rem; }
.stars-ref b { color: var(--ink); font-weight: 700; }

/* Gesamtzufriedenheits-Ring über der Vergleichskarte */
.hero-kpi { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow); margin-bottom: 14px; }
.hero-kpi .ring { width: 70px; height: 70px; flex: none; }
.hero-kpi .ring-v { transition: stroke-dashoffset 1.1s cubic-bezier(.2,.7,.2,1); }
.hero-kpi .kpi-t { font-family: var(--display); font-weight: 700; color: var(--ink); font-size: 1rem; margin: 0 0 3px; }
.hero-kpi .kpi-s { font-size: .84rem; color: var(--muted); margin: 0; line-height: 1.45; }
.hero-kpi .kpi-s b { color: var(--green); font-weight: 700; }
@media (prefers-reduced-motion: reduce) {
  .eyebrow .live { animation: none; }
  .hero-kpi .ring-v { transition: none; }
}

/* excerpt hint + subtle card hover */
.more-hint { color: var(--muted); font-size: .92rem; margin-top: 16px; letter-spacing: .03em; }
.metric, .step, .value, .theme, .komm, .tcard, .voice, .pstep, .compare-card, .hero-kpi { transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.metric:hover, .step:hover, .value:hover, .theme:hover, .komm:hover, .tcard:hover, .voice:hover, .pstep:hover, .compare-card:hover, .hero-kpi:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(20,40,25,.07), 0 20px 44px rgba(20,40,25,.08);
  border-color: #cfe3d5;
}
/* Hover-Transition gewinnt über die Reveal-Transition, damit Anheben & Schatten sanft und flott überblenden */
.js .metric:hover, .js .step:hover, .js .value:hover, .js .theme:hover, .js .komm:hover, .js .tcard:hover, .js .voice:hover, .js .pstep:hover, .js .compare-card:hover, .js .hero-kpi:hover { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
@media (prefers-reduced-motion: reduce) {
  .metric, .step, .value, .theme, .komm, .tcard, .voice, .pstep, .compare-card, .hero-kpi { transition: none; }
  .metric:hover, .step:hover, .value:hover, .theme:hover, .komm:hover, .tcard:hover, .voice:hover, .pstep:hover, .compare-card:hover, .hero-kpi:hover { transform: none; }
}

/* slim CTA */
.cta-band.slim { padding: 30px 40px; display: flex; align-items: center; justify-content: space-between; gap: 28px; text-align: left; }
.cta-band.slim .cta-txt h2 { font-size: 1.5rem; }
.cta-band.slim .cta-txt p { margin: 6px 0 0; font-size: 1rem; }
.cta-band.slim .btn { flex: none; }
@media (max-width: 700px) {
  .cta-band.slim { flex-direction: column; text-align: center; align-items: center; }
}

/* stub pages */
.stub { padding: 90px 0; text-align: center; }
.stub .eyebrow { margin-bottom: 20px; }
.stub h1 { max-width: 20ch; margin: 0 auto 18px; }
.stub p { max-width: 52ch; margin: 0 auto; font-size: 1.1rem; }

/* Rechtstexte (Impressum / Datenschutz) */
.legal { padding: 6px 0 30px; }
.legal .wrap { max-width: 820px; }
.legal h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.05rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--body); line-height: 1.7; }
.legal p { margin: 0 0 14px; }
.legal .addr { margin: 0 0 16px; line-height: 1.75; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--green); text-decoration: underline; }
.legal .updated { margin-top: 34px; font-size: .95rem; color: var(--muted, #6b7a70); }
.legal .todo { display: inline-block; background: #fff5d6; border: 1px solid #e7cf7a; color: #7a5c00; border-radius: 6px; padding: 0 8px; font-size: .9em; font-weight: 650; }

@media (max-width: 900px) {
  .hero-grid, .showcase, .about, .proof-grid { grid-template-columns: 1fr; gap: 34px; }
  .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }

  /* ---- Mobile-Navigation (Burger-Menü) ---- */
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: block;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(20,40,25,.10);
    padding: 6px 24px 20px;
    max-height: 0; overflow: hidden;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: max-height .3s ease, opacity .25s ease, transform .25s ease, visibility 0s linear .3s;
  }
  .nav-menu.open {
    max-height: 460px; opacity: 1; visibility: visible; transform: none;
    transition: max-height .3s ease, opacity .25s ease, transform .25s ease, visibility 0s;
  }
  .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { padding: 15px 2px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 18px; width: 100%; justify-content: center; }
}
