/* ============================================================
   ProzessWerk GbR — Designsystem
   Premium durch Reduktion: Typografie, Weißraum, Rhythmus.
   ============================================================ */

/* ---------- Fonts (self-hosted, SIL OFL) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-tight-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-variable.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --navy:        #1c2a4d;
  --navy-deep:   #15203b;
  --navy-soft:   #243457;
  --orange:      #e6531d;
  --orange-soft: #f06a38;
  --taupe:       #9b9088;
  --taupe-soft:  #c9c2ba;

  --bg:          #f7f5f2;
  --bg-alt:      #efece7;
  --white:       #ffffff;

  --ink:         #1c2a4d;
  --text:        #4c515d;
  --muted:       #757a85;
  --line:        #e4e0d9;
  --line-dark:   rgba(255, 255, 255, 0.12);

  --font-display: 'Inter Tight', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* fluid type scale */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1.06rem, 1.00rem + 0.30vw, 1.25rem);
  --step-1:  clamp(1.27rem, 1.16rem + 0.55vw, 1.69rem);
  --step-2:  clamp(1.53rem, 1.33rem + 0.95vw, 2.28rem);
  --step-3:  clamp(1.83rem, 1.52rem + 1.55vw, 3.08rem);
  --step-4:  clamp(2.20rem, 1.71rem + 2.45vw, 4.16rem);
  --step-5:  clamp(2.35rem, 1.7rem + 3.1vw, 5.3rem);

  --maxw: 1160px;
  --gutter: clamp(1.25rem, 0.8rem + 2.2vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(28, 42, 77, 0.04), 0 2px 8px rgba(28, 42, 77, 0.05);
  --shadow-md: 0 4px 14px rgba(28, 42, 77, 0.07), 0 14px 40px rgba(28, 42, 77, 0.08);
  --shadow-lg: 0 10px 30px rgba(28, 42, 77, 0.10), 0 30px 70px rgba(28, 42, 77, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv05' 1, 'cv08' 1, 'ss01' 1;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }
.section { padding-block: clamp(4rem, 2.5rem + 6vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.eyebrow--center::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
}
h2 { font-size: var(--step-3); }
.h2-soft { color: var(--muted); }
h3 { font-size: var(--step-1); letter-spacing: -0.015em; }
p { text-wrap: pretty; }

.lead {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
}

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1.1rem; color: var(--muted); font-size: var(--step-1); line-height: 1.5; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--orange); --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 0.95em 1.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step-0);
  line-height: 1;
  color: var(--_fg);
  background: var(--_bg);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background-color 0.25s var(--ease);
  box-shadow: 0 6px 18px rgba(230, 83, 29, 0.25);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(230, 83, 29, 0.34); background: var(--orange-soft); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--ghost {
  --_bg: transparent; --_fg: var(--ink);
  border-color: var(--line);
  box-shadow: none;
  background: var(--white);
}
.btn--ghost:hover { background: var(--white); border-color: var(--navy); box-shadow: var(--shadow-sm); }

.btn--light {
  --_bg: #fff; --_fg: var(--navy);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.btn--light:hover { background: #fff; box-shadow: 0 10px 28px rgba(0,0,0,0.24); }

.btn--ghost-light {
  --_bg: transparent; --_fg: #fff;
  border-color: var(--line-dark);
  box-shadow: none;
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1rem;
  transition: padding-block 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(247, 245, 242, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(28,42,77,0.06);
}
.site-header.is-scrolled .site-header__inner { padding-block: 0.7rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand__icon { height: 40px; width: 40px; flex: none; border-radius: 11px; box-shadow: var(--shadow-sm); object-fit: cover; display: block; transition: height 0.4s var(--ease), width 0.4s var(--ease); }
.brand__text { font-family: var(--font-display); font-weight: 600; font-size: 1.34rem; letter-spacing: -0.025em; color: var(--ink); line-height: 1; display: inline-flex; align-items: baseline; gap: 0.32rem; }
.brand__text small { font-size: 0.58em; font-weight: 600; color: var(--taupe); letter-spacing: 0.05em; }
.site-header.is-scrolled .brand__icon { height: 34px; width: 34px; }
@media (max-width: 420px) { .brand__text { font-size: 1.18rem; } }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__links { display: flex; gap: 1.9rem; list-style: none; padding: 0; }
.nav__links a {
  font-size: 0.98rem; font-weight: 500; color: var(--text);
  position: relative; padding-block: 0.3rem;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--orange); transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }

.nav-toggle { display: none; }

/* mobile nav */
@media (max-width: 860px) {
  .nav__links, .nav .btn { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    width: 44px; height: 44px; align-items: center; justify-content: center;
    background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    position: fixed; inset: 0; z-index: 90;
    background: var(--bg);
    display: flex; flex-direction: column; justify-content: center;
    padding: var(--gutter);
    gap: 0.5rem;
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease);
    visibility: hidden;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .mobile-menu { transform: translateY(0); visibility: visible; }
  .mobile-menu a:not(.btn) {
    font-family: var(--font-display);
    font-size: var(--step-2); font-weight: 600; color: var(--ink);
    padding-block: 0.6rem; border-bottom: 1px solid var(--line);
  }
  .mobile-menu .btn { margin-top: 1.8rem; align-self: stretch; }
}
@media (min-width: 861px) { .mobile-menu { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-top: clamp(1.25rem, 0.6rem + 2vw, 2.75rem); padding-bottom: clamp(3rem, 2rem + 4vw, 6rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.32fr 0.68fr;
  gap: clamp(1.5rem, 0.5rem + 3.5vw, 3.75rem); align-items: center;
}
.hero__kicker { margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.05rem, 1.4rem + 3.4vw, 4.6rem); margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--orange); }
.hero__sub { font-size: var(--step-1); line-height: 1.5; color: var(--text); max-width: 34rem; margin-bottom: 2.2rem; }
.hero .btn-row { margin-bottom: 2.4rem; }

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.trust-strip li {
  list-style: none; display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--step--1); color: var(--muted); font-weight: 500;
}
.trust-strip svg { flex: none; color: var(--orange); }

/* hero visual — Logo-Karte (echtes Original-Icon) */
.hero__visual { position: relative; }
.hero-card {
  position: relative; background: #fff;
  border-radius: 28px; padding: clamp(1.6rem, 1rem + 2.6vw, 3rem);
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-card { animation: cardIn 0.9s var(--ease) both; }
}
@keyframes cardIn { from { opacity: 0; transform: translateY(18px) scale(0.96); } to { opacity: 1; transform: none; } }
.hero-card__img { width: 100%; height: auto; display: block; }
.hero-logo { overflow: visible; }
/* Logo baut sich auf: die drei Stränge zeichnen sich gestaffelt von links (Knoten) nach rechts (ins P) */
@media (prefers-reduced-motion: no-preference) {
  .hero-logo .lg-stream { clip-path: inset(0 100% 0 0); animation: streamDraw 0.85s var(--ease) forwards; }
  .hero-logo .lg-navy   { animation-delay: 0.30s; }
  .hero-logo .lg-orange { animation-delay: 0.58s; }
  .hero-logo .lg-taupe  { animation-delay: 0.80s; }
}
@keyframes streamDraw { to { clip-path: inset(0 0 0 0); } }
.hero-blob {
  position: absolute; inset: -12%;
  background: radial-gradient(circle at 35% 30%, rgba(230,83,29,0.18), transparent 60%),
              radial-gradient(circle at 70% 75%, rgba(28,42,77,0.10), transparent 55%);
  filter: blur(16px); z-index: -1; border-radius: 50%;
}

/* Typewriter im Hero — Wort bleibt fest auf einer eigenen Zeile */
.typed-wrap { color: var(--ink); display: block; white-space: nowrap; }
.typed {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-weight: 600; font-size: 0.8em; letter-spacing: -0.04em;
  color: var(--orange);
}
.caret {
  display: inline-block; width: 0.055em; height: 0.92em;
  background: var(--orange); margin-left: 0.04em; vertical-align: -0.07em;
  border-radius: 1px;
  animation: caretBlink 1.05s steps(1, end) infinite;
}
@keyframes caretBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

/* node-line draw animation */
.pline { fill: none; stroke-width: 11; stroke-linecap: round; stroke-linejoin: round; }
.pnode { transform-box: fill-box; transform-origin: center; }
@media (prefers-reduced-motion: no-preference) {
  .pline {
    stroke-dasharray: var(--len, 300);
    stroke-dashoffset: var(--len, 300);
    animation: draw 1.4s var(--ease) forwards;
    animation-delay: var(--d, 0s);
  }
  .pnode { opacity: 0; animation: pop 0.5s var(--ease) forwards; animation-delay: var(--nd, 0s); }
  .pletter { opacity: 0; animation: fadeUp 0.9s var(--ease) forwards; animation-delay: 0.4s; }
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pop { 0% { opacity: 0; transform: scale(0.4); } 60% { transform: scale(1.12); } 100% { opacity: 1; transform: scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .reveal.is-in { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: 0.08s; }
  .reveal[data-delay="2"] { transition-delay: 0.16s; }
  .reveal[data-delay="3"] { transition-delay: 0.24s; }
}

/* ============================================================
   PROBLEM ("Kennen Sie das?")
   ============================================================ */
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}
.problem-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem-card__num {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--orange); letter-spacing: 0.05em; margin-bottom: 1.1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.problem-card__num::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.problem-card p { font-size: var(--step-1); line-height: 1.4; color: var(--ink); font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; }
.problem-closer { margin-top: 2.5rem; font-size: var(--step-1); color: var(--text); }
.problem-closer strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   LEISTUNGEN ("Was wir tun")
   ============================================================ */
.section--navy { background: var(--navy); color: rgba(255,255,255,0.78); }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .section-head p { color: rgba(255,255,255,0.62); }
.section--navy .eyebrow { color: var(--orange-soft); }
.section--navy .eyebrow::before { background: var(--orange-soft); }

/* Orange-Schimmer (wie bei „Unser Versprechen") */
#leistungen { position: relative; overflow: hidden; }
#leistungen::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 85% 15%, rgba(230, 83, 29, 0.16), transparent 60%);
  pointer-events: none;
}
#leistungen > .wrap { position: relative; z-index: 1; }

.service-list { display: grid; gap: 0; }
.service-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(1rem, 0.5rem + 2vw, 2.5rem);
  padding-block: clamp(1.5rem, 1rem + 1.5vw, 2.3rem);
  border-top: 1px solid var(--line-dark);
}
.service-row:last-child { border-bottom: 1px solid var(--line-dark); }
.service-row__no {
  font-family: var(--font-display); font-size: var(--step--1); font-weight: 600;
  color: var(--orange-soft); letter-spacing: 0.1em;
}
.service-row__body h3 { margin-bottom: 0.4rem; }
.service-row__body p { color: rgba(255,255,255,0.62); font-size: var(--step-0); max-width: 44rem; }
.service-row__icon { color: rgba(255,255,255,0.5); transition: transform 0.4s var(--ease), color 0.3s var(--ease); }
.service-row:hover .service-row__icon { color: var(--orange-soft); transform: translateX(6px); }
.service-note {
  margin-top: 2.6rem; font-size: var(--step-1); color: rgba(255,255,255,0.85);
  font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; line-height: 1.45;
  max-width: 42rem;
}
.service-note .hl { color: var(--orange-soft); }
@media (max-width: 620px) {
  .service-row { grid-template-columns: auto 1fr; }
  .service-row__icon { display: none; }
}

/* ============================================================
   ABLAUF (3 Stufen)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.step {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step--highlight { border-color: rgba(230,83,29,0.35); box-shadow: 0 0 0 1px rgba(230,83,29,0.2), var(--shadow-md); }
.step__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--step--1); font-weight: 600; color: var(--muted);
  margin-bottom: 1.4rem;
}
.step__no {
  width: 2.4rem; height: 2.4rem; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
}
.step--highlight .step__no { background: var(--orange); }
.step h3 { margin-bottom: 0.8rem; }
.step p { font-size: var(--step-0); color: var(--text); margin-bottom: 1.4rem; }
.step__meta {
  margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--line);
  font-size: var(--step--1); color: var(--muted); font-style: italic;
}
.step__tag {
  position: absolute; top: 1.6rem; right: 1.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--orange); background: rgba(230,83,29,0.10); padding: 0.3em 0.7em; border-radius: 999px;
}
.steps-closer {
  margin-top: 2.5rem; text-align: center; font-size: var(--step-1);
  color: var(--ink); font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   GRÜNDER (Die zwei Gesichter)
   ============================================================ */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.founder {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.founder:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.founder__photo {
  aspect-ratio: 4 / 3; background: var(--navy);
  position: relative; display: grid; place-items: center; overflow: hidden;
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__placeholder {
  display: grid; place-items: center; gap: 0.8rem; color: rgba(255,255,255,0.5);
  text-align: center; padding: 1rem;
}
.founder__placeholder svg { opacity: 0.5; }
.founder__placeholder span { font-size: 0.8rem; letter-spacing: 0.04em; }
.founder__body { padding: 1.8rem; }
.founder__role { font-size: var(--step--1); font-weight: 600; color: var(--orange); letter-spacing: 0.04em; margin-bottom: 0.4rem; text-transform: uppercase; }
.founder__body h3 { font-size: var(--step-2); margin-bottom: 0.9rem; }
.founder__body p { color: var(--text); font-size: var(--step-0); }
.founder__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.3rem; }
.founder__tags span { font-size: 0.8rem; font-weight: 500; color: var(--navy); background: var(--bg-alt); border: 1px solid var(--line); padding: 0.35em 0.8em; border-radius: 999px; }
.founders-note {
  margin-top: 2rem; text-align: center; font-size: var(--step-1);
  color: var(--text); max-width: 44rem; margin-inline: auto; line-height: 1.5;
}
.founders-note strong { color: var(--ink); font-weight: 600; }
@media (max-width: 700px) { .founders { grid-template-columns: 1fr; } }

/* ============================================================
   VERSPRECHEN (Risk reversal)
   ============================================================ */
.promise { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.promise::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 85% 15%, rgba(230,83,29,0.16), transparent 60%);
  pointer-events: none;
}
.promise__inner { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.promise h2 { color: #fff; font-size: var(--step-3); margin-bottom: 1.3rem; }
.promise__lead { font-size: var(--step-1); line-height: 1.5; color: rgba(255,255,255,0.82); }
.promise__lead strong { color: #fff; }
.promise-points { display: grid; gap: 1rem; }
.promise-point {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 1.3rem 1.4rem;
}
.promise-point__ic { flex: none; width: 2.6rem; height: 2.6rem; border-radius: 50%; background: rgba(230,83,29,0.18); color: var(--orange-soft); display: grid; place-items: center; }
.promise-point h3 { color: #fff; font-size: var(--step-0); margin-bottom: 0.2rem; }
.promise-point p { font-size: var(--step--1); color: rgba(255,255,255,0.62); }
@media (max-width: 800px) { .promise__inner { grid-template-columns: 1fr; } }

/* ============================================================
   PILOT / TESTIMONIAL (ehrlicher Platzhalter)
   ============================================================ */
.pilot { text-align: center; }
.pilot__card {
  background: var(--white); border: 1px dashed var(--taupe-soft); border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 1.5rem + 3vw, 3.8rem); max-width: 50rem; margin-inline: auto;
  box-shadow: var(--shadow-sm);
}
.pilot__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--step--1); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 1.4rem;
}
.pilot__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); position: relative; }
@media (prefers-reduced-motion: no-preference) {
  .pilot__badge .dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--orange); animation: ping 2.2s var(--ease) infinite; }
}
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }
.pilot__card h2 { font-size: var(--step-2); margin-bottom: 1rem; }
.pilot__card p { font-size: var(--step-1); color: var(--text); line-height: 1.5; max-width: 40rem; margin-inline: auto; }

/* ============================================================
   FIT (Für wen — und für wen nicht)
   ============================================================ */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.fit-col {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.9rem; box-shadow: var(--shadow-sm);
}
.fit-col--yes { border-top: 4px solid var(--orange); }
.fit-col--no { border-top: 4px solid var(--taupe); background: var(--bg-alt); }
.fit-col h3 { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.4rem; font-size: var(--step-1); }
.fit-col h3 .ic { width: 2rem; height: 2rem; flex: none; border-radius: 50%; display: grid; place-items: center; }
.fit-col--yes .ic { background: rgba(230,83,29,0.12); color: var(--orange); }
.fit-col--no .ic { background: rgba(155,144,136,0.18); color: var(--taupe); }
.fit-list { list-style: none; padding: 0; display: grid; gap: 0.9rem; }
.fit-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: var(--step-0); color: var(--text); }
.fit-list li svg { flex: none; margin-top: 0.25em; }
.fit-col--yes .fit-list li svg { color: var(--orange); }
.fit-col--no .fit-list li svg { color: var(--taupe); }
@media (max-width: 700px) { .fit { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 50rem; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0.25rem;
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 500;
  color: var(--ink); letter-spacing: -0.01em;
}
.faq-q__ic { flex: none; width: 1.6rem; height: 1.6rem; position: relative; }
.faq-q__ic::before, .faq-q__ic::after {
  content: ""; position: absolute; background: var(--orange); border-radius: 2px;
  top: 50%; left: 50%; transition: transform 0.35s var(--ease);
}
.faq-q__ic::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.faq-q__ic::after  { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-q__ic::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { overflow: hidden; height: 0; transition: height 0.4s var(--ease); }
.faq-a__inner { padding: 0 0.25rem 1.6rem; color: var(--text); font-size: var(--step-0); max-width: 44rem; }

/* ============================================================
   ZEITFRESSER-CHECK (Modal)
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: var(--gutter);
}
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(21, 32, 59, 0.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal__dialog {
  position: relative; background: var(--bg); border-radius: var(--radius-lg);
  width: min(100%, 40rem); max-height: min(90vh, 720px); overflow: hidden;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column;
  animation: dialogIn 0.45s var(--ease);
}
@keyframes dialogIn { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__head { padding: 1.4rem var(--gutter) 1.1rem; border-bottom: 1px solid var(--line); }
.modal__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.9rem; }
.modal__eyebrow { font-size: var(--step--1); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); }
.modal__close { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--ink); display: grid; place-items: center; transition: background 0.2s, transform 0.2s; }
.modal__close:hover { background: var(--bg-alt); transform: rotate(90deg); }
.progress { height: 5px; background: var(--line); border-radius: 999px; overflow: hidden; }
.progress__bar { height: 100%; width: 0%; background: var(--orange); border-radius: 999px; transition: width 0.45s var(--ease); }
.progress__label { display: flex; justify-content: space-between; margin-top: 0.6rem; font-size: 0.78rem; color: var(--muted); }

.modal__body { padding: clamp(1.5rem, 1rem + 2vw, 2.4rem) var(--gutter); overflow-y: auto; }
.q-step { display: none; animation: stepIn 0.4s var(--ease); }
.q-step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
.q-step h3 { font-size: var(--step-2); margin-bottom: 0.4rem; }
.q-step__hint { color: var(--muted); font-size: var(--step--1); margin-bottom: 1.4rem; }
.options { display: grid; gap: 0.7rem; }
.option {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.1rem; background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--radius); font-size: var(--step-0); color: var(--ink);
  text-align: left; transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.option:hover { border-color: var(--taupe); transform: translateX(2px); }
.option.is-selected { border-color: var(--orange); background: rgba(230,83,29,0.06); }
.option__box { flex: none; width: 1.4rem; height: 1.4rem; border-radius: 6px; border: 2px solid var(--taupe-soft); display: grid; place-items: center; transition: border-color 0.2s, background 0.2s; }
.option.is-selected .option__box { background: var(--orange); border-color: var(--orange); }
.option__box svg { opacity: 0; transition: opacity 0.2s; color: #fff; }
.option.is-selected .option__box svg { opacity: 1; }

.modal__foot { padding: 1.1rem var(--gutter) 1.4rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: var(--bg); }
.btn-text { background: none; border: none; color: var(--muted); font-weight: 500; padding: 0.6em 0.4em; transition: color 0.2s; }
.btn-text:hover { color: var(--ink); }
.btn-text[disabled] { opacity: 0; pointer-events: none; }

/* result */
.q-result { display: none; }
.q-result.is-active { display: block; animation: stepIn 0.5s var(--ease); }
.q-result h3 { font-size: var(--step-2); margin-bottom: 1rem; }
.result-tags { display: grid; gap: 0.7rem; margin: 1.4rem 0 1.8rem; }
.result-tag {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--orange);
  border-radius: var(--radius); padding: 1.1rem 1.2rem;
}
.result-tag strong { color: var(--ink); font-family: var(--font-display); display: block; margin-bottom: 0.15rem; }
.result-tag span { font-size: var(--step--1); color: var(--muted); }
.result-disclaimer { font-size: 0.82rem; color: var(--muted); margin-top: 1.2rem; font-style: italic; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
.contact__aside h2 { font-size: var(--step-3); margin-bottom: 1.2rem; }
.contact__aside p { color: var(--text); font-size: var(--step-1); line-height: 1.5; margin-bottom: 2rem; max-width: 30rem; }
.contact-cards { display: grid; gap: 0.9rem; }
.contact-card {
  display: flex; gap: 1rem; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.2rem; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-card:hover { transform: translateX(3px); box-shadow: var(--shadow-sm); }
.contact-card__ic { flex: none; width: 2.8rem; height: 2.8rem; border-radius: 12px; background: var(--bg-alt); color: var(--orange); display: grid; place-items: center; }
.contact-card__t { display: block; font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.15rem; }
.contact-card__v { display: block; font-family: var(--font-display); font-weight: 500; color: var(--ink); font-size: var(--step-0); line-height: 1.25; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 1rem + 2vw, 2.4rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.1rem; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.field label .req { color: var(--orange); }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: var(--step-0); color: var(--ink);
  padding: 0.8em 0.95em; background: var(--bg); border: 1.5px solid var(--line); border-radius: 10px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 4px rgba(230,83,29,0.10); }
.field textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; margin: 0.4rem 0 1.3rem; font-size: 0.85rem; color: var(--muted); }
.form-consent input { margin-top: 0.2em; accent-color: var(--orange); width: 1.1rem; height: 1.1rem; flex: none; }
.form-consent a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.form-card .btn { width: 100%; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 1rem; }
.form-success { display: none; text-align: center; padding: 1.5rem 0; }
.form-success.is-visible { display: block; animation: stepIn 0.5s var(--ease); }
.form-success__ic { width: 4rem; height: 4rem; margin: 0 auto 1.2rem; border-radius: 50%; background: rgba(230,83,29,0.12); color: var(--orange); display: grid; place-items: center; }
.form-success h3 { font-size: var(--step-2); margin-bottom: 0.6rem; }
@media (max-width: 800px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .field--row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand { margin-bottom: 1.2rem; }
.footer-brand .brand__text { color: #fff; }
.footer-brand p { max-width: 26rem; font-size: var(--step--1); line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { font-size: var(--step--1); color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--orange-soft); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: 0.8rem; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* hero responsive */
@media (max-width: 900px) {
  .hero { padding-top: 0.5rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__visual { order: -1; max-width: 300px; margin-inline: auto; }
  .hero h1 { margin-bottom: 1.2rem; }
}
@media (max-width: 560px) {
  .hero__visual { max-width: 230px; }
  .hero .btn-row { width: 100%; gap: 0.7rem; }
  .hero .btn-row .btn { width: 100%; }
  .hero__sub { margin-bottom: 1.8rem; }
}

/* anchor offset for sticky header */
section[id] { scroll-margin-top: 88px; }

/* utility */
.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; }
.text-center { text-align: center; }
