/* =====================================================================
   Wiese Consulting — Homepage
   Brand-System aus dem Pitch: tiefes Tannengrün + Creme, Akzent-Smaragd,
   Ampel (Rot/Gelb/Grün). Typografie: Manrope (Display) + Inter (Text).
   ===================================================================== */

:root {
  /* Flächen */
  --bg:        #0E3D35;   /* Primär — tiefes Tannengrün (aus Pitch) */
  --bg-deep:   #0A2C27;   /* dunkler — alternierende Sektionen/Footer */
  --bg-alt:    #103F37;   /* leichte Variation */
  --surface:   #13473E;   /* Karten */
  --surface-2: #16514663; /* unused fallback */
  --surface-hi:#185247;   /* Karte hover */

  /* Schrift / Linien */
  --cream:     #EDE7DC;   /* Primärtext auf dunkel (Logo-Creme) */
  --cream-2:   #C9CFC6;   /* gedämpfter Text */
  --muted:     #93A29A;   /* tertiär / Captions */
  --line:      rgba(237,231,220,.12);
  --line-2:    rgba(237,231,220,.20);

  /* Akzente */
  --emerald:   #2FC08A;   /* heller Smaragd — Akzent (aus Pitch) */
  --emerald-2: #25A877;   /* tieferer Smaragd */
  --emerald-ink:#0A2C27;  /* Text auf Smaragd-Button */

  /* Ampel */
  --red:    #E24B4A;
  --amber:  #EF9F27;
  --green:  #1FA577;

  /* Komponenten-Flächen (für Theming auslagerbar) */
  --header-bg: rgba(14,61,53,.72);
  --header-bg-scrolled: rgba(10,44,39,.86);
  --hero-overlay: rgba(10,44,39,.55);
  --chip-bg: rgba(10,44,39,.78);
  --btn-primary-hover: #38d199;
  --btn-primary-glow: rgba(47,192,138,.7);
  --pill-ink: #0A2C27;

  --radius:   18px;
  --radius-sm:12px;
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 40px);

  --shadow: 0 24px 60px -28px rgba(0,0,0,.55);
  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-display: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-text: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--ff-text);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

.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; left: 16px; top: -60px; z-index: 200;
  background: var(--emerald); color: var(--emerald-ink); padding: 10px 16px;
  border-radius: 10px; font-weight: 700; transition: top .2s var(--ease);
}
.skip-link:focus { top: 14px; }

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

/* ---------- Typo-Helfer ---------- */
.eyebrow {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 18px;
}
.hl { color: var(--emerald); }
em { font-style: normal; color: var(--cream); border-bottom: 2px solid var(--emerald); padding-bottom: 1px; }

.section__title {
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  font-size: clamp(1.7rem, 1rem + 2.6vw, 2.9rem);
  color: var(--cream);
}
.section__intro {
  margin-top: 18px;
  color: var(--cream-2);
  font-size: clamp(1rem, .95rem + .3vw, 1.16rem);
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .005em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--emerald);
  color: var(--emerald-ink);
  box-shadow: 0 14px 30px -14px var(--btn-primary-glow);
}
.btn--primary:hover { background: var(--btn-primary-hover); transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: var(--cream);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--emerald); color: var(--cream); transform: translateY(-2px); }
.btn--small { padding: 10px 18px; font-size: .9rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: var(--header-bg-scrolled);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 30px; height: 25px; flex: none; }
.brand__mark rect { fill: var(--cream); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--ff-display); font-weight: 800; letter-spacing: .14em;
  font-size: 1.12rem; color: var(--cream);
}
.brand__sub {
  font-family: var(--ff-display); font-weight: 600; letter-spacing: .34em;
  font-size: .58rem; color: var(--emerald); margin-top: 3px;
}

/* Nav */
.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__menu > li > a {
  font-family: var(--ff-display); font-weight: 600; font-size: .95rem;
  color: var(--cream-2); padding: 9px 14px; border-radius: 10px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__menu > li > a:hover,
.nav__menu > li > a.is-active { color: var(--cream); }
.nav__menu > li > a.is-active { background: rgba(237,231,220,.06); }
.nav__cta { margin-left: 8px; }
.nav__menu > li.nav__cta > a {
  background: var(--emerald); color: var(--emerald-ink);
  font-family: var(--ff-display); font-weight: 700;
}
.nav__menu > li.nav__cta > a:hover,
.nav__menu > li.nav__cta > a.is-active {
  background: #38d199; color: var(--emerald-ink);
}

.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2);
  background: transparent; border-radius: 12px; position: relative;
}
.nav__bars, .nav__bars::before, .nav__bars::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--cream); border-radius: 2px; transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__bars::before { transform: translate(-50%, -8px); }
.nav__bars::after  { transform: translate(-50%,  8px); }
.nav__toggle[aria-expanded="true"] .nav__bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__bars::before { transform: translate(-50%,-50%) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars::after  { transform: translate(-50%,-50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 104px) 0 clamp(32px, 4vw, 52px); }
.hero__glow {
  position: absolute; inset: -20% -10% auto auto; width: 70vw; height: 70vw; max-width: 820px; max-height: 820px;
  background: radial-gradient(circle at 70% 30%, rgba(47,192,138,.20), transparent 60%);
  filter: blur(10px); pointer-events: none; z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.1rem, 1.1rem + 3.6vw, 3.7rem);
  line-height: 1.14; letter-spacing: -.018em; color: var(--cream);
}
.hero__lead { margin-top: 24px; color: var(--cream-2); font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem); max-width: 54ch; }
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__proof {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 20px 48px;
  max-width: 640px;
}
.hero__proof li { font-size: .92rem; color: var(--muted); line-height: 1.45; }
.hero__proof strong { display: block; font-family: var(--ff-display); font-weight: 800; color: var(--cream); font-size: 1.4rem; letter-spacing: -.02em; }

.hero__media { position: relative; }
.hero__photo {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line-2); box-shadow: var(--shadow);
  aspect-ratio: 5 / 5.1;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--hero-overlay));
}
.hero__chip {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--chip-bg); backdrop-filter: blur(8px);
  border: 1px solid var(--line-2); border-radius: 999px;
  padding: 10px 16px 10px 14px; font-size: .85rem; font-weight: 600; color: var(--cream);
}
.hero__chip-light {
  width: 12px; height: 12px; border-radius: 50%; flex: none;
  background: var(--amber); box-shadow: 0 0 0 4px rgba(239,159,39,.18);
  animation: ampelPulse 3s var(--ease) infinite;
}
@keyframes ampelPulse {
  0%,100% { background: var(--red);   box-shadow: 0 0 0 4px rgba(226,75,74,.18); }
  33%     { background: var(--amber); box-shadow: 0 0 0 4px rgba(239,159,39,.18); }
  66%     { background: var(--green); box-shadow: 0 0 0 4px rgba(31,165,119,.18); }
}

/* ---------- Sektionen ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--lead { padding-top: clamp(40px, 5vw, 68px); }
.section--alt { background: var(--bg-deep); }
.section__head { max-width: 64ch; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .section__intro { margin-inline: auto; }

/* ---------- Drei Säulen ---------- */
.pillars { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px 30px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.pillar:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-hi); }
.pillar__num {
  font-family: var(--ff-display); font-weight: 800; font-size: .85rem;
  letter-spacing: .12em; color: var(--emerald);
  display: inline-block; padding-bottom: 16px;
}
.pillar h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.4rem; color: var(--cream); margin-bottom: 12px; }
.pillar p { color: var(--cream-2); font-size: 1rem; }
.pillar::before {
  content: ""; position: absolute; left: 30px; right: 30px; top: 0; height: 3px; border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--emerald), transparent);
  opacity: 0; transition: opacity .3s var(--ease);
}
.pillar:hover::before { opacity: 1; }

.formula {
  margin-top: 42px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px;
  padding: 26px 30px; border: 1px dashed var(--line-2); border-radius: var(--radius);
  background: rgba(47,192,138,.04); color: var(--cream-2); font-size: 1.02rem;
}
.formula strong { color: var(--cream); font-weight: 700; }
.formula__op, .formula__eq { color: var(--emerald); font-family: var(--ff-display); font-weight: 800; font-size: 1.3rem; }

/* ---------- Führungsampel ---------- */
.section--ampel { background:
  radial-gradient(900px 500px at 80% -10%, rgba(47,192,138,.10), transparent 60%), var(--bg); }
.ampel {
  margin-top: 56px; display: grid; grid-template-columns: 132px 1fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; max-width: 920px; margin-inline: auto;
}
.ampel__stack {
  display: flex; flex-direction: column; gap: 22px; align-items: center;
  background: var(--bg-deep); border: 1px solid var(--line);
  border-radius: 80px; padding: 26px 0; justify-self: center;
}
.ampel__light {
  --c: #555; width: 64px; height: 64px; border-radius: 50%; border: none; position: relative;
  background: var(--c); opacity: .26; filter: saturate(.6);
  transition: opacity .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ampel__light.is-red   { --c: var(--red); }
.ampel__light.is-amber { --c: var(--amber); }
.ampel__light.is-green { --c: var(--green); }
.ampel__light.is-active {
  opacity: 1; filter: none; transform: scale(1.06);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--c) 22%, transparent), 0 0 34px -2px var(--c);
}
.ampel__light:hover { opacity: .85; }

.ampel__panels { position: relative; min-height: 230px; }
.ampel__panel { display: none; }
.ampel__panel.is-active { display: block; animation: panelIn .45s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.ampel__status {
  font-family: var(--ff-display); font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  font-size: .82rem; margin-bottom: 12px;
}
.ampel__status.is-red { color: var(--red); }
.ampel__status.is-amber { color: var(--amber); }
.ampel__status.is-green { color: var(--green); }
.ampel__panel h3 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.5rem, 1rem + 1.6vw, 2.1rem); color: var(--cream); margin-bottom: 14px; letter-spacing: -.02em; }
.ampel__panel p { color: var(--cream-2); max-width: 52ch; }
.ampel__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.ampel__tags li {
  font-size: .85rem; font-weight: 600; color: var(--cream);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 15px;
  background: rgba(237,231,220,.04);
}

/* ---------- Tools ---------- */
.tools__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.checklist { margin-top: 26px; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 34px; color: var(--cream-2); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--emerald); opacity: .16;
}
.checklist li::after {
  content: ""; position: absolute; left: 6px; top: 8px; width: 8px; height: 5px;
  border-left: 2px solid var(--emerald); border-bottom: 2px solid var(--emerald);
  transform: rotate(-45deg);
}
.tools__actions { margin-top: 30px; display: flex; align-items: center; flex-wrap: wrap; gap: 16px 20px; }
.tools__note { color: var(--muted); font-size: .9rem; }

.demo { background: var(--bg-deep); border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.demo__bar { display: flex; gap: 8px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.demo__bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.demo__bar span:nth-child(1) { background: var(--red); opacity: .8; }
.demo__bar span:nth-child(2) { background: var(--amber); opacity: .8; }
.demo__bar span:nth-child(3) { background: var(--green); opacity: .8; }
.demo__body { padding: 26px 26px 28px; }
.demo__label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-family: var(--ff-display); font-weight: 700; }
.demo__input { margin-top: 8px; font-size: 1.12rem; font-weight: 600; color: var(--cream); font-family: var(--ff-display); }
.demo__divider { display: flex; align-items: center; gap: 14px; margin: 22px 0 18px; color: var(--muted); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.demo__divider::before, .demo__divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.demo__out { display: grid; gap: 14px; }
.demo__out li { display: grid; grid-template-columns: 108px 1fr; gap: 14px; align-items: start; color: var(--cream-2); font-size: .98rem; }
.demo__k {
  width: 100%; box-sizing: border-box; text-align: center;
  font-family: var(--ff-display); font-weight: 700; font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase; padding: 4px 6px; border-radius: 7px; white-space: nowrap; color: var(--pill-ink);
}
.demo__k.is-red { background: var(--red); }
.demo__k.is-amber { background: var(--amber); }
.demo__k.is-green { background: var(--green); }
.demo__result { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--cream); font-weight: 500; font-size: .98rem; }

/* ---------- Ablauf / Phasen ---------- */
.phases { list-style: none; padding: 0; margin-top: 52px; display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 22px; align-items: start; }
.phase { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; transition: border-color .3s var(--ease); }
.phase:hover { border-color: var(--line-2); }
.phase__head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.phase__num { font-family: var(--ff-display); font-weight: 800; font-size: 1.05rem; color: var(--emerald-ink); background: var(--emerald); width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.phase__head h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.22rem; color: var(--cream); }
.phase ul { display: grid; gap: 12px; }
.phase ul li { position: relative; padding-left: 22px; color: var(--cream-2); font-size: .98rem; }
.phase ul li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); }
.phase__split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.phase__day { font-family: var(--ff-display); font-weight: 700; color: var(--cream); font-size: .95rem; margin-bottom: 14px; }
.phase__meta { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; letter-spacing: .04em; }

/* ---------- ROI ---------- */
.roi { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.roi__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 30px 32px; text-align: center; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.roi__card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.roi__value { font-family: var(--ff-display); font-weight: 800; letter-spacing: -.02em; font-size: clamp(2.1rem, 1.2rem + 2.6vw, 2.9rem); color: var(--emerald); line-height: 1; }
.roi__card h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; color: var(--cream); margin: 16px 0 14px; }
.roi__card > p:not(.roi__src):not(.roi__value) { color: var(--cream-2); font-size: .98rem; }
.roi__src { margin-top: 16px; color: var(--muted); font-size: .82rem; font-style: italic; }
.roi__disclaimer { margin-top: 26px; text-align: center; color: var(--muted); font-size: .85rem; }

/* ---------- Split (Warum / Unterschied) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 80px); }
.split__col .section__title { font-size: clamp(1.5rem, 1rem + 1.8vw, 2.2rem); }
.reasons { margin-top: 28px; display: grid; gap: 18px; }
.reasons li { position: relative; padding-left: 30px; color: var(--cream-2); font-size: 1.05rem; line-height: 1.55; }
.reasons li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 14px;
  border-radius: 4px; background: var(--emerald); opacity: .9;
  clip-path: polygon(14% 44%, 0 58%, 43% 100%, 100% 22%, 86% 8%, 43% 72%);
}

/* ---------- Person ---------- */
.section--person { background: var(--bg-deep); }
.person { display: grid; grid-template-columns: 320px 1fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.person__card { text-align: center; background: none; border: none; padding: 0; }
.person__photo { width: 208px; height: 260px; border-radius: 0; object-fit: cover; object-position: center; margin: 0 auto 22px; border: none; background: var(--surface); box-shadow: none; }
.person__name { font-family: var(--ff-display); font-weight: 800; font-size: 1.45rem; color: var(--cream); }
.person__role { color: var(--emerald); font-weight: 600; margin-top: 4px; }
.person__quote {
  font-family: var(--ff-display); font-weight: 700; font-size: clamp(1.4rem, 1rem + 1.6vw, 2.05rem);
  line-height: 1.25; letter-spacing: -.01em; color: var(--cream); margin: 6px 0 24px; max-width: 26ch;
}
.person__copy p { color: var(--cream-2); margin-bottom: 16px; max-width: 56ch; }
.person__copy .btn { margin-top: 12px; }

/* ---------- Kontakt ---------- */
.section--contact { background:
  radial-gradient(800px 480px at 15% 0%, rgba(47,192,138,.12), transparent 55%), var(--bg); }
.contact { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
.contact__details { margin-top: 34px; display: grid; gap: 4px; }
.contact__details li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: baseline; padding: 16px 0; border-top: 1px solid var(--line); }
.contact__details li:last-child { border-bottom: 1px solid var(--line); }
.contact__k { font-family: var(--ff-display); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--emerald); }
.contact__details a, .contact__details span { color: var(--cream); font-size: 1.08rem; font-weight: 500; }
.contact__details a:hover { color: var(--emerald); }

/* Formular */
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 38px); box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label, .check { font-size: .9rem; }
.field label { font-family: var(--ff-display); font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.field input, .field textarea {
  font: inherit; font-size: 1rem; color: var(--cream);
  background: var(--bg-deep); border: 1px solid var(--line-2); border-radius: 11px;
  padding: 13px 15px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(47,192,138,.18); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--red); box-shadow: 0 0 0 3px rgba(226,75,74,.16); }
.check { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; color: var(--cream-2); margin: 6px 0 22px; line-height: 1.5; }
.check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--emerald); flex: none; }
.check a { color: var(--emerald); text-decoration: underline; text-underline-offset: 2px; }
.form__hint { margin-top: 16px; font-size: .92rem; padding: 12px 16px; border-radius: 11px; }
.form__hint.is-error { color: #ffd9d9; background: rgba(226,75,74,.14); border: 1px solid rgba(226,75,74,.4); }
.form__hint.is-ok { color: #c9f5e3; background: rgba(47,192,138,.14); border: 1px solid rgba(47,192,138,.4); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line); }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding: clamp(48px, 6vw, 72px) 0 40px; }
.brand--footer .brand__mark { width: 34px; height: 28px; }
.footer__tag { margin-top: 20px; color: var(--muted); font-size: .95rem; line-height: 1.6; }
.footer__navtitle { font-family: var(--ff-display); font-weight: 700; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--emerald); margin-bottom: 18px; }
.footer__nav, .footer__contact { display: grid; gap: 12px; align-content: start; }
.footer__nav a, .footer__contact a, .footer__contact span { color: var(--cream-2); font-size: .98rem; transition: color .2s var(--ease); }
.footer__nav a:hover, .footer__contact a:hover { color: var(--emerald); }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 24px 0 34px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: var(--emerald); }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-reveal-delay="1"] { transition-delay: .09s; }
.reveal[data-reveal-delay="2"] { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Legal-Seiten ---------- */
.legal { padding: clamp(48px, 7vw, 90px) 0 clamp(60px, 8vw, 100px); }
.legal__inner { max-width: 760px; }
.legal h1 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); letter-spacing: -.02em; color: var(--cream); margin-bottom: 10px; }
.legal__lead { color: var(--muted); margin-bottom: 40px; }
.legal h2 { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; color: var(--cream); margin: 40px 0 14px; }
.legal h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; color: var(--cream); margin: 26px 0 10px; }
.legal p, .legal li { color: var(--cream-2); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; margin-bottom: 12px; }
.legal a { color: var(--emerald); text-decoration: underline; text-underline-offset: 2px; }
.legal .badge { display: inline-block; background: rgba(239,159,39,.16); border: 1px solid rgba(239,159,39,.4); color: var(--amber); font-family: var(--ff-display); font-weight: 700; font-size: .8rem; letter-spacing: .06em; padding: 6px 14px; border-radius: 999px; margin-bottom: 24px; }
.backlink { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-family: var(--ff-display); font-weight: 600; color: var(--emerald); }
.backlink:hover { gap: 12px; }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 440px; }
  .tools__grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .phases { grid-template-columns: 1fr; }
  .person { grid-template-columns: 1fr; }
  .person__card { max-width: 320px; margin-inline: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__toggle { display: block; z-index: 110; }
  .nav__menu {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--bg-deep); border-bottom: 1px solid var(--line);
    padding: 14px var(--gut) 22px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav__menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__menu > li > a { display: block; padding: 13px 12px; font-size: 1.05rem; border-radius: 10px; }
  .nav__cta { margin: 8px 0 0; }
  .nav__cta a { display: block; }

  .pillars, .roi { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .hero__proof { grid-template-columns: 1fr; gap: 14px; }
  .hero__proof li { display: flex; align-items: baseline; gap: 12px; }
  .hero__proof strong { display: inline; font-size: 1.15rem; }
  .ampel { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .ampel__stack { flex-direction: row; border-radius: 80px; padding: 16px 22px; }
  .ampel__panel p, .person__quote { margin-inline: auto; }
  .ampel__tags { justify-content: center; }
  .phase__split { grid-template-columns: 1fr; gap: 18px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .contact__details li { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 380px) {
  body { font-size: 16px; }
  .btn { padding: 13px 20px; }
}

/* Mobile-Fix: lange E-Mail/Überschriften umbrechen, kein Rechts-Überlauf */
.legal p, .legal li, .legal a, .contact__details a, .footer__contact a { overflow-wrap: anywhere; }
