@charset "UTF-8";
/* lato-300 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/lato-v25-latin_latin-ext-300.woff2") format("woff2");
}
/* lato-regular - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lato-v25-latin_latin-ext-regular.woff2") format("woff2");
}
/* lato-700 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/lato-v25-latin_latin-ext-700.woff2") format("woff2");
}
/* playfair-display-regular - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/playfair-display-v40-latin_latin-ext-regular.woff2") format("woff2");
}
/* playfair-display-italic - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/playfair-display-v40-latin_latin-ext-italic.woff2") format("woff2");
}
/* playfair-display-600 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/playfair-display-v40-latin_latin-ext-600.woff2") format("woff2");
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sage: #3d6b58;
  --sage-dark: #2a4d3e;
  --sage-light: #8aaa96;
  --sage-bg: #eef5f1;
  --navy: #1a2e22;
  --text: #1a2e22;
  --text-mid: #365040;
  --text-muted: #4a6257;
  --white: #ffffff;
  --warm: #c8a882;
  --warm-bg: #faf6f0;
  --rule: rgba(42, 77, 62, 0.2);
  --focus: #005fcc;
  --error: #c0392b;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #3d6b58;
  font-family: "Lato", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2e22;
  min-width: 388px;
}

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

a {
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: "Lato", system-ui, sans-serif;
  cursor: pointer;
}

.t-eyebrow, .legal-eyebrow, .prozess-section__eyebrow, .halo-section__eyebrow, .uebergang-section__eyebrow, .coaching-hero__eyebrow, .ansatz-section__eyebrow, .section-header__eyebrow, .beratung-hero__eyebrow, .home-faq__eyebrow, .home-focus__eyebrow, .home-stats__label, .home-intro__eyebrow, .modal-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
}

.t-section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a2e22;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.t-body, .home-about__text, .home-focus__text, .home-intro__text {
  font-size: 15px;
  color: #365040;
  line-height: 1.85;
}

.t-small, .home-cta__text {
  font-size: 13px;
  color: #4a6257;
  line-height: 1.7;
}

.page-outer {
  background: #3d6b58;
  padding: 1.5rem 1rem;
  min-height: 100vh;
}

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.15);
  min-height: calc(100vh - 3rem);
  display: flex;
  flex-flow: column;
}

.content-wrap {
  margin: 0 auto;
  padding: 4rem 2.5rem 5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: #005fcc;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 3px;
  border-radius: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.site-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.85rem 2.5rem;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-left {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.nav-left span {
  color: #8aaa96;
  font-size: 11px;
}

.nav-center {
  text-align: center;
}
.nav-center a {
  text-decoration: none;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 14px;
  color: #365040;
  text-decoration: none;
  letter-spacing: 0.03em;
  padding: 0.25rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: #2a4d3e;
}
.nav-link[aria-current=page] {
  color: #2a4d3e;
  font-weight: 700;
  border-bottom: 2px solid #3d6b58;
}

.nav-logo {
  font-size: 20px;
  letter-spacing: 0.32em;
  font-weight: 700;
  color: #2a4d3e;
  line-height: 1;
}

.nav-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: #4a6257;
  margin-top: 1px;
}

.nav-tagline {
  font-size: 7.5px;
  letter-spacing: 0.1em;
  color: #8aaa96;
  margin-top: 2px;
  text-transform: uppercase;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 10px;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.nav-burger:hover {
  background: #eef5f1;
}
.nav-burger[aria-expanded=true] .nav-burger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded=true] .nav-burger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger[aria-expanded=true] .nav-burger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-burger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #365040;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-mobile-menu {
  background: #ffffff;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.nav-mobile-menu[hidden] {
  display: none;
}

.nav-mobile-link {
  font-size: 15px;
  color: #365040;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.03em;
}
.nav-mobile-link:hover {
  background: #eef5f1;
  color: #2a4d3e;
}
.nav-mobile-link[aria-current=page] {
  color: #2a4d3e;
  font-weight: 700;
  border-left: 3px solid #3d6b58;
  padding-left: calc(1.5rem - 3px);
}
.nav-mobile-link--cta {
  color: #3d6b58;
  font-weight: 700;
  border-top: 1px solid rgba(42, 77, 62, 0.2);
  margin-top: 0.25rem;
  padding-top: 1rem;
}

.site-nav--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(42, 77, 62, 0.2);
}

.breadcrumb {
  padding: 0.75rem 2.5rem;
  background: #eef5f1;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
  font-size: 12px;
  color: #4a6257;
}
.breadcrumb a {
  color: #3d6b58;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  margin: 0 0.5rem;
  color: #8aaa96;
}

.btn-white, .btn-outline, .btn-ghost, .btn-primary {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  min-height: 44px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #3d6b58;
  color: #ffffff;
  border-color: #3d6b58;
}
.btn-primary:hover {
  background: #2a4d3e;
  border-color: #2a4d3e;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #3d6b58;
  border-color: #3d6b58;
}
.btn-outline:hover {
  background: #3d6b58;
  color: #ffffff;
}

.btn-white {
  background: #ffffff;
  color: #2a4d3e;
  border-color: #ffffff;
  white-space: nowrap;
}
.btn-white:hover {
  background: transparent;
  color: #ffffff;
}

.btn-nav {
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 9px 20px;
  min-height: 44px;
  background: #3d6b58;
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.btn-nav:hover {
  background: #2a4d3e;
}

.site-footer {
  background: #1a2e22;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}
.footer-left p + p {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0.3rem 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
  letter-spacing: 0.06em;
  background: none;
  border: none;
}
.footer-link:hover {
  color: #ffffff;
}
.footer-link[aria-current=page] {
  color: rgba(255, 255, 255, 0.85);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 34, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25), 0 0 0 0.5px rgba(42, 77, 62, 0.1);
  animation: modal-in 0.22s ease-out;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  background: #eef5f1;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a6257;
  transition: background 0.2s ease, color 0.2s ease;
}
.modal-close:hover {
  background: rgba(42, 77, 62, 0.2);
  color: #1a2e22;
}

.modal-eyebrow {
  color: #3d6b58;
  margin-bottom: 0.4rem;
}

.modal-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.modal-subtitle {
  font-size: 13px;
  color: #4a6257;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.modal-header {
  padding-right: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: #1a2e22;
}

.form-hint {
  font-size: 11px;
  color: #4a6257;
  margin-top: -0.2rem;
}

.form-req {
  color: #c0392b;
}

.form-input {
  font-size: 14px;
  font-family: "Lato", system-ui, sans-serif;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(42, 77, 62, 0.2);
  border-radius: 6px;
  color: #1a2e22;
  background: #ffffff;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus {
  outline: none;
  border-color: #3d6b58;
  box-shadow: 0 0 0 3px rgba(61, 107, 88, 0.12);
}
.form-input.is-error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.field-error {
  font-size: 11px;
  color: #c0392b;
  min-height: 1rem;
}

.form-privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.form-privacy input[type=checkbox] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: #3d6b58;
}
.form-privacy label {
  font-size: 12px;
  color: #4a6257;
  line-height: 1.55;
}
.form-privacy label a {
  color: #3d6b58;
  text-decoration: underline;
}

.form-error-general {
  font-size: 13px;
  color: #c0392b;
  background: #fdf2f0;
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.modal-success-icon {
  font-size: 40px;
  color: #3d6b58;
  text-align: center;
  margin-bottom: 1rem;
}

.modal-success-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  color: #1a2e22;
  text-align: center;
  margin-bottom: 0.6rem;
}

.modal-success-text {
  font-size: 14px;
  color: #365040;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.home-hero {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.home-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
@media (max-width: 479px) {
  .home-hero__img {
    object-fit: contain;
    scale: 3;
    object-position: -30px 30%;
  }
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 45, 30, 0.78) 0%, rgba(20, 45, 30, 0.42) 50%, transparent 100%);
}
.home-hero__content {
  position: absolute;
  inset: 0;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-hero__headline {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.28;
  max-width: 300px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.home-hero-quote {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  padding: 0.9rem 1rem;
  max-width: 260px;
  border-left: 3px solid #3d6b58;
}
.home-hero-quote__text {
  font-size: 12px;
  font-style: italic;
  color: #1a2e22;
  line-height: 1.6;
  font-family: "Playfair Display", Georgia, serif;
}
.home-hero-quote__by {
  font-size: 11px;
  color: #4a6257;
  margin-top: 0.4rem;
  text-align: right;
  letter-spacing: 0.06em;
  font-style: normal;
}

.scroll-hint {
  display: flex;
  justify-content: center;
  padding: 0.75rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
}
.scroll-hint__dot {
  width: 18px;
  height: 28px;
  border: 2px solid #4a6257;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-hint__dot::after {
  content: "";
  width: 3px;
  height: 6px;
  background: #4a6257;
  border-radius: 2px;
}

.home-intro {
  padding: 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
}
.home-intro__eyebrow {
  color: #3d6b58;
  margin-bottom: 0.6rem;
}
.home-intro__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.home-stats {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.3rem;
}
.home-stats__label {
  color: #3d6b58;
  margin-bottom: 0.25rem;
  font-size: 9px;
}
.home-stats__row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.home-stats__num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  color: #3d6b58;
  line-height: 1;
}
.home-stats__lbl {
  font-size: 13px;
  color: #4a6257;
}
.home-stats__divider {
  height: 1px;
  background: rgba(42, 77, 62, 0.2);
  margin: 0.25rem 0;
}

.home-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
}

.home-pillar {
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(42, 77, 62, 0.2);
}
.home-pillar:last-child {
  border-right: none;
}
.home-pillar__badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #eef5f1;
  color: #2a4d3e;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 0.9rem;
  font-weight: 700;
}
.home-pillar__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 0.5rem;
}
.home-pillar__desc {
  font-size: 12px;
  color: #4a6257;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.home-pillar__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.home-pl-item {
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.home-pl-item__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3d6b58;
  margin-top: 12px;
  flex-shrink: 0;
}
.home-pl-item__title {
  font-size: 12px;
  font-weight: 700;
  color: #1a2e22;
}
.home-pl-item__sub {
  font-size: 11px;
  color: #4a6257;
  line-height: 1.55;
  margin-top: 1px;
}

.home-focus {
  padding: 2.5rem 2.5rem;
  background: #eef5f1;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
}
.home-focus__eyebrow {
  color: #3d6b58;
  margin-bottom: 0.6rem;
  font-size: 9px;
}
.home-focus__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.home-focus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.25rem;
}
.home-focus__text {
  font-size: 13px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}
.checklist__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #365040;
}
.checklist__mark {
  color: #3d6b58;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.3;
  font-weight: 700;
}

.compare-box {
  background: #ffffff;
  border: 2px solid rgba(42, 77, 62, 0.2);
  padding: 1.25rem;
  border-radius: 4px;
}
.compare-box__col {
  margin-bottom: 1rem;
}
.compare-box__head {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2a4d3e;
  font-weight: 700;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
}
.compare-box__item {
  font-size: 13px;
  color: #365040;
  padding: 0.3rem 0;
  border-bottom: 1px dotted rgba(42, 77, 62, 0.2);
  line-height: 1.55;
}
.compare-box__item:last-child {
  border-bottom: none;
}
.compare-box__note {
  font-size: 12px;
  color: #4a6257;
  font-style: italic;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.home-about {
  padding: 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: start;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
}
.home-about__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #3d6b58;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  color: #ffffff;
  flex-shrink: 0;
  border: 3px solid #2a4d3e;
}
.home-about__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a2e22;
}
.home-about__role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3d6b58;
  margin-bottom: 0.85rem;
  margin-top: 3px;
}
.home-about__text {
  font-size: 14px;
}

.haltung-block {
  margin-top: 1rem;
  background: #eef5f1;
  border-left: 3px solid #3d6b58;
  padding: 1rem 1.1rem;
}
.haltung-block__title {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2a4d3e;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.haltung-block__text {
  font-size: 14px;
  color: #365040;
  line-height: 1.75;
}

.quote-band {
  background: #3d6b58;
  padding: 2.5rem 2.5rem;
  text-align: center;
}
.quote-band__text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: #ffffff;
  max-width: 520px;
  margin: 0 auto 0.75rem;
  line-height: 1.65;
}
.quote-band__by {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.home-faq {
  padding: 2.5rem 2.5rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
}
.home-faq__eyebrow {
  color: #3d6b58;
  margin-bottom: 0.6rem;
  font-size: 9px;
}
.home-faq__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

details {
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
  padding: 0.9rem 0;
}
details:last-child {
  border-bottom: none;
}

summary {
  font-size: 15px;
  font-weight: 700;
  color: #1a2e22;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  min-height: 44px;
  gap: 1rem;
}
summary::-webkit-details-marker {
  display: none;
}

.summary-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eef5f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #2a4d3e;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

details[open] .summary-icon {
  background: #3d6b58;
  color: #ffffff;
}

.faq-answer {
  font-size: 14px;
  color: #365040;
  line-height: 1.85;
  margin-top: 0.65rem;
  padding-right: 2rem;
}

.home-cta {
  padding: 2.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
}
.home-cta__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 0.5rem;
}
.home-cta__disclaimer {
  font-size: 12px;
  color: #4a6257;
  line-height: 1.65;
  margin-top: 0.75rem;
  font-style: italic;
}

.beratung-hero {
  background: #1a2e22;
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.beratung-hero__eyebrow {
  color: #8aaa96;
  margin-bottom: 1rem;
}
.beratung-hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.12;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.beratung-hero__title em {
  font-style: italic;
  color: #a8cfc9;
}
.beratung-hero__text {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  margin-bottom: 2rem;
}
.beratung-hero__cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(168, 207, 201, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid rgba(168, 207, 201, 0.2);
  box-shadow: inset 0 0 0 0.5px rgba(168, 207, 201, 0.12), 0 8px 32px rgba(0, 0, 0, 0.25);
}
.hero-stats__item {
  padding: 1.5rem 2rem;
  border-bottom: 0.5px solid rgba(168, 207, 201, 0.1);
}
.hero-stats__item:last-child {
  border-bottom: none;
}
.hero-stats__num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  color: #a8cfc9;
  line-height: 1;
}
.hero-stats__lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

.services-section {
  padding: 4rem 2.5rem;
  background: #ffffff;
}

.section-header {
  margin-bottom: 3rem;
}
.section-header__eyebrow {
  color: #3d6b58;
  margin-bottom: 0.75rem;
  font-size: 11px;
}
.section-header__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.section-header__intro {
  font-size: 15px;
  color: #365040;
  line-height: 1.8;
  max-width: 680px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(42, 77, 62, 0.2);
}

.service-card {
  background: #ffffff;
  padding: 2.5rem;
  transition: background 0.2s ease;
}
.service-card:hover {
  background: #eef5f1;
}
.service-card__num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: #8aaa96;
  line-height: 1;
  margin-bottom: 0.75rem;
  user-select: none;
  opacity: 0.55;
}
.service-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 0.75rem;
}
.service-card__text {
  font-size: 14px;
  color: #365040;
  line-height: 1.8;
}
.service-card__text + .service-card__text {
  margin-top: 0.75rem;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}

.service-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: rgba(42, 77, 62, 0.08);
  color: #2a4d3e;
  border-radius: 3px;
  font-weight: 700;
  border: 1px solid rgba(42, 77, 62, 0.2);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.service-card:hover .service-tag {
  background: rgba(42, 77, 62, 0.15);
  border-color: rgba(42, 77, 62, 0.35);
}

.ansatz-section {
  background: #1a2e22;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ansatz-section__eyebrow {
  color: #8aaa96;
  margin-bottom: 0.75rem;
  font-size: 11px;
}
.ansatz-section__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.ansatz-section__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.ansatz-section__quote {
  border-left: 2px solid #8aaa96;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
}
.ansatz-section__quote-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}
.ansatz-section__quote-by {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8aaa96;
  margin-top: 0.5rem;
}
.ansatz-section__steps-label {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ansatz-steps {
  display: flex;
  flex-direction: column;
}
.ansatz-steps__step {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: flex-start;
}
.ansatz-steps__step:last-child {
  border-bottom: none;
}
.ansatz-steps__num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  color: #8aaa96;
  opacity: 0.6;
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}
.ansatz-steps__title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}
.ansatz-steps__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.branchen-section {
  padding: 4rem 2.5rem;
  background: #eef5f1;
}
.branchen-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.branche-card {
  background: #ffffff;
  padding: 1.5rem;
  border-left: 3px solid #3d6b58;
  transition: transform 0.15s, box-shadow 0.15s;
}
.branche-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.branche-card__icon {
  font-size: 22px;
  margin-bottom: 0.75rem;
  filter: grayscale(100%);
  opacity: 0.5;
}
.branche-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #1a2e22;
  margin-bottom: 0.35rem;
}
.branche-card__text {
  font-size: 12px;
  color: #4a6257;
  line-height: 1.55;
}

.ki-section {
  padding: 4rem 2.5rem;
  background: #ffffff;
  border-top: 1px solid rgba(42, 77, 62, 0.2);
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  align-items: center;
}
.ki-section__badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #1a2e22;
  color: #a8cfc9;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 1rem;
  font-weight: 700;
}
.ki-section__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.ki-section__intro {
  font-size: 15px;
  color: #365040;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.ki-section__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.ki-section__point {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 14px;
  color: #365040;
}
.ki-section__mark {
  color: #3d6b58;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.ki-section__visual {
  background: #1a2e22;
  border-radius: 8px;
  overflow: hidden;
}

.cta-band {
  background: #3d6b58;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-band__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.cta-band__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.coaching-hero {
  background: linear-gradient(135deg, #ede8df 0%, #faf6f0 60%, #f0ede6 100%);
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: center;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
}
.coaching-hero__eyebrow {
  color: #3d6b58;
  margin-bottom: 1rem;
}
.coaching-hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.12;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 1.5rem;
}
.coaching-hero__title em {
  font-style: italic;
  color: #3d6b58;
}
.coaching-hero__text {
  font-size: 15px;
  line-height: 1.85;
  color: #365040;
  margin-bottom: 2rem;
}
.coaching-hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.fragen-cards {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.frage-card {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(200, 168, 130, 0.35);
  box-shadow: 0 2px 12px rgba(61, 107, 88, 0.06), inset 0 0.5px 0 rgba(255, 255, 255, 0.7);
}
.frage-card__label {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8a882;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.frage-card__text {
  font-size: 12px;
  color: #365040;
  line-height: 1.55;
  font-style: italic;
}

.uebergang-section {
  background: #1a2e22;
  padding: 4.5rem 2.5rem;
}
.uebergang-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.uebergang-section__eyebrow {
  color: #8aaa96;
  margin-bottom: 0.75rem;
  font-size: 11px;
}
.uebergang-section__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.uebergang-section__title em {
  font-style: italic;
  color: #a8cfc9;
}
.uebergang-section__text {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.phase-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1.5rem;
}
.phase-box__title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8aaa96;
  font-weight: 700;
  margin-bottom: 1rem;
}
.phase-box__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.phase-box__item {
  display: flex;
  gap: 0.75rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  align-items: flex-start;
}
.phase-box__mark {
  color: #a8cfc9;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.role-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
  align-items: start;
}

.role-col {
  display: grid;
  grid-template-rows: auto 1fr;
}
.role-col__title {
  display: flex;
  align-items: center;
  min-height: 52px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: 3px;
}
.role-col__title--anwalt {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}
.role-col__title--coaching {
  background: #3d6b58;
  color: #ffffff;
}
.role-col__items {
  list-style: none;
}
.role-col__item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.4rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.5;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.role-col__item--coaching {
  color: rgba(255, 255, 255, 0.85);
}
.role-col__note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.6;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
}

.halo-section {
  padding: 4rem 2.5rem;
  background: #eef5f1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.halo-section__eyebrow {
  color: #3d6b58;
  margin-bottom: 0.75rem;
  font-size: 11px;
}
.halo-section__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.halo-section__text {
  font-size: 15px;
  color: #365040;
  line-height: 1.85;
  margin-bottom: 0.75rem;
}
.halo-section__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.halo-section__point {
  display: flex;
  gap: 0.75rem;
  font-size: 14px;
  color: #365040;
  align-items: flex-start;
}
.halo-section__mark {
  color: #3d6b58;
  font-weight: 700;
  flex-shrink: 0;
}

.halo-visual {
  background: linear-gradient(135deg, #1a2e22, #2a4d3e, #3d6b58);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.halo-visual img {
  border-radius: 8px;
}

.angebote-section {
  padding: 4.5rem 2.5rem;
  background: #ffffff;
}
.angebote-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(42, 77, 62, 0.2);
  margin-top: 2.5rem;
}

.angebot-card {
  background: #ffffff;
  padding: 2.25rem;
  transition: background 0.2s ease;
}
.angebot-card:hover {
  background: #eef5f1;
}
.angebot-card__icon {
  font-size: 28px;
  margin-bottom: 0.75rem;
}
.angebot-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 0.6rem;
}
.angebot-card__text {
  font-size: 14px;
  color: #365040;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.angebot-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.angebot-card__list li {
  font-size: 12px;
  color: #4a6257;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.angebot-card__list li::before {
  content: "·";
  color: #3d6b58;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.abgrenzung-section {
  padding: 3rem 2.5rem;
  background: #faf6f0;
  border-top: 1px solid rgba(200, 168, 130, 0.2);
  border-bottom: 1px solid rgba(200, 168, 130, 0.2);
}
.abgrenzung-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.abgrenzung-col {
  padding: 1.5rem;
  background: #ffffff;
  border-top: 3px solid #c8a882;
}
.abgrenzung-col__title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8a882;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.abgrenzung-col__text {
  font-size: 13px;
  color: #365040;
  line-height: 1.7;
}

.prozess-section {
  padding: 4rem 2.5rem;
  background: #1a2e22;
}
.prozess-section__eyebrow {
  color: #8aaa96;
  margin-bottom: 0.75rem;
  font-size: 11px;
}
.prozess-section__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.25;
}
.prozess-section__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
}

.prozess-step {
  background: #1a2e22;
  padding: 2rem 1.5rem;
}
.prozess-step__num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  color: #8aaa96;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.prozess-step__title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.prozess-step__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.legal-eyebrow {
  color: #3d6b58;
  margin-bottom: 0.75rem;
  font-size: 11px;
}

.legal-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.legal-date {
  font-size: 13px;
  color: #4a6257;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
}

.legal-section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 5rem;
}
.legal-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #1a2e22;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(42, 77, 62, 0.2);
}
.legal-section h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a2e22;
  margin: 1.25rem 0 0.5rem;
}
.legal-section p {
  font-size: 15px;
  color: #365040;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.legal-section a {
  color: #3d6b58;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section a:hover {
  color: #2a4d3e;
}
.legal-section ul, .legal-section ol {
  padding-left: 1.25rem;
  list-style: revert;
  margin-bottom: 0.75rem;
}
.legal-section ul li, .legal-section ol li {
  font-size: 15px;
  color: #365040;
  line-height: 1.8;
  margin-bottom: 0.3rem;
}
.legal-section dl {
  margin-bottom: 0.75rem;
}
.legal-section dl dt {
  font-size: 14px;
  font-weight: 700;
  color: #1a2e22;
  margin-top: 0.75rem;
}
.legal-section dl dd {
  font-size: 15px;
  color: #365040;
  line-height: 1.8;
  padding-left: 1rem;
}

.placeholder {
  background: #fff8e1;
  border-left: 3px solid #f0c040;
  padding: 0.6rem 1rem;
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  color: #7a5c00;
  margin: 0.5rem 0;
  font-style: italic;
  display: block;
}
.placeholder strong {
  font-style: normal;
  font-weight: 700;
}

.info-box {
  background: #eef5f1;
  border-left: 3px solid #3d6b58;
  padding: 1rem 1.25rem;
  border-radius: 0 4px 4px 0;
  margin: 1.5rem 0;
}
.info-box p {
  font-size: 13px;
  color: #365040;
  line-height: 1.7;
  margin: 0;
}
.info-box strong {
  color: #1a2e22;
}

.highlight-box {
  background: #fff8e1;
  border: 1px solid #f0c040;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.highlight-box p {
  font-size: 13px;
  color: #7a5c00;
  line-height: 1.7;
  margin: 0;
}

.toc {
  background: #eef5f1;
  border: 1px solid rgba(42, 77, 62, 0.2);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 3rem;
}
.toc__title {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3d6b58;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.toc__list li a {
  font-size: 14px;
  color: #365040;
  text-decoration: none;
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}
.toc__list li a:hover {
  color: #3d6b58;
}
.toc__num {
  font-size: 11px;
  color: #8aaa96;
  min-width: 1.5rem;
}

@media (max-width: 900px) {
  .site-nav {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    position: relative;
  }
  .nav-left,
  .nav-right {
    display: none;
  }
  .nav-burger {
    display: flex;
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
  }
  .breadcrumb {
    padding: 0.6rem 1.5rem;
  }
  .home-intro,
  .home-cta {
    grid-template-columns: 1fr;
  }
  .home-pillars {
    grid-template-columns: 1fr;
  }
  .home-pillar {
    border-right: none;
    border-bottom: 1px solid rgba(42, 77, 62, 0.2);
  }
  .home-focus__grid,
  .home-about {
    grid-template-columns: 1fr;
  }
  .beratung-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 1.5rem;
  }
  .beratung-hero .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .beratung-hero .hero-stats__item {
    border-right: 0.5px solid rgba(168, 207, 201, 0.1);
  }
  .beratung-hero .hero-stats__item:nth-child(even) {
    border-right: none;
  }
  .services-section,
  .branchen-section,
  .ansatz-section,
  .ki-section {
    padding: 3rem 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .ansatz-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .branchen-section__grid {
    grid-template-columns: 1fr 1fr;
  }
  .ki-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-band {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 1.5rem;
  }
  .coaching-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
  .coaching-hero .fragen-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .uebergang-section {
    padding: 3rem 1.5rem;
  }
  .uebergang-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .role-compare {
    grid-template-columns: 1fr 1fr;
  }
  .halo-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
  .angebote-section {
    padding: 3rem 1.5rem;
  }
  .angebote-section__grid {
    grid-template-columns: 1fr;
  }
  .abgrenzung-section {
    padding: 2.5rem 1.5rem;
  }
  .abgrenzung-section__inner {
    grid-template-columns: 1fr 1fr;
  }
  .abgrenzung-section__inner > *:last-child {
    grid-column: 1/-1;
  }
  .prozess-section {
    padding: 3rem 1.5rem;
  }
  .prozess-section__steps {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem 1.5rem;
  }
  .footer-nav {
    gap: 1rem;
  }
  .content-wrap {
    padding: 2.5rem 1.5rem 3rem;
  }
}
@media (max-width: 480px) {
  .site-nav {
    padding: 0.75rem 1rem;
  }
  .nav-logo {
    font-size: 17px;
    letter-spacing: 0.25em;
  }
  .nav-center::after {
    font-size: 10px;
  }
  .home-hero {
    height: 420px;
  }
  .home-hero__overlay {
    background: linear-gradient(180deg, rgba(20, 45, 30, 0.35) 0%, rgba(20, 45, 30, 0.85) 100%);
  }
  .home-hero__content {
    justify-content: flex-end;
    gap: 1rem;
  }
  .home-intro {
    padding: 2rem 1rem;
  }
  .home-pillar {
    padding: 1.5rem 1rem;
  }
  .home-focus {
    padding: 2rem 1rem;
  }
  .home-focus__grid {
    grid-template-columns: 1fr;
  }
  .home-about {
    padding: 2rem 1rem;
    grid-template-columns: 1fr;
  }
  .home-cta {
    padding: 2.5rem 1rem;
  }
  .home-cta .btn-white {
    width: 100%;
    text-align: center;
  }
  .quote-band {
    padding: 2rem 1rem;
  }
  .home-faq {
    padding: 2rem 1rem;
  }
  .beratung-hero {
    padding: 2.5rem 1rem;
  }
  .beratung-hero .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .beratung-hero .hero-stats__num {
    font-size: 28px;
  }
  .beratung-hero__title {
    font-size: 26px;
  }
  .beratung-hero__cta {
    flex-direction: column;
  }
  .beratung-hero__cta .btn-primary,
  .beratung-hero__cta .btn-ghost {
    width: 100%;
    text-align: center;
  }
  .services-section {
    padding: 2rem 1rem;
  }
  .service-card {
    padding: 1.75rem 1.25rem;
  }
  .ansatz-section {
    padding: 2rem 1rem;
  }
  .branchen-section {
    padding: 2rem 1rem;
  }
  .branchen-section__grid {
    grid-template-columns: 1fr;
  }
  .ki-section {
    padding: 2rem 1rem;
  }
  .cta-band {
    padding: 2.5rem 1rem;
  }
  .cta-band__title {
    font-size: 22px;
  }
  .cta-band .btn-white {
    width: 100%;
    text-align: center;
  }
  .coaching-hero {
    padding: 2.5rem 1rem;
  }
  .coaching-hero__title {
    font-size: 28px;
  }
  .coaching-hero__cta {
    flex-direction: column;
  }
  .coaching-hero__cta .btn-primary,
  .coaching-hero__cta .btn-outline {
    width: 100%;
    text-align: center;
  }
  .coaching-hero .fragen-cards {
    grid-template-columns: 1fr;
  }
  .uebergang-section {
    padding: 2.5rem 1rem;
  }
  .role-compare {
    grid-template-columns: 1fr;
  }
  .halo-section {
    padding: 2.5rem 1rem;
  }
  .angebote-section {
    padding: 2.5rem 1rem;
  }
  .angebot-card {
    padding: 1.75rem 1.25rem;
  }
  .abgrenzung-section {
    padding: 2rem 1rem;
  }
  .abgrenzung-section__inner {
    grid-template-columns: 1fr;
  }
  .abgrenzung-section__inner > *:last-child {
    grid-column: auto;
  }
  .prozess-section {
    padding: 2.5rem 1rem;
  }
  .prozess-section__steps {
    grid-template-columns: 1fr;
  }
  .prozess-step {
    padding: 1.5rem 1.25rem;
  }
  .modal-box {
    padding: 1.75rem 1.25rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding: 1.25rem 1rem;
  }
  .content-wrap {
    padding: 2rem 1rem 3rem;
  }
  .legal-title {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .modal-box {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-hint__dot::after {
    animation: scroll-pulse 1.5s ease infinite;
  }
}
@keyframes scroll-pulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateY(4px);
  }
}
@media print {
  .skip-link,
  .scroll-hint,
  .site-nav button,
  .modal-overlay {
    display: none !important;
  }
  .home-hero__overlay {
    display: none;
  }
  .home-hero__headline {
    color: #1a2e22 !important;
    text-shadow: none;
  }
  body {
    background: #ffffff;
  }
  .page-wrap {
    box-shadow: none;
  }
}
