/* Website-Betreuung Peine – Landingpage (Design-Tokens aus index.css) */

/* Minimale Nav: Logo + CTA, kein Seitenmenü */
.lp-nav-minimal .nav-cta,
.lp-nav-minimal .nav-cta-mobile {
  margin-left: auto;
}

.lp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.875rem var(--page-pad);
  background: var(--green);
  border-top: 1px solid var(--border-on-dark-soft);
  box-shadow: 0 -8px 24px var(--shadow-soft);
}

.lp-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--cream);
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md-plus);
  text-decoration: none;
}

.lp-sticky-cta a:hover {
  background: var(--white);
}

/* LP-Hero: gleiches Bild wie Startseite, kompaktere Höhe und Schrift */
.page-peine .hero {
  min-height: auto;
  min-height: clamp(420px, 62vh, 560px);
  grid-template-rows: 1fr;
  background-image: url('../img/hero-office.webp');
  background-position: left center;
  background-size: cover;
}

.page-peine .hero-inner {
  padding: 5.5rem var(--page-pad) 3.5rem;
}

.page-peine .hero-inner--solo {
  max-width: 680px;
}

.page-peine .hero h1 {
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}

.page-peine .hero-sub {
  font-size: 0.975rem;
  line-height: 1.65;
  max-width: 38rem;
}

.page-peine .hero-label {
  font-size: 0.7rem;
  margin-bottom: 1rem;
}

.page-peine .hero-trust-note {
  font-size: 0.78rem;
}

.peine-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
}

.peine-city {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-text);
  background: var(--surface-mint);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}

.criterion-text strong {
  color: var(--green);
  font-weight: 600;
}

.page-peine .peine-angebot .section-text {
  color: var(--text-on-dark);
  max-width: 680px;
}

.page-peine .peine-angebot .ablauf-note {
  color: var(--text-on-dark-muted);
}

.page-peine .peine-angebot .ablauf-note strong {
  color: var(--cream);
}

.page-peine .peine-angebot .ablauf-cta a {
  color: var(--accent-on-dark);
}

.page-peine .peine-angebot .ablauf-cta a:hover,
.page-peine .peine-angebot .ablauf-cta a:focus-visible {
  color: var(--link-on-dark-hover);
}

.page-peine .peine-angebot .ablauf-arrow {
  color: var(--accent-on-dark);
}

.page-peine .peine-fuer-wen-intro {
  max-width: 720px;
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  body.page-peine {
    padding-bottom: 72px;
  }

  .lp-nav-minimal > .nav-cta {
    display: none;
  }

  .lp-sticky-cta {
    display: block;
  }
}

@media (max-width: 600px) {
  .page-peine .hero {
    background-image: url('../img/hero-office-mobile.webp');
    min-height: clamp(460px, 68vh, 580px);
  }

  .page-peine .hero-inner {
    padding-top: 4.5rem;
    padding-bottom: 2.75rem;
  }

  .page-peine .hero h1 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .page-peine .hero-sub {
    font-size: 0.925rem;
  }
}
