:root {
  --ink: #111615;
  --muted: #64716b;
  --paper: #f8f2e8;
  --white: #ffffff;
  --line: #dfd3c0;
  --forest: #16483c;
  --forest-2: #09241f;
  --mint: #dbece4;
  --lime: #d9ff67;
  --amber: #ffc247;
  --red: #e05a47;
  --blue: #2f778f;
  --rose: #f4c7bd;
  --shadow: 0 28px 90px rgba(9, 36, 31, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  animation: page-in 360ms ease both;
}

body,
input,
select,
textarea,
button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

@keyframes page-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.page-header {
  color: var(--ink);
  background: rgba(247, 244, 238, 0.94);
  box-shadow: 0 12px 34px rgba(16, 21, 20, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 10px 28px rgba(217, 255, 103, 0.28);
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 800;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-open .main-nav a:hover,
.site-header.page-header .main-nav a:hover,
.main-nav a.is-active {
  background: var(--mint);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-2);
}

.calm-hero,
.calm-hero .hero-grid {
  min-height: 88vh;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.92) contrast(1.04);
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 18%, rgba(217, 255, 103, 0.2), rgba(217, 255, 103, 0) 28%),
    linear-gradient(90deg, rgba(7, 21, 18, 0.94) 0%, rgba(7, 21, 18, 0.66) 42%, rgba(7, 21, 18, 0.17) 76%),
    linear-gradient(0deg, rgba(7, 21, 18, 0.8) 0%, rgba(7, 21, 18, 0) 48%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 94vh;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: 132px clamp(18px, 5vw, 72px) 58px;
}

.hero-copy {
  max-width: 930px;
}

.eyebrow,
.section-kicker,
.package-label,
.work-type,
.panel-label {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero .panel-label {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 8.4vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h4 {
  margin: 22px 0 10px;
  color: var(--forest-2);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.button.primary {
  color: var(--forest-2);
  background: var(--lime);
}

.button.primary:hover {
  background: #e5fa9b;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 24px;
  background: rgba(10, 30, 26, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.14;
}

.simple-panel strong {
  font-size: 1.32rem;
}

.panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.panel-meta span {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 850;
}

.ticker {
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 14px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, var(--lime), var(--amber), var(--rose));
  color: var(--forest-2);
}

.ticker span {
  white-space: nowrap;
  border-right: 1px solid rgba(13, 40, 35, 0.25);
  padding-right: 10px;
  font-weight: 900;
}

section {
  padding: clamp(74px, 9vw, 138px) clamp(18px, 5vw, 72px);
}

.page-hero {
  padding-top: clamp(142px, 16vw, 210px);
  background:
    linear-gradient(135deg, rgba(216, 239, 131, 0.18), rgba(56, 109, 134, 0.1)),
    var(--paper);
}

.page-hero h1 {
  max-width: 1120px;
  color: var(--ink);
}

.page-hero p:not(.section-kicker) {
  max-width: 760px;
  font-size: 1.16rem;
}

.manifest {
  background: var(--paper);
}

.home-statement {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--paper);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--forest-2);
}

.trust-strip span {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 950;
  text-align: center;
}

.home-statement h2 {
  max-width: 980px;
}

.home-statement p:last-child {
  max-width: 720px;
  margin-left: auto;
  font-size: 1.12rem;
}

.home-services {
  background: var(--white);
}

.home-service-grid {
  display: grid;
  max-width: 1120px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-service-grid article {
  border-top: 3px solid var(--forest);
  padding: 24px 0 0;
}

.home-service-grid p {
  margin-bottom: 0;
}

.local-focus,
.region-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: var(--paper);
}

.local-focus h2,
.region-intro h2 {
  max-width: 860px;
}

.local-focus p:not(.section-kicker),
.region-intro p {
  font-size: 1.07rem;
}

.local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.local-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--forest-2);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(9, 36, 31, 0.06);
}

.compact-cta {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.manifest-inner {
  max-width: 1120px;
}

.manifest h2 {
  max-width: 1050px;
}

.manifest p:last-child {
  max-width: 760px;
  margin-left: auto;
  font-size: 1.12rem;
}

.section-heading {
  max-width: 950px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.work,
.work-preview {
  background: #111a18;
  color: var(--white);
}

.work .section-kicker,
.work-preview .section-kicker,
.work-type {
  color: var(--amber);
}

.work p,
.work-preview p,
.work-card p {
  color: rgba(255, 255, 255, 0.7);
}

.work-grid {
  display: grid;
  max-width: 1220px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.work-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: #20342f;
}

.work-card.large {
  min-height: 520px;
  grid-row: span 2;
  background:
    linear-gradient(145deg, rgba(216, 239, 131, 0.18), rgba(56, 109, 134, 0.2)),
    #20342f;
}

.work-card.dark {
  background: #0d2823;
}

.capabilities {
  background: var(--paper);
}

.team-preview,
.team-section {
  background:
    linear-gradient(135deg, rgba(216, 239, 131, 0.16), rgba(56, 109, 134, 0.08)),
    var(--paper);
}

.team-section {
  padding-top: clamp(54px, 7vw, 100px);
}

.small-team-grid {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.small-team-grid article {
  border-top: 3px solid var(--forest);
  padding-top: 22px;
}

.small-team-grid p {
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.team-grid.compact {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.team-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 18px 58px rgba(16, 21, 20, 0.08);
}

.team-card.lead {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(216, 239, 131, 0.12), rgba(56, 109, 134, 0.22)),
    var(--forest-2);
}

.team-card.lead p {
  color: rgba(255, 255, 255, 0.74);
}

.avatar {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  color: var(--forest-2);
  background: var(--lime);
  font-weight: 950;
}

.role {
  margin: 30px 0 10px;
  color: var(--red);
  font-size: 0.77rem;
  font-weight: 950;
  text-transform: uppercase;
}

.team-card.lead .role {
  color: var(--lime);
}

.team-card p:last-child {
  margin-bottom: 0;
}

.team-link {
  margin-top: 26px;
}

.role-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.role-list span {
  display: flex;
  min-height: 74px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  color: var(--forest-2);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  box-shadow: 0 10px 34px rgba(9, 36, 31, 0.06);
}

.capability-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.capability-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 14px 46px rgba(16, 21, 20, 0.07);
}

.capability-grid h3 {
  color: var(--forest-2);
}

.capability-grid p {
  margin-bottom: 0;
}

.services {
  background: var(--mint);
}

.builder-compare {
  background:
    linear-gradient(135deg, rgba(217, 255, 103, 0.12), rgba(255, 194, 71, 0.1)),
    var(--paper);
}

.seo-section {
  background: var(--white);
}

.seo-grid,
.subscription-grid,
.subscription-single,
.subscription-options {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.seo-grid article,
.subscription-grid article,
.subscription-single article,
.subscription-options article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--paper);
}

.seo-grid p,
.subscription-grid p,
.subscription-single p {
  margin-bottom: 0;
}

.seo-region-link {
  max-width: 940px;
  margin: 26px auto 0;
  border-left: 4px solid var(--red);
  padding: 16px 18px;
  color: var(--forest-2);
  background: var(--paper);
  font-weight: 850;
}

.seo-region-link a {
  color: var(--red);
  font-weight: 950;
  text-decoration: underline;
}

.subscription-section {
  background: var(--white);
}

.subscription-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subscription-single {
  max-width: 760px;
  grid-template-columns: 1fr;
}

.subscription-options {
  max-width: 980px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.subscription-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 800;
}

.subscription-note.light {
  color: var(--muted) !important;
}

.featured-subscription {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(217, 255, 103, 0.12), rgba(47, 119, 143, 0.18)),
    var(--forest-2) !important;
}

.featured-subscription p,
.featured-subscription li,
.featured-subscription h4 {
  color: rgba(255, 255, 255, 0.76);
}

.featured-subscription .package-label,
.featured-subscription .price {
  color: var(--lime);
}

.compare-grid {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  box-shadow: 0 18px 58px rgba(9, 36, 31, 0.08);
}

.compare-grid .preferred {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(217, 255, 103, 0.14), rgba(47, 119, 143, 0.18)),
    var(--forest-2);
}

.compare-grid .preferred p,
.compare-grid .preferred li {
  color: rgba(255, 255, 255, 0.78);
}

.compare-grid .preferred h3 {
  color: var(--lime);
}

.service-list {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid rgba(16, 21, 20, 0.18);
}

.service-list article {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: clamp(18px, 5vw, 76px);
  border-bottom: 1px solid rgba(16, 21, 20, 0.18);
  padding: 30px 0;
}

.service-list span {
  color: var(--red);
  font-weight: 950;
}

.service-list h2,
.service-list h3 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.service-list p {
  max-width: 680px;
  margin-bottom: 0;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background: var(--paper);
}

.story {
  padding-top: clamp(54px, 7vw, 100px);
}

.about-copy {
  max-width: 860px;
}

.about-copy p:not(.section-kicker) {
  font-size: 1.07rem;
}

.about-board {
  display: grid;
  gap: 12px;
}

.about-board div {
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 14px 46px rgba(16, 21, 20, 0.08);
}

.about-board strong,
.about-board span {
  display: block;
}

.about-board strong {
  margin-bottom: 8px;
  color: var(--forest-2);
  font-size: 1.25rem;
}

.about-board span {
  color: var(--muted);
  line-height: 1.6;
}

.process {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
}

.process-grid li {
  min-height: 300px;
  padding: 28px;
  background: var(--paper);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 60px;
  color: var(--red);
  font-weight: 950;
}

.packages {
  background: #f1eadf;
}

.offer-model {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(241, 234, 223, 0.96)),
    #f1eadf;
}

.service-hero {
  display: grid;
  min-height: 76vh;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  padding-top: clamp(142px, 16vw, 210px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(217, 255, 103, 0.2), rgba(47, 119, 143, 0.16)),
    var(--forest-2);
}

.service-hero h1 {
  max-width: 1040px;
}

.service-hero p:not(.section-kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.16rem;
}

.service-hero .section-kicker {
  color: var(--lime);
}

.dark-ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.service-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.service-hero-card span,
.service-hero-card strong {
  display: block;
}

.service-hero-card span {
  margin-bottom: 54px;
  color: var(--lime);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 950;
  line-height: 0.92;
}

.service-hero-card strong {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.service-hero-card p {
  margin-bottom: 0;
}

.pricing-switch-section {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(217, 255, 103, 0.12), rgba(47, 119, 143, 0.16)),
    #0b211d;
}

.pricing-intro {
  display: grid;
  max-width: 1180px;
  margin: 0 auto clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.pricing-intro h2 {
  max-width: 880px;
  color: var(--white);
}

.pricing-intro .section-kicker {
  color: var(--lime);
}

.audience-toggle {
  position: relative;
  display: grid;
  width: min(100%, 420px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.audience-toggle::before {
  position: absolute;
  inset: 5px auto 5px 5px;
  width: calc(50% - 5px);
  border-radius: 6px;
  background: var(--lime);
  box-shadow: 0 12px 28px rgba(217, 255, 103, 0.24);
  content: "";
  transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.pricing-switch-section[data-active-audience="unternehmen"] .audience-toggle::before {
  transform: translateX(100%);
}

html[data-initial-audience="unternehmen"] .pricing-switch-section:not([data-active-audience]) .audience-toggle::before {
  transform: translateX(100%);
}

.audience-toggle button {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 0;
  border-radius: 6px;
  padding: 13px 18px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  font-weight: 950;
  transition: color 180ms ease;
}

.audience-toggle button[aria-selected="true"] {
  color: var(--forest-2);
  background: transparent;
  box-shadow: none;
}

html[data-initial-audience="unternehmen"]
  .pricing-switch-section:not([data-active-audience])
  [data-audience-button="verein"] {
  color: rgba(255, 255, 255, 0.72);
}

html[data-initial-audience="unternehmen"]
  .pricing-switch-section:not([data-active-audience])
  [data-audience-button="unternehmen"] {
  color: var(--forest-2);
}

.audience-toggle button:focus-visible {
  outline: 3px solid rgba(217, 255, 103, 0.7);
  outline-offset: 3px;
}

.audience-panels {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  perspective: 1200px;
}

.audience-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 242, 232, 0.98)),
    var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  transform-origin: 50% 20%;
  animation: panelIn 360ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.audience-panel[hidden] {
  display: none;
}

html:not([data-initial-audience="unternehmen"])
  .pricing-switch-section:not([data-active-audience])
  [data-audience-panel="unternehmen"] {
  display: none;
}

html[data-initial-audience="unternehmen"]
  .pricing-switch-section:not([data-active-audience])
  [data-audience-panel="verein"] {
  display: none;
}

html[data-initial-audience="unternehmen"]
  .pricing-switch-section:not([data-active-audience])
  [data-audience-panel="unternehmen"] {
  display: block;
}

.audience-panel.is-leaving {
  animation: panelOut 240ms ease both;
}

.audience-panel.is-entering {
  animation: panelIn 420ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(24px) rotateX(-4deg) scale(0.98);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes panelOut {
  from {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: translateY(-16px) rotateX(3deg) scale(0.985);
    filter: blur(6px);
  }
}

.audience-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(24px, 4vw, 42px);
}

.audience-story h3 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.96;
}

.audience-story p:not(.section-kicker) {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.pricing-cards {
  display: grid;
  margin-top: clamp(20px, 4vw, 34px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  display: flex;
  min-height: 440px;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  box-shadow: 0 16px 54px rgba(16, 21, 20, 0.08);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  animation: cardRise 420ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.pricing-card:nth-child(2) {
  animation-delay: 70ms;
}

.pricing-card:nth-child(3) {
  animation-delay: 140ms;
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-card:hover {
  border-color: rgba(22, 72, 60, 0.34);
  box-shadow: 0 24px 70px rgba(16, 21, 20, 0.12);
  transform: translateY(-3px);
}

.pricing-card.primary-card {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(217, 255, 103, 0.14), rgba(47, 119, 143, 0.18)),
    var(--forest-2);
}

.pricing-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pricing-card.primary-card span,
.pricing-card.primary-card .price {
  color: var(--lime);
}

.pricing-card.primary-card p,
.pricing-card.primary-card li {
  color: rgba(255, 255, 255, 0.76);
}

.pricing-card .price {
  margin: 18px 0;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  line-height: 1.04;
}

.pricing-card ul {
  margin-top: auto;
  padding-top: 22px;
}

.service-blocks {
  background: var(--white);
}

.service-block-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.service-block-grid article {
  min-width: 0;
  min-height: 260px;
  padding: clamp(24px, 3vw, 32px);
  background: var(--paper);
}

.service-block-grid article.wide {
  grid-column: span 2;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(217, 255, 103, 0.12), rgba(244, 199, 189, 0.12)),
    #111a18;
}

.service-block-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--red);
  font-weight: 950;
}

.service-block-grid article.wide span {
  color: var(--lime);
}

.service-block-grid article.wide p {
  color: rgba(255, 255, 255, 0.74);
}

.offer-flow {
  display: grid;
  max-width: 1180px;
  margin: 0 auto 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.offer-flow article {
  min-height: 150px;
  padding: 22px;
  background: var(--white);
}

.offer-flow span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 950;
}

.offer-flow strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest-2);
  font-size: 1.16rem;
  line-height: 1.2;
}

.offer-flow p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.package-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-ladder {
  display: grid;
  max-width: 1180px;
  margin: 0 auto 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.price-ladder article {
  min-height: 178px;
  padding: 24px;
  background: var(--forest-2);
}

.price-ladder span {
  display: block;
  margin-bottom: 32px;
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-ladder strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
  text-wrap: balance;
}

.price-ladder p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.package-card,
.offer-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 14px 50px rgba(16, 21, 20, 0.07);
}

.offer-card.tech-card {
  background:
    linear-gradient(145deg, rgba(47, 119, 143, 0.1), rgba(217, 255, 103, 0.06)),
    var(--white);
}

.package-card.featured,
.offer-card.featured {
  color: var(--white);
  background: var(--forest-2);
  box-shadow: var(--shadow);
}

.offer-card.premium {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(217, 255, 103, 0.1), rgba(244, 199, 189, 0.13)),
    #111a18;
}

.package-card.featured p,
.package-card.featured li,
.package-card.featured h4,
.offer-card.featured p,
.offer-card.featured li,
.offer-card.featured h4,
.offer-card.premium p,
.offer-card.premium li,
.offer-card.premium h4 {
  color: rgba(255, 255, 255, 0.74);
}

.package-card.featured .price,
.package-card.featured .package-label,
.offer-card.featured .price,
.offer-card.featured .package-label,
.offer-card.premium .price,
.offer-card.premium .package-label {
  color: var(--lime);
}

.price {
  margin: 22px 0 26px;
  color: var(--forest-2);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 950;
  line-height: 1;
}

.package-intro {
  margin-bottom: 18px;
  color: var(--muted);
}

.featured-subscription .package-intro,
.package-card.featured .package-intro,
.offer-card.featured .package-intro,
.offer-card.premium .package-intro {
  color: rgba(255, 255, 255, 0.72);
}

.price-overview {
  background: var(--white);
}

.price-rows {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.price-rows article {
  min-height: 180px;
  padding: 24px;
  background: var(--paper);
}

.price-rows span {
  display: block;
  margin-bottom: 36px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-rows strong {
  display: block;
  margin-bottom: 12px;
  color: var(--forest-2);
  font-size: 1.2rem;
  line-height: 1.2;
}

.price-rows p {
  margin-bottom: 0;
  color: var(--forest-2);
  font-weight: 950;
}

.service-process {
  background:
    linear-gradient(135deg, rgba(216, 239, 131, 0.13), rgba(47, 119, 143, 0.08)),
    var(--paper);
}

.service-process .section-heading {
  margin-bottom: clamp(30px, 5vw, 52px);
}

.service-process .compact-process {
  max-width: 1180px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
  background: transparent;
}

.compact-process li {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(16, 21, 20, 0.1);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(9, 36, 31, 0.08);
}

.compact-process span {
  display: inline-flex;
  width: fit-content;
  min-width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(16, 21, 20, 0.08);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--forest-2);
  background: var(--lime);
  line-height: 1;
}

.compact-process h3 {
  margin-bottom: 12px;
  color: var(--forest-2);
}

.compact-process p {
  margin-bottom: 0;
  color: var(--muted);
}

.compact-compare article {
  min-height: 280px;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--forest-2);
  cursor: pointer;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 950;
  line-height: 1.22;
  list-style: none;
  text-wrap: balance;
  transition:
    color 180ms ease,
    padding-left 180ms ease;
}

.faq-list summary:hover {
  color: var(--red);
  padding-left: 8px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-2);
  background: var(--lime);
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.faq-list details[open] summary::after {
  color: var(--white);
  background: var(--forest-2);
  transform: rotate(135deg);
}

.faq-list p {
  max-width: 760px;
  margin: -6px 0 28px;
  animation: faqAnswerIn 240ms ease both;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

li + li {
  margin-top: 9px;
}

li::before {
  position: absolute;
  top: 0.63em;
  left: 2px;
  width: 8px;
  height: 13px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  color: var(--red);
  content: "";
  transform: rotate(40deg);
}

.process-grid li::before {
  display: none;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(216, 239, 131, 0.08), rgba(56, 109, 134, 0.2)),
    var(--forest-2);
}

.contact-page {
  min-height: calc(100vh - 95px);
  padding-top: clamp(142px, 16vw, 210px);
}

.final-cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .section-kicker {
  color: var(--lime);
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form[hidden],
.form-success-card[hidden] {
  display: none;
}

.form-success-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 46px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(217, 255, 103, 0.13), rgba(47, 119, 143, 0.18)),
    #11231f;
  box-shadow: var(--shadow);
  animation: success-in 420ms ease both;
}

.form-success-card > span {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--lime);
}

.form-success-card > span::before {
  width: 18px;
  height: 31px;
  border-right: 5px solid var(--forest-2);
  border-bottom: 5px solid var(--forest-2);
  content: "";
  transform: rotate(40deg) translate(-2px, -2px);
}

.form-success-card h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.form-success-card p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.74);
}

@keyframes success-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
  overflow-wrap: anywhere;
  word-break: normal;
}

.legal-page a {
  text-decoration: underline;
}

fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

legend {
  margin-bottom: 10px;
  font-weight: 900;
}

.estimate-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.estimate-box legend,
.estimate-result,
.estimate-note {
  grid-column: 1 / -1;
}

.check-option {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fbfaf6;
  font-weight: 800;
  cursor: pointer;
}

.check-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
}

.estimate-result {
  display: grid;
  gap: 4px;
  margin: 6px 0 0;
  border: 2px solid var(--amber);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--forest-2);
  background: #fff7da;
  line-height: 1.35;
  box-shadow: 0 10px 26px rgba(9, 36, 31, 0.08);
}

.estimate-result span {
  color: #7b5a13;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.estimate-result strong {
  color: var(--forest-2);
  font-size: 1.05rem;
  line-height: 1.3;
}

.estimate-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfaf6;
  font-size: 0.92rem;
  line-height: 1.5;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--forest);
}

.privacy-check a {
  color: var(--forest);
  font-weight: 900;
  text-decoration: underline;
}

.form-trust {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.form-trust span {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 800;
}

.form-trust span::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 18px;
}

.mail-link {
  display: inline-flex;
  color: var(--lime);
  font-size: clamp(1.25rem, 3vw, 2.2rem);
  font-weight: 950;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8c0b3;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf6;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(216, 239, 131, 0.65);
  border-color: var(--forest);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--forest);
  font-weight: 800;
}

.privacy-note,
.price-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.privacy-note a,
.price-note a {
  color: var(--forest);
  font-weight: 900;
  text-decoration: underline;
}

.price-note {
  max-width: 940px;
  margin: 24px auto 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #080f0d;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px 12px 12px 4px;
  box-shadow: 0 10px 26px rgba(217, 255, 103, 0.16);
}

.site-footer span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
}

.site-footer a {
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: var(--lime);
}

.split-cta h2 {
  color: var(--forest-2);
}

.split-cta p {
  color: rgba(13, 40, 35, 0.78);
  font-size: 1.08rem;
}

.dark-text {
  color: var(--forest-2);
}

.reference-section {
  background: var(--paper);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.reference-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(216, 239, 131, 0.2), rgba(56, 109, 134, 0.1)),
    var(--white);
  box-shadow: 0 18px 60px rgba(16, 21, 20, 0.09);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.reference-card:hover {
  border-color: rgba(22, 72, 60, 0.28);
  box-shadow: 0 26px 74px rgba(16, 21, 20, 0.13);
  transform: translateY(-4px);
}

.reference-card.dark {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(241, 184, 75, 0.13), rgba(56, 109, 134, 0.18)),
    var(--forest-2);
}

.reference-card.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.reference-card.green {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(217, 255, 103, 0.16), rgba(47, 119, 143, 0.18)),
    var(--forest);
}

.reference-card.green p {
  color: rgba(255, 255, 255, 0.76);
}

.reference-card.green .work-type,
.reference-card.green .text-link {
  color: var(--lime);
}

.reference-more {
  max-width: 980px;
  margin: clamp(42px, 6vw, 76px) auto 0;
  border-top: 1px solid var(--line);
  padding-top: clamp(34px, 5vw, 58px);
}

.reference-more h2 {
  max-width: 820px;
}

.reference-more p:last-child {
  max-width: 680px;
  margin-bottom: 0;
}

.reference-spectrum {
  display: grid;
  max-width: 1180px;
  margin: clamp(30px, 5vw, 58px) auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.reference-spectrum article {
  min-height: 138px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 34px rgba(16, 21, 20, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.reference-spectrum article:hover {
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 21, 20, 0.1);
  transform: translateY(-3px);
}

.reference-spectrum span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.reference-spectrum strong {
  display: block;
  color: var(--forest-2);
  font-size: 1.08rem;
  line-height: 1.25;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border-bottom: 2px solid currentColor;
  color: var(--red);
  font-weight: 950;
}

.reference-card.dark .text-link {
  color: var(--lime);
}

.region-hero {
  background:
    linear-gradient(135deg, rgba(217, 255, 103, 0.2), rgba(47, 119, 143, 0.12)),
    var(--paper);
}

.region-areas {
  background: var(--white);
}

.large-tags {
  max-width: 1060px;
  justify-content: center;
  margin: 0 auto;
}

.large-tags span {
  padding: 12px 16px;
  font-size: 0.98rem;
}

.region-grid-section {
  background: var(--mint);
}

.region-card-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.region-card-grid article {
  border: 1px solid rgba(16, 21, 20, 0.1);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 14px 46px rgba(9, 36, 31, 0.07);
}

.region-card-grid p {
  margin-bottom: 0;
}

.leistungen-hero {
  display: grid;
  min-height: 70vh;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(34px, 7vw, 98px);
  align-items: end;
  padding-top: clamp(142px, 16vw, 210px);
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 255, 103, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(241, 234, 223, 0.98)),
    var(--paper);
}

.leistungen-hero h1 {
  max-width: 1060px;
  color: var(--forest-2);
}

.leistungen-hero p:not(.section-kicker) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.15rem;
}

.leistungen-hero .section-kicker {
  color: var(--red);
}

.leistungen-hero .button.ghost {
  border-color: rgba(16, 21, 20, 0.18);
  color: var(--forest-2);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 14px 36px rgba(9, 36, 31, 0.08);
}

.leistungen-hero-facts {
  border: 1px solid rgba(16, 21, 20, 0.1);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 80px rgba(9, 36, 31, 0.1);
  backdrop-filter: blur(18px);
}

.leistungen-hero-facts span,
.leistungen-hero-facts strong {
  display: block;
}

.leistungen-hero-facts span {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.leistungen-hero-facts strong {
  margin: 22px 0 18px;
  color: var(--forest-2);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.9;
}

.leistungen-hero-facts p {
  margin-bottom: 0;
}

.offer-studio {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(217, 255, 103, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 242, 232, 0.98)),
    var(--paper);
}

.offer-studio-grid {
  display: grid;
  max-width: 1220px;
  margin: 0 auto;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.offer-control {
  position: sticky;
  top: 104px;
}

.offer-control h2 {
  max-width: 420px;
  color: var(--forest-2);
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
}

.offer-control p:not(.section-kicker) {
  color: var(--muted);
}

.offer-control .section-kicker {
  color: var(--red);
}

.offer-control-note {
  margin-top: 24px;
  border: 1px solid rgba(16, 21, 20, 0.1);
  border-left: 4px solid var(--lime);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--forest-2);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 46px rgba(9, 36, 31, 0.08);
  font-weight: 800;
}

.offer-studio .audience-toggle {
  width: 100%;
  margin-top: 26px;
  border: 1px solid rgba(16, 21, 20, 0.11);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 56px rgba(9, 36, 31, 0.11);
}

.offer-studio .audience-toggle::before {
  background: var(--lime);
  box-shadow: 0 12px 28px rgba(157, 190, 43, 0.22);
}

.offer-studio .audience-toggle button {
  color: rgba(9, 36, 31, 0.58);
}

.offer-studio .audience-toggle button[aria-selected="true"] {
  color: var(--forest-2);
}

html[data-initial-audience="unternehmen"]
  .offer-studio:not([data-active-audience])
  [data-audience-button="verein"] {
  color: rgba(9, 36, 31, 0.58);
}

html[data-initial-audience="unternehmen"]
  .offer-studio:not([data-active-audience])
  [data-audience-button="unternehmen"] {
  color: var(--forest-2);
}

.offer-stage {
  position: relative;
  perspective: 1200px;
}

.offer-panel {
  border: 1px solid rgba(16, 21, 20, 0.1);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 242, 232, 0.98)),
    var(--paper);
  box-shadow: 0 28px 90px rgba(9, 36, 31, 0.12);
  animation: offerPanelIn 380ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.offer-panel.is-entering {
  animation: offerPanelIn 430ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.offer-panel.is-leaving {
  animation: offerPanelOut 220ms ease both;
}

@keyframes offerPanelIn {
  from {
    opacity: 0;
    transform: translateY(22px) rotateX(-4deg) scale(0.985);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes offerPanelOut {
  from {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: translateY(-14px) rotateX(3deg) scale(0.985);
    filter: blur(6px);
  }
}

.offer-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.52fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(24px, 4vw, 38px);
}

.offer-panel-head span,
.offer-lines span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-panel-head h3 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 0.94;
}

.offer-panel-head p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.offer-lines {
  margin-top: clamp(22px, 4vw, 36px);
  border-top: 1px solid var(--line);
}

.offer-lines article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.offer-lines h4 {
  margin: 8px 0 8px;
  color: var(--forest-2);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.12;
  text-transform: none;
}

.offer-lines p {
  max-width: 620px;
  margin-bottom: 0;
}

.offer-lines article > strong {
  color: var(--forest-2);
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  line-height: 1.05;
  text-align: right;
  white-space: nowrap;
}

.extension-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.extension-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(16, 21, 20, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.extension-grid article:hover {
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 21, 20, 0.1);
  transform: translateY(-3px);
}

.extension-grid span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.extension-grid h4 {
  margin: 20px 0 10px;
  color: var(--forest-2);
  font-size: 1.05rem;
  line-height: 1.12;
  text-transform: none;
}

.extension-grid p {
  margin-bottom: 18px;
  font-size: 0.94rem;
  line-height: 1.55;
}

.extension-grid strong {
  color: var(--forest-2);
  font-weight: 950;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 18px 18px;
    color: var(--ink);
    background: rgba(247, 244, 238, 0.98);
    box-shadow: 0 18px 34px rgba(16, 21, 20, 0.14);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-radius: 8px;
    padding: 14px;
  }

  .hero-grid,
	  .about,
	  .final-cta,
	  .service-hero,
	  .leistungen-hero,
	  .offer-studio-grid,
	  .offer-panel-head,
	  .pricing-intro,
	  .audience-story,
	  .local-focus,
  .region-intro {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .work-grid,
  .package-grid,
  .trust-strip,
	  .price-ladder,
	  .pricing-cards,
	  .extension-grid,
	  .service-block-grid,
	  .offer-grid,
  .offer-flow,
  .price-rows,
  .capability-grid,
  .home-service-grid,
  .region-card-grid,
  .seo-grid,
  .subscription-grid,
  .subscription-options,
  .small-team-grid,
  .team-grid,
  .team-grid.compact,
  .compare-grid,
  .reference-grid,
  .reference-spectrum,
  .split-cta {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: 300px;
  }

  .work-card,
  .work-card.large {
    min-height: 320px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card.premium {
    grid-template-columns: 1fr;
  }

  .audience-toggle {
    width: 100%;
  }

	  .service-block-grid article.wide {
	    grid-column: auto;
	  }

	  .offer-control {
	    position: static;
	  }

	  .offer-control h2 {
	    max-width: 820px;
	  }

  .service-process .compact-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: 860px;
  }

  .hero-grid {
    padding: 120px 18px 40px;
  }

	  .service-hero {
	    min-height: auto;
	    padding-top: 120px;
	  }

	  .leistungen-hero {
	    min-height: auto;
	    padding-top: 120px;
	  }

	  .service-hero-card span {
	    margin-bottom: 34px;
	  }

	  .leistungen-hero-facts strong {
	    font-size: clamp(3rem, 18vw, 4.8rem);
	  }

  h1 {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-process .compact-process {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-rows {
    grid-template-columns: 1fr;
  }

  .price-rows article,
  .offer-flow article,
  .price-ladder article {
    min-height: auto;
  }

	  .pricing-card,
	  .offer-panel,
	  .service-block-grid article {
	    min-height: auto;
	  }

	  .offer-lines article {
	    grid-template-columns: 1fr;
	    gap: 10px;
	  }

	  .offer-lines article > strong {
	    text-align: left;
	    white-space: normal;
	  }

	  .offer-panel-head h3 {
	    font-size: clamp(1.9rem, 11vw, 3.3rem);
	  }

  .faq-list summary {
    align-items: flex-start;
    gap: 14px;
    padding: 22px 0;
    font-size: 1.05rem;
  }

  .faq-list summary::after {
    width: 30px;
    height: 30px;
    font-size: 1.15rem;
  }

  .estimate-box {
    grid-template-columns: 1fr;
  }

  .role-list {
    grid-template-columns: 1fr;
  }

  .process-grid li {
    min-height: auto;
  }

  .process-grid span {
    margin-bottom: 34px;
  }

  .compact-process li {
    min-height: auto;
  }

  .compact-process span {
    margin-bottom: 22px;
  }

  .site-footer {
    display: grid;
  }
}
