:root {
  color-scheme: light;
  --black: #0c0d0a;
  --ink: #171512;
  --charcoal: #28241f;
  --smoke: #625d55;
  --line: #ded1bd;
  --paper: #faf4ea;
  --cream: #f0dfc7;
  --porcelain: #fffdf8;
  --accent: #2f7d6d;
  --accent-soft: #9fc8b3;
  --sage: #6f8d7a;
  --sage-soft: #dce8df;
  --petrol: #102f34;
  --petrol-soft: #d9ece7;
  --steel: #d7dbd9;
  --focus: #1f6feb;
  --card-tint: rgba(255, 253, 248, 0.72);
  --card-tint-strong: rgba(255, 253, 248, 0.9);
  --card-tint-solid: rgba(255, 253, 248, 0.94);
  --form-panel-bg: rgba(255, 255, 255, 0.92);
  --heading-accent: var(--petrol);
  --gold: #a97a24;
  --gold-strong: #8a611a;
  --radius: 8px;
  --shadow-soft: 0 24px 80px rgba(22, 20, 18, 0.16);
  --shadow-deep: 0 36px 110px rgba(0, 0, 0, 0.42);
  --danger: #8a1d1d;
  --danger-border: rgba(190, 40, 40, 0.4);
  --danger-bg-soft: rgba(190, 40, 40, 0.08);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Browser-Grundeinstellung fuer <button> ist die OS-Standardschrift, nicht die Seitenschrift
   von body -- ohne diesen Reset sehen Buttons neben Links/Text wie eine andere Schriftart aus.
   font-size/line-height werden bewusst NICHT mituebernommen (font: inherit wuerde das tun),
   damit bestehende groessen-/zeilenhoehen-Angaben auf einzelnen Button-Klassen unveraendert
   bleiben. */
button {
  font-family: inherit;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  /* Verhindert einzelne "verwaiste" Woerter am Zeilenende beim Umbruch -- der Browser
     verteilt die letzte Zeile gleichmaessiger. Browser ohne Unterstuetzung (Safari < 17.5)
     bleiben beim normalen Umbruch, kein Darstellungsfehler. */
  text-wrap: balance;
}

h1 {
  max-width: min(680px, 100%);
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.4vw, 4.75rem);
  font-weight: 500;
  line-height: 0.94;
}

.headline-line {
  display: block;
}

h1 .kinetic-word {
  position: relative;
  display: inline-block;
  width: 7.4ch;
  color: var(--accent-soft);
  text-shadow: 0 0 34px rgba(159, 200, 179, 0.34);
  white-space: nowrap;
}

h1 .kinetic-word::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 0.04em;
  bottom: 0.04em;
  height: 0.08em;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  transform-origin: left;
  animation: wordFlash 2.6s ease-in-out infinite;
}

h2 {
  max-width: 20ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.55vw, 2.75rem);
  font-weight: 500;
  line-height: 1.02;
}

.accent-phrase {
  color: var(--accent);
}

.trust-highlight {
  color: var(--heading-accent);
  font-weight: 700;
}

.brand-focus {
  color: var(--accent);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 30;
  translate: 0 -160%;
  background: #ffffff;
  color: var(--black);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  row-gap: 0.5rem;
  min-height: 64px;
  padding: 0.48rem clamp(1rem, 4vw, 4rem);
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(4, 16, 18, 0.98), rgba(7, 28, 31, 0.94));
  border-bottom: 1px solid rgba(159, 200, 179, 0.18);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 clamp(210px, 24vw, 280px);
  min-width: 210px;
  text-decoration: none;
}

.brand img {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.5));
}

.brand span {
  display: grid;
  gap: 0.08rem;
  min-width: 0;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.34);
}

.brand small {
  color: rgba(226, 245, 237, 0.86);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.3rem;
  border: 1px solid rgba(159, 200, 179, 0.22);
  border-radius: 999px;
  background: rgba(2, 21, 24, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.18);
}

.site-nav a {
  min-height: 42px;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(159, 200, 179, 0.16);
  color: #ffffff;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  row-gap: 0.5rem;
}

/* Design-Umschalter als eine einzige Segmented Pill (System/Hell/Dunkel) statt zwei getrennter
   Steuerelemente -- spart Platz im Header und macht den aktiven Modus auf einen Blick klar. */
.theme-toggle-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.theme-seg-group {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.theme-seg {
  min-height: 30px;
  padding: 0.3rem 0.7rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.theme-seg:hover {
  color: #ffffff;
}

.theme-seg[aria-pressed="true"] {
  background: var(--accent-soft);
  color: #0b1f22;
}

.intern-shell .theme-seg-group {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--line);
}

.intern-shell .theme-seg {
  color: var(--smoke);
}

.intern-shell .theme-seg:hover {
  color: var(--ink);
}

.intern-shell .theme-seg[aria-pressed="true"] {
  background: var(--accent);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: auto;
  /* --site-header-height wird per JS (script.js) auf die tatsaechliche Header-Hoehe gesetzt --
     zwischen 761px und 1080px Breite bricht die Nav in zwei Zeilen um (noch kein Hamburger),
     der Header wird dadurch hoeher als der feste Fallback-Wert, sonst ueberdeckt er die
     Ueberschrift. */
  padding: calc(var(--site-header-height, 78px) + 1rem) clamp(1rem, 4vw, 4rem) 1.7rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(159, 200, 179, 0.26), transparent 31rem),
    radial-gradient(circle at 16% 82%, rgba(47, 125, 109, 0.22), transparent 30rem),
    linear-gradient(125deg, #061012 0%, #102f34 52%, #1f312a 100%);
  color: #ffffff;
  --mx: 50%;
  --my: 34%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 74%);
  animation: gridDrift 18s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(159, 200, 179, 0.2), transparent 18rem);
  mix-blend-mode: screen;
  transition: background 220ms ease;
}

.hero-ambient {
  position: absolute;
  right: -14vw;
  top: 12vh;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(159, 200, 179, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 90px rgba(159, 200, 179, 0.11), 0 0 120px rgba(47, 125, 109, 0.13);
  animation: ambientPulse 7s ease-in-out infinite;
}

.signal-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.signal-field span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 26px rgba(159, 200, 179, 0.72);
  opacity: 0;
  animation: signalRise 8s linear infinite;
}

.signal-field span:nth-child(1) {
  left: 12%;
  bottom: 12%;
  animation-delay: 0s;
}

.signal-field span:nth-child(2) {
  left: 34%;
  bottom: 4%;
  animation-delay: 1.7s;
}

.signal-field span:nth-child(3) {
  left: 62%;
  bottom: 8%;
  animation-delay: 3.1s;
}

.signal-field span:nth-child(4) {
  left: 78%;
  bottom: 18%;
  animation-delay: 4.4s;
}

.signal-field span:nth-child(5) {
  left: 48%;
  bottom: 0;
  animation-delay: 5.8s;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: 1440px;
  min-height: auto;
  margin: 0 auto;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin: 0 0 0.9rem;
  color: var(--accent);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: clamp(28px, 3.2vw, 48px);
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero .eyebrow {
  color: var(--accent-soft);
  font-size: 0.78rem;
}

.hero .eyebrow::before,
.hero-trust-card .eyebrow::before,
.cookie-copy .eyebrow::before {
  display: none;
}

.lead {
  max-width: 62ch;
  margin: 0.95rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.hero-clarity {
  max-width: 58ch;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.98rem;
  font-weight: 700;
}

.impact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.impact-line span {
  min-height: 32px;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 850;
  backdrop-filter: blur(16px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.cta-note {
  max-width: none;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.68rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  /* <button>-Elemente uebernehmen ohne diese Zeile die Browser-/OS-Standardschrift statt der
     Seitenschrift (Segoe UI/Arial) -- <a class="button"> ist davon nicht betroffen, dadurch
     sahen z.B. "Erst herausfinden..." (button) und "Unverbindliches Kennenlerngespraech" (a)
     nebeneinander wie zwei verschiedene Schriftarten aus. */
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: rgba(159, 200, 179, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    #123d40;
  color: #ffffff;
  box-shadow: 0 16px 42px rgba(7, 34, 36, 0.34);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
}

.button.primary:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), transparent),
    #185153;
  border-color: rgba(159, 200, 179, 0.48);
}

.button.ghost {
  border-color: rgba(220, 231, 220, 0.34);
  color: #ffffff;
  background: rgba(220, 231, 220, 0.08);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.quiz-cta-wrap {
  position: relative;
  display: inline-grid;
  justify-items: center;
  gap: 0.5rem;
  padding-top: 0.35rem;
}

.quiz-cta-badge {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(159, 200, 179, 0.18);
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.button.quiz-cta {
  border-color: rgba(159, 200, 179, 0.55);
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  color: #0c1f1c;
  text-shadow: none;
  animation: quizCtaGlow 3.2s ease-in-out infinite;
}

.button.quiz-cta:hover {
  background: linear-gradient(180deg, #b6dbc7, #38927e);
  transform: translateY(-2px);
}

@keyframes quizCtaGlow {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(47, 125, 109, 0.28), 0 0 0 0 rgba(159, 200, 179, 0.35);
  }
  50% {
    box-shadow: 0 16px 34px rgba(47, 125, 109, 0.4), 0 0 0 8px rgba(159, 200, 179, 0);
  }
}

.floating-cta {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.68rem 0.95rem;
  border: 1px solid rgba(220, 231, 220, 0.45);
  border-radius: 999px;
  background: rgba(12, 13, 10, 0.78);
  color: #ffffff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34), inset 0 0 28px rgba(111, 141, 122, 0.2);
  font-weight: 950;
  text-decoration: none;
  backdrop-filter: blur(18px);
}

.hero-showpiece {
  display: grid;
  gap: 0.85rem;
  align-self: center;
}

.hero-trust-card {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: clamp(1rem, 2.4vw, 1.5rem);
  border: 1px solid rgba(159, 200, 179, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(7, 21, 24, 0.66);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.hero-trust-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-soft), transparent);
  opacity: 0.8;
}

.hero-trust-card h2 {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.hero-trust-card p:not(.eyebrow) {
  max-width: 44ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.trust-facts {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.trust-facts div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-facts dt {
  color: var(--accent-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.trust-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.35;
}

.hero-trust-note {
  display: grid;
  gap: 0.22rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
}

.hero-trust-note strong {
  color: #ffffff;
}

.showpiece-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(210px, 26vw, 285px);
  padding: clamp(0.75rem, 1.8vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.showpiece-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(159, 200, 179, 0.34);
  border-radius: 6px;
  animation: frameGlow 4.8s ease-in-out infinite;
}

.showpiece-frame::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, 0.18), transparent 62%);
  transform: translateX(-55%) rotate(12deg);
  animation: sheenSweep 6s ease-in-out infinite;
}

.showpiece-frame img {
  position: relative;
  z-index: 2;
  width: min(220px, 58vw);
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.58));
  animation: emblemFloat 6.5s ease-in-out infinite;
}

.showpiece-proof {
  position: absolute;
  right: clamp(0.8rem, 2vw, 1.25rem);
  bottom: clamp(0.8rem, 2vw, 1.25rem);
  z-index: 3;
  display: grid;
  gap: 0.1rem;
  max-width: 190px;
  padding: 0.62rem 0.75rem;
  border: 1px solid rgba(159, 200, 179, 0.38);
  border-radius: 8px;
  background: rgba(9, 8, 6, 0.72);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.showpiece-proof span {
  color: var(--accent-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1;
}

.showpiece-proof strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border: 1px solid rgba(159, 200, 179, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 74%;
  aspect-ratio: 1;
  animation: orbitSpin 18s linear infinite;
}

.orbit-two {
  width: 58%;
  aspect-ratio: 1;
  transform: rotate(64deg) scaleY(0.72);
  animation: orbitSpinReverse 14s linear infinite;
}

.orbit-three {
  width: 88%;
  aspect-ratio: 1;
  transform: rotate(-24deg) scaleY(0.52);
  animation: orbitSpin 24s linear infinite;
}

.showpiece-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

.showpiece-caption span,
.showpiece-caption strong {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.showpiece-caption strong {
  color: #ffffff;
}

.signature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 4rem);
  background: var(--porcelain);
}

.success-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 4.2rem);
  align-items: center;
  padding: clamp(1.8rem, 3.3vw, 3rem) clamp(1rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 78% 20%, rgba(47, 125, 109, 0.16), transparent 26rem),
    radial-gradient(circle at 12% 78%, rgba(111, 141, 122, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--porcelain), #f7ecda);
}

.success-copy,
.success-orchestra,
.wow-statement,
.wow-grid {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.success-copy p:last-child {
  max-width: 58ch;
  color: var(--smoke);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.success-orchestra {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.success-orchestra::before {
  content: "";
  position: absolute;
  inset: 12% 10%;
  border: 1px solid rgba(47, 125, 109, 0.24);
  transform: rotate(-8deg);
  pointer-events: none;
}

.success-node {
  position: relative;
  min-height: 128px;
  padding: clamp(0.75rem, 1.7vw, 1rem);
  border: 1px solid rgba(47, 125, 109, 0.24);
  border-radius: var(--radius);
  background: var(--card-tint);
  box-shadow: 0 18px 60px rgba(22, 20, 18, 0.1);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.success-node::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.78), transparent 42%, rgba(47, 125, 109, 0.12));
  opacity: 0.86;
}

.success-node:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 125, 109, 0.72);
  box-shadow: 0 24px 74px rgba(22, 20, 18, 0.14);
}

.success-node.active {
  border-color: rgba(47, 125, 109, 0.72);
  box-shadow: 0 20px 62px rgba(22, 20, 18, 0.13);
}

.success-node span,
.success-node strong,
.success-node p {
  position: relative;
  z-index: 1;
}

.success-node span {
  display: block;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.success-node strong {
  display: block;
  margin-top: 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1;
}

.success-node p {
  margin: 0.8rem 0 0;
  color: var(--smoke);
}

.wow-section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8.5rem) clamp(1rem, 4vw, 4rem);
  background:
    linear-gradient(135deg, rgba(12, 13, 10, 0.94), rgba(35, 29, 22, 0.95)),
    var(--black);
  color: #ffffff;
  overflow: hidden;
}

.wow-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(159, 200, 179, 0.72), transparent);
  opacity: 0.8;
  animation: verticalCharge 4.8s ease-in-out infinite;
}

.wow-statement {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.wow-statement h2 {
  max-width: 11ch;
}

.wow-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-deep);
}

.wow-grid article {
  min-height: 330px;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px);
}

.wow-grid span {
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.wow-grid h3 {
  margin-top: 1.2rem;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 500;
}

.wow-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.momentum-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 8rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  background:
    linear-gradient(90deg, rgba(9, 8, 6, 0.95), rgba(31, 26, 20, 0.95)),
    var(--black);
  color: #ffffff;
  overflow: hidden;
}

.momentum-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(159, 200, 179, 0.18) 48%, transparent 56%);
  transform: translateX(-40%);
  animation: momentumSweep 7s ease-in-out infinite;
}

.momentum-intro,
.momentum-track {
  position: relative;
  z-index: 1;
}

.momentum-track {
  display: grid;
  gap: 1rem;
}

.momentum-track article {
  display: grid;
  grid-template-columns: 64px minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: baseline;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.momentum-track article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.momentum-track span {
  color: var(--accent-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.momentum-track p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.signature-copy,
.signature-section > p,
.section-heading,
.service-list,
.method-section,
.audience-band,
.faq-list,
.contact-shell,
.legal-section,
.site-footer {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.signature-section > p {
  margin-top: 0.5rem;
  color: var(--smoke);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

.section {
  padding: clamp(1.4rem, 2.4vw, 2.25rem) clamp(1rem, 4vw, 4rem);
}

.clarity-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(1.1rem, 3vw, 3rem);
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 125, 109, 0.12), transparent 20rem),
    linear-gradient(180deg, var(--porcelain), #f7ecda);
}

.clarity-copy,
.clarity-points {
  max-width: 1320px;
}

.clarity-copy {
  align-self: center;
}

.clarity-copy h2 {
  max-width: 18ch;
}

.clarity-copy p:last-child {
  max-width: 58ch;
  color: var(--smoke);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
}

.clarity-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.1rem);
}

.clarity-points article {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: clamp(1rem, 2vw, 1.4rem) clamp(0.85rem, 1.8vw, 1.2rem);
  border: 1px solid rgba(47, 125, 109, 0.24);
  border-radius: var(--radius);
  background: var(--card-tint);
  box-shadow: 0 18px 60px rgba(22, 20, 18, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.clarity-points article:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 125, 109, 0.72);
  box-shadow: 0 24px 74px rgba(22, 20, 18, 0.14);
}

.clarity-points span {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.clarity-points strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.05;
}

.clarity-points p {
  margin: 0;
  color: var(--smoke);
  font-size: 0.96rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: clamp(0.95rem, 2vw, 1.6rem);
}

.section-lead {
  max-width: 62ch;
  margin: 0;
  color: var(--smoke);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.mentor-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(111, 141, 122, 0.14), transparent 22rem),
    linear-gradient(180deg, #f8edde, var(--porcelain));
}

.mentor-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(0.85rem, 2vw, 1.35rem);
  border: 1px solid rgba(47, 125, 109, 0.24);
  border-radius: var(--radius);
  background: var(--card-tint);
  box-shadow: 0 18px 60px rgba(22, 20, 18, 0.1);
}

.mentor-card {
  position: relative;
}

.mentor-card::before {
  content: "";
  position: absolute;
  top: -8%;
  left: clamp(0.5rem, 3vw, 1.5rem);
  width: min(180px, 30%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 200, 179, 0.55), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.mentor-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 30%, rgba(159, 200, 179, 0.28), transparent 14rem),
    linear-gradient(160deg, var(--petrol-soft), var(--sage-soft));
  box-shadow: 0 20px 46px rgba(16, 47, 52, 0.22), 0 0 0 6px var(--card-tint-strong), 0 0 0 7px rgba(47, 125, 109, 0.2);
}

.mentor-mark img {
  width: min(140px, 48%);
  filter: drop-shadow(0 14px 28px rgba(16, 47, 52, 0.22));
}

/* Wenn ein echtes Portraitfoto eingesetzt wird: <img class="mentor-photo" src="..."> statt des Logos,
   damit es den ganzen Rahmen ausfuellt statt zentriert und klein zu bleiben. */
.mentor-mark img.mentor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.mentor-copy h2 {
  max-width: 20ch;
}

.mentor-copy p:not(.eyebrow) {
  max-width: 66ch;
  color: var(--smoke);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
}

.mentor-quote {
  position: relative;
  max-width: 58ch;
  margin: 1rem 0 0;
  padding: 1.1rem 1.2rem 1.1rem 1.4rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: rgba(47, 125, 109, 0.08);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.28;
  overflow: hidden;
}

.mentor-quote::before {
  content: "\201C";
  position: absolute;
  top: -0.6rem;
  right: 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(47, 125, 109, 0.16);
  pointer-events: none;
}

.mentor-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.3rem;
}

.mentor-values span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card-tint);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.mentor-values span::before {
  content: "";
  flex: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(47, 125, 109, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%232f7d6d' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 9px;
}

.team-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(159, 200, 179, 0.18), transparent 22rem),
    linear-gradient(180deg, var(--porcelain), #f5ecdd);
}

.team-intro,
.team-path {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.team-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  margin-bottom: clamp(0.9rem, 2vw, 1.5rem);
}

.team-intro p:last-child {
  max-width: 60ch;
  margin: 0;
  color: var(--smoke);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.team-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.1rem);
}

.team-path article {
  position: relative;
  min-height: 128px;
  padding: clamp(0.75rem, 1.7vw, 1rem);
  border: 1px solid rgba(47, 125, 109, 0.24);
  border-radius: var(--radius);
  background: var(--card-tint);
  box-shadow: 0 18px 60px rgba(22, 20, 18, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.team-path article:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 125, 109, 0.72);
  box-shadow: 0 24px 74px rgba(22, 20, 18, 0.14);
}

.team-path span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.team-path h3 {
  max-width: 15ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.05;
}

.team-path p {
  color: var(--smoke);
}

.fit-section {
  background: var(--porcelain);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.1rem);
  max-width: 1320px;
  margin: 0 auto;
}

.fit-grid article {
  padding: clamp(1.1rem, 2.2vw, 1.6rem);
  border: 1px solid rgba(47, 125, 109, 0.24);
  border-radius: var(--radius);
  background: var(--card-tint);
  box-shadow: 0 18px 60px rgba(22, 20, 18, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.fit-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 125, 109, 0.72);
  box-shadow: 0 24px 74px rgba(22, 20, 18, 0.14);
}

.fit-grid .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fit-grid .eyebrow::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.fit-yes {
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 125, 109, 0.1), transparent 14rem),
    var(--card-tint);
}

.fit-yes .eyebrow::before {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(47, 125, 109, 0.16);
}

.fit-no {
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 47, 52, 0.08), transparent 14rem),
    var(--card-tint);
}

.fit-no .eyebrow {
  color: var(--heading-accent);
}

.fit-no .eyebrow::before {
  background: var(--petrol);
  box-shadow: 0 0 0 4px rgba(16, 47, 52, 0.14);
}

.fit-grid ul {
  display: grid;
  gap: 0.6rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--charcoal);
  font-weight: 750;
}

.fit-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
}

.fit-yes li::before {
  background-color: rgba(47, 125, 109, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%232f7d6d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}

.fit-no li::before {
  background-color: rgba(16, 47, 52, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23102f34' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}

.service-section {
  background:
    linear-gradient(180deg, var(--card-tint-solid), rgba(239, 227, 205, 0.55)),
    var(--paper);
}

.service-list {
  display: grid;
  gap: clamp(0.75rem, 1.6vw, 1.1rem);
}

.service-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 0.85fr) minmax(260px, 1fr);
  gap: clamp(0.8rem, 2.4vw, 2.5rem);
  align-items: start;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(47, 125, 109, 0.24);
  border-radius: var(--radius);
  background: var(--card-tint);
  box-shadow: 0 18px 60px rgba(22, 20, 18, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-item:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 125, 109, 0.72);
  box-shadow: 0 24px 74px rgba(22, 20, 18, 0.14);
}

.service-number {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 700;
  line-height: 1;
}

.service-item h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.05;
}

.service-item p {
  max-width: 58ch;
  margin: 0.45rem 0 0;
  color: var(--smoke);
}

.service-item ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-item li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--charcoal);
  font-weight: 750;
}

.service-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.outcome-list {
  gap: 0.7rem;
}

.outcome-list li {
  padding: 0.1rem 0.4rem 0.1rem 1.9rem;
  color: #2a251e;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 750;
}

.outcome-list li::before {
  content: "✓";
  top: 0.56rem;
  left: 0.62rem;
  display: grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: rgba(47, 125, 109, 0.14);
  color: var(--accent);
  font-size: 0.76rem;
  line-height: 1;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  background:
    radial-gradient(circle at 8% 18%, rgba(111, 141, 122, 0.16), transparent 26rem),
    linear-gradient(125deg, rgba(12, 13, 10, 0.96), rgba(35, 29, 22, 0.95)),
    var(--black);
  color: #ffffff;
}

.method-panel {
  position: sticky;
  top: 110px;
  align-self: start;
}

.method-panel p:last-child {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.method-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.method-steps li {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.method-steps span {
  color: var(--accent-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.method-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.audience-section {
  background: var(--porcelain);
}

.audience-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.1rem);
}

.audience-band article {
  padding: clamp(1rem, 1.8vw, 1.25rem);
  border: 1px solid rgba(47, 125, 109, 0.24);
  border-radius: var(--radius);
  background: var(--card-tint);
  box-shadow: 0 18px 60px rgba(22, 20, 18, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.audience-band article:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 125, 109, 0.72);
  box-shadow: 0 24px 74px rgba(22, 20, 18, 0.14);
}

.audience-band p {
  max-width: 54ch;
  margin-bottom: 0;
  color: var(--smoke);
  font-size: 0.96rem;
}

.audience-kicker {
  display: block;
  max-width: 42ch;
  min-height: 0;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.3;
}

.audience-band h3 {
  max-width: 18ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 500;
  line-height: 1.02;
}

.faq-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(47, 125, 109, 0.14), transparent 22rem),
    radial-gradient(circle at 94% 82%, rgba(16, 47, 52, 0.1), transparent 24rem),
    var(--paper);
}

.faq-list {
  display: grid;
  gap: clamp(0.6rem, 1.2vw, 0.85rem);
}

details {
  border: 1px solid rgba(47, 125, 109, 0.24);
  border-radius: var(--radius);
  background: var(--card-tint);
  box-shadow: 0 18px 60px rgba(22, 20, 18, 0.1);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

details:hover,
details[open] {
  border-color: rgba(47, 125, 109, 0.72);
  box-shadow: 0 24px 74px rgba(22, 20, 18, 0.14);
}

summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.68rem 0.9rem;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--heading-accent);
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "";
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M9 6l6 6-6 6'/%3E%3C/svg%3E") center / 11px no-repeat,
    linear-gradient(145deg, var(--petrol), #1c4a52);
  box-shadow: inset 0 0 0 1px rgba(159, 200, 179, 0.3);
  transition: transform 220ms ease;
}

details[open] summary::before {
  transform: rotate(90deg);
}

details p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--smoke);
}

.contact-section {
  background: var(--black);
  color: #ffffff;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1rem, 2.4vw, 1.7rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    #14110e;
  box-shadow: var(--shadow-deep);
  position: relative;
  overflow: hidden;
}

.contact-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 20%, rgba(159, 200, 179, 0.18), transparent 20rem);
}

.contact-copy p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.74);
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes wordFlash {
  0%,
  100% {
    transform: scaleX(0.22);
    opacity: 0.42;
  }
  48%,
  58% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes ambientPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes signalRise {
  0% {
    translate: 0 0;
    opacity: 0;
  }
  12% {
    opacity: 0.9;
  }
  100% {
    translate: 0 -78vh;
    opacity: 0;
  }
}

@keyframes frameGlow {
  0%,
  100% {
    box-shadow: inset 0 0 0 rgba(159, 200, 179, 0);
  }
  50% {
    box-shadow: inset 0 0 40px rgba(159, 200, 179, 0.18);
  }
}

@keyframes sheenSweep {
  0%,
  35% {
    transform: translateX(-60%) rotate(12deg);
  }
  62%,
  100% {
    transform: translateX(62%) rotate(12deg);
  }
}

@keyframes emblemFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.018);
  }
}

@keyframes orbitSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes orbitSpinReverse {
  to {
    rotate: -360deg;
  }
}

@keyframes momentumSweep {
  0%,
  35% {
    transform: translateX(-48%);
  }
  70%,
  100% {
    transform: translateX(48%);
  }
}

@keyframes verticalCharge {
  0%,
  100% {
    transform: scaleY(0.25);
    opacity: 0.26;
  }
  45%,
  55% {
    transform: scaleY(1);
    opacity: 0.95;
  }
}

.contact-details {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-style: normal;
}

.contact-name {
  margin: 0 0 0.9rem;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.contact-detail-list {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.3rem;
  padding: 0;
  list-style: none;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.contact-detail-row a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: none;
}

.contact-detail-row a:hover {
  color: var(--accent-soft);
}

.contact-detail-row::before {
  content: "";
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(159, 200, 179, 0.14);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

.contact-detail-address::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%239fc8b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.75' fill='none' stroke='%239fc8b3' stroke-width='2'/%3E%3C/svg%3E");
}

.contact-detail-phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%239fc8b3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8Z'/%3E%3C/svg%3E");
}

.contact-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(22, 20, 18, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-detail-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(22, 20, 18, 0.3);
}

.contact-detail-cta::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-process {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-process-promise {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.5;
}

.trust-highlight-inverse {
  color: var(--accent-soft);
  font-weight: 700;
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-steps li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-steps span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(159, 200, 179, 0.16);
  color: var(--accent-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--form-panel-bg);
  color: var(--ink);
}

.quiz-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.quiz-step-label {
  margin: 0;
  color: var(--smoke);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.quiz-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(47, 125, 109, 0.14);
  overflow: hidden;
}

.quiz-progress-bar {
  display: block;
  height: 100%;
  width: 16.66%;
  border-radius: 999px;
  background: var(--accent);
  transition: width 320ms ease;
}

.quiz-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-step.is-active {
  display: grid;
  gap: 0.9rem;
  animation: quizStepIn 320ms ease;
}

@keyframes quizStepIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-step legend {
  padding: 0;
  max-width: 32ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  line-height: 1.2;
}

.quiz-options {
  display: grid;
  gap: 0.6rem;
}

.quiz-option {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(47, 125, 109, 0.24);
  border-radius: var(--radius);
  background: var(--card-tint);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.quiz-option:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 125, 109, 0.6);
  box-shadow: 0 14px 34px rgba(22, 20, 18, 0.1);
}

.quiz-option.is-selected {
  border-color: var(--accent);
  background: rgba(47, 125, 109, 0.12);
  box-shadow: 0 14px 34px rgba(22, 20, 18, 0.12);
}

.quiz-nav {
  display: flex;
  justify-content: flex-start;
}

.quiz-back {
  border: 0;
  padding: 0.4rem 0;
  background: transparent;
  color: var(--smoke);
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.quiz-modal {
  position: relative;
  width: min(560px, calc(100vw - 2rem));
  max-height: min(88vh, 780px);
  margin: auto;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 1px solid rgba(47, 125, 109, 0.24);
  border-radius: 20px;
  background: var(--porcelain);
  color: var(--ink);
  box-shadow: var(--shadow-deep);
  overflow-y: auto;
}

.quiz-modal::backdrop {
  background: rgba(12, 13, 10, 0.72);
  backdrop-filter: blur(2px);
}

.quiz-modal .eyebrow {
  margin-bottom: 0.6rem;
}

.quiz-modal .contact-form {
  padding: 0;
  border: 0;
  background: transparent;
}

.quiz-close {
  position: absolute;
  top: clamp(0.9rem, 2vw, 1.3rem);
  right: clamp(0.9rem, 2vw, 1.3rem);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(47, 125, 109, 0.24);
  border-radius: 50%;
  background: var(--card-tint-strong);
  color: var(--heading-accent);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.quiz-close:hover {
  border-color: rgba(47, 125, 109, 0.72);
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row[hidden] {
  display: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  font-weight: 700;
}

.optional-hint {
  color: var(--smoke);
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #c7bba8;
  border-radius: 7px;
  padding: 0.65rem 0.85rem;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

select {
  cursor: pointer;
}

/* Checkboxen/Radios erben sonst die obige input-Regel (width:100%, min-height:44px,
   Rahmen/Innenabstand wie ein Textfeld) und blaehen sich zu grossen leeren grauen
   Kaesten auf -- betraf jedes Formular, das ein <input type="checkbox"> nicht extra in
   .checkbox-row einpackt. Gezielter Reset behebt das ueberall auf einen Schlag. */
input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  min-height: 0;
  height: 18px;
  padding: 0;
  border: 1px solid #c7bba8;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
}

textarea {
  resize: vertical;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  font-weight: 500;
}

.checkbox-row input {
  min-height: 22px;
  margin-top: 0.2rem;
}

.field-error,
.form-status {
  margin: 0;
  color: #8a1d1d;
  font-weight: 700;
}

.field-error:empty {
  display: none;
}

.form-status {
  color: var(--charcoal);
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1rem, 4vw, 4rem);
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  font-size: clamp(1.9rem, 3.3vw, 3.5rem);
}

.legal-section p:last-child {
  color: var(--smoke);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1rem, 4vw, 4rem);
  background: var(--black);
  color: rgba(255, 255, 255, 0.74);
}

.site-footer p {
  margin: 0;
}

.footer-version {
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.site-footer a,
.site-footer button {
  color: var(--accent-soft);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  inset: auto clamp(0.8rem, 3vw, 2rem) clamp(0.8rem, 3vw, 2rem);
  z-index: 40;
  display: grid;
  justify-items: end;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  width: min(920px, 100%);
  padding: clamp(0.9rem, 2vw, 1.25rem);
  border: 1px solid rgba(159, 200, 179, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(159, 200, 179, 0.18), transparent 16rem),
    rgba(12, 13, 10, 0.96);
  color: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.cookie-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #ffffff;
}

.cookie-copy p:not(.eyebrow) {
  max-width: 68ch;
  margin: 0.55rem 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
}

.cookie-copy a {
  color: var(--accent-soft);
  font-weight: 700;
}

.cookie-options {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.cookie-options[hidden] {
  display: none;
}

.cookie-choice {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.cookie-choice input {
  min-height: 20px;
  margin: 0.22rem 0 0;
  accent-color: var(--accent);
}

.cookie-choice strong,
.cookie-choice small {
  display: block;
}

.cookie-choice small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
  line-height: 1.35;
}

.cookie-choice.is-locked {
  opacity: 0.86;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 0.55rem;
}

.cookie-actions .button {
  min-height: 40px;
  padding: 0.58rem 0.82rem;
  white-space: nowrap;
}

.cookie-actions .button.ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  position: sticky;
  background: rgba(12, 13, 10, 0.9);
}

.legal-main {
  padding-top: 0;
}

.legal-hero {
  /* Seit die Rechts-/Ratgeber-Seiten denselben fixierten Header wie die Startseite nutzen
     (.site-header statt .legal-header), muss dessen Hoehe hier reserviert werden -- sonst
     ueberdeckt der Header die Ueberschrift. Gleiches Prinzip wie bei .hero (siehe script.js). */
  padding: calc(var(--site-header-height, 90px) + clamp(1.8rem, 4vw, 3rem)) clamp(1rem, 4vw, 4rem) clamp(1.8rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 78% 18%, rgba(159, 200, 179, 0.2), transparent 24rem),
    linear-gradient(125deg, #061012, #102f34);
  color: #ffffff;
}

.legal-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.legal-hero p:last-child,
.legal-content {
  max-width: 880px;
}

.legal-hero p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.legal-content {
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1rem, 4vw, 4rem);
}

.legal-content h2 {
  max-width: none;
  margin-top: 1.8rem;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--smoke);
}

.legal-content a {
  color: var(--accent);
  font-weight: 700;
}

/* Ratgeber-Modul: eigener, editorialer Anstrich auf Basis der legal-*-Grundstruktur (gleicher
   Header/Footer/Kartenrahmen wie Impressum/Datenschutz), aber mit mehr Einladung zum Lesen --
   Zielgruppe hier sind potenzielle neue Interessenten, nicht nur rechtliche Pflichtseiten. */
.ratgeber-hero p:last-child {
  max-width: 62ch;
}

.ratgeber-hero .eyebrow {
  color: var(--accent-soft);
}

.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}

.ratgeber-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.5rem 1.6rem;
  border-radius: 16px;
  background: var(--card-tint-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ratgeber-card:hover,
.ratgeber-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--accent-soft);
  box-shadow: 0 30px 70px rgba(16, 47, 52, 0.22);
}

.ratgeber-card__tag {
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--petrol-soft);
  color: var(--petrol);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

:root[data-theme="dark"] .ratgeber-card__tag {
  background: rgba(159, 200, 179, 0.16);
  color: var(--accent-soft);
}

.ratgeber-card__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--ink);
}

.ratgeber-card__excerpt {
  margin: 0;
  color: var(--smoke);
  font-size: 0.96rem;
  line-height: 1.55;
}

.ratgeber-card__meta {
  margin-top: auto;
  padding-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
}

.ratgeber-empty {
  padding: 2.2rem 1.8rem;
  border-radius: 16px;
  border: 1px dashed var(--line);
  color: var(--smoke);
  text-align: center;
}

.ratgeber-article-hero h1 {
  max-width: 20ch;
}

.ratgeber-article-meta {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

.ratgeber-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.ratgeber-breadcrumb:hover {
  color: #ffffff;
}

.ratgeber-content-body {
  max-width: 68ch;
}

.ratgeber-content-body p {
  font-size: 1.06rem;
  line-height: 1.75;
}

.ratgeber-content-body h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.ratgeber-faq-link {
  margin-top: 1.6rem;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  background: var(--petrol-soft);
  color: var(--petrol);
  font-size: 0.95rem;
}

:root[data-theme="dark"] .ratgeber-faq-link {
  background: rgba(159, 200, 179, 0.1);
  color: var(--accent-soft);
}

.ratgeber-faq-link a {
  color: inherit;
  font-weight: 700;
}

.ratgeber-cta-box {
  margin-top: 2.4rem;
  padding: 1.8rem 2rem;
  border-radius: 16px;
  background:
    radial-gradient(circle at 85% 12%, rgba(159, 200, 179, 0.22), transparent 20rem),
    linear-gradient(125deg, #061012, #102f34);
  color: #ffffff;
}

.ratgeber-cta-box p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.ratgeber-cta-box strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.ratgeber-related {
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.ratgeber-related__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ratgeber-related__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.ratgeber-related__heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.ratgeber-related__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--petrol));
  box-shadow: 0 10px 24px rgba(16, 47, 52, 0.28);
  font-size: 1.05rem;
}

.ratgeber-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.ratgeber-related__card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.1rem 1.3rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card-tint);
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, border-color 200ms ease;
}

.ratgeber-related__card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-soft);
}

.ratgeber-related__card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  color: var(--ink);
}

.ratgeber-related__card span {
  font-size: 0.88rem;
  color: var(--smoke);
}

.ratgeber-back-link {
  display: inline-block;
  margin-top: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.ratgeber-back-link:hover {
  text-decoration: underline;
}

.obfuscated-email {
  display: inline-block;
  padding: 0.08rem 0.32rem;
  border-radius: 5px;
  background: rgba(47, 125, 109, 0.1);
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .hero-inner,
  .clarity-section,
  .signature-section,
  .success-section,
  .mentor-card,
  .team-intro,
  .momentum-section,
  .section-heading,
  .method-section,
  .contact-shell,
  .legal-section,
  .cookie-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-inner {
    min-height: auto;
  }

  .showpiece-frame {
    min-height: 190px;
  }

  .showpiece-frame img {
    width: min(190px, 52vw);
  }

  .method-panel {
    position: static;
  }

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

  .clarity-points {
    grid-template-columns: 1fr;
  }

  .clarity-points article {
    min-height: auto;
  }

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

  .cookie-actions {
    justify-content: flex-start;
  }

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

  .wow-grid article {
    min-height: auto;
  }

  .momentum-track article {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .momentum-track article p {
    grid-column: 2;
  }

}

@media (max-width: 760px) {
  .site-header {
    min-height: 60px;
  }

  .brand {
    flex-basis: 190px;
    min-width: 0;
    gap: 0.65rem;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  /* Der interne Header (intern/partials/header.php) hat kein eigenes Hamburger-Menue --
     seine .header-actions-Buttons (Uebersicht/Profil/Abmelden/Admin-Dropdown/Design-Umschalter)
     liefen auf schmalen Viewports ueber den fixierten Header hinaus und waren dadurch
     unerreichbar. .site-header/.header-actions duerfen jetzt grundsaetzlich umbrechen (siehe
     Basis-Regeln oben) -- das reicht bereits ab ~760px. Auf sehr schmalen Handy-Viewports
     bekommen die Buttons hier zusaetzlich eine echte Breite (width:100%) statt nur
     intrinsischer Breite, damit ihr Text sauber umbricht statt ueberzulaufen. Der Header ist
     nicht hoehenfixiert (nur min-height), waechst also automatisch mit. */
  .header-actions {
    width: 100%;
  }

  .header-actions .button,
  .site-header .admin-nav-bar {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    min-height: 34px;
    padding: 0.32rem 0.7rem;
    font-size: 0.82rem;
    white-space: normal;
  }

  .theme-toggle-group {
    flex: 0 0 auto;
  }

  .theme-toggle-label {
    display: none;
  }

  .site-header .admin-nav-caption {
    display: none;
  }

  .site-header .admin-nav-select {
    width: 100%;
    max-width: 220px;
    font-size: 0.78rem;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 60px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.75rem;
    border: 0;
    border-radius: 0;
    background: rgba(9, 8, 6, 0.96);
    box-shadow: var(--shadow-deep);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: 7px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--site-header-height, 90px) + 1rem);
    padding-bottom: 1.4rem;
  }

  h1 {
    font-size: clamp(2.05rem, 9vw, 3.2rem);
  }

  h1 .kinetic-word {
    width: 7.4ch;
  }

  .trust-facts div {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0.75rem;
  }

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

  .showpiece-caption {
    display: grid;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .momentum-track article {
    grid-template-columns: 1fr;
  }

  .success-orchestra {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    left: 1rem;
    right: 1rem;
  }

  .momentum-track article p {
    grid-column: auto;
  }

  .method-steps li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .audience-band {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    inset: auto 0.75rem 0.75rem;
  }

  .cookie-options {
    grid-template-columns: 1fr;
  }

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

  .team-path {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Dunkles Farbschema. Header/Hero/Kontakt/Footer sind bereits von Natur aus dunkel
   gestaltet und bleiben unveraendert -- hier werden nur die hellen Inhaltsflaechen
   umgeschaltet. */
:root[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f8f6f1;
  --charcoal: #e6e1d6;
  --smoke: #c7c0b2;
  --line: #3c362c;
  --paper: #16130e;
  --cream: #201b14;
  --porcelain: #1c1811;
  --card-tint: rgba(28, 24, 17, 0.72);
  --card-tint-strong: rgba(28, 24, 17, 0.9);
  --card-tint-solid: rgba(28, 24, 17, 0.94);
  --form-panel-bg: rgba(20, 17, 12, 0.92);
  --heading-accent: var(--accent-soft);
  --gold: #d9b46a;
  --gold-strong: #c79a45;
  --danger: #ff6b6b;
  --danger-border: rgba(255, 107, 107, 0.5);
  --danger-bg-soft: rgba(255, 107, 107, 0.14);
}

:root[data-theme="dark"] .success-section,
:root[data-theme="dark"] .clarity-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(47, 125, 109, 0.16), transparent 26rem),
    radial-gradient(circle at 12% 78%, rgba(111, 141, 122, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--porcelain), var(--cream));
}

:root[data-theme="dark"] .mentor-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(111, 141, 122, 0.14), transparent 22rem),
    linear-gradient(180deg, var(--cream), var(--porcelain));
}

:root[data-theme="dark"] .team-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(159, 200, 179, 0.18), transparent 22rem),
    linear-gradient(180deg, var(--porcelain), var(--cream));
}

:root[data-theme="dark"] .service-section {
  background:
    linear-gradient(180deg, rgba(28, 24, 17, 0.94), rgba(32, 27, 20, 0.55)),
    var(--paper);
}

:root[data-theme="dark"] .outcome-list li {
  color: var(--ink);
}

:root[data-theme="dark"] .success-node::before {
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.06), transparent 42%, rgba(47, 125, 109, 0.14));
}

:root[data-theme="dark"] input,
:root[data-theme="dark"] textarea,
:root[data-theme="dark"] select {
  background: var(--porcelain);
  border-color: var(--line);
  color: var(--ink);
}

:root[data-theme="dark"] .legal-page {
  background: var(--paper);
  color: var(--ink);
}
