/* Gilroy — Original-Typo der lizenzierten Helion-Vorlage, selbst gehostet (DSGVO). */
@font-face { font-family: "Gilroy"; src: url("/assets/fonts/Gilroy-Regular.woff2") format("woff2"),
  url("/assets/fonts/Gilroy-Regular.woff") format("woff"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Gilroy"; src: url("/assets/fonts/Gilroy-Medium.woff2") format("woff2"),
  url("/assets/fonts/Gilroy-Medium.woff") format("woff"); font-weight: 500; font-style: normal; font-display: swap; }

/* =========================================================================
   km-digitalagentur.de — statische Umsetzung des Helion-Designs (GetLayers)
   Tokens 1:1 aus der Vorlage (globals.css der Quellfassung).
   Fonts: System-Stack (selbst gehostet gibt es nichts nachzuladen — DSGVO).
   ========================================================================= */

:root {
  --background: #02040d;
  --foreground: #ffffff;
  --surface-deep: #030716;
  --surface-panel: #060c22;

  --accent-700: #12266b;
  --accent-600: #2340b8;
  --accent-500: #3a5cff;
  --accent-400: #6d8bff;
  --accent-300: #9fb8ff;
  --accent-200: #d6e2ff;

  --signal-glow: #ff5fa8;

  --container-max: 88.25rem;
  --gutter: 2.5rem;

  --haze: rgba(200, 214, 255, 0.2);
  --gradient-cta: linear-gradient(107deg, #4977ff 0%, #331574 51.4%, #000315 100%);
  --gradient-icon: linear-gradient(120deg, #4977ff 0%, #d2bdff 100%);
  --gradient-rule: linear-gradient(90deg, #4564e5 0%, rgba(69, 100, 229, 0) 100%);
  --gradient-rule-alt: linear-gradient(90deg, rgba(207, 186, 255, 0) 0%, #cfbaff 100%);
  --glass: rgba(0, 0, 0, 0.8);
  --glass-border: rgba(255, 255, 255, 0.2);

  --font-sans: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent-500); outline-offset: 2px; }

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

/* ------------------------------------------------------------------ Szene */

#scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.scene-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.16) 24%, rgba(0,0,0,0) 42%,
      rgba(0,0,0,0) 58%, rgba(0,0,0,.14) 78%, rgba(0,0,0,.42) 100%),
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 58%,
      rgba(0,0,0,.38) 82%, rgba(0,0,0,.72) 100%);
}

main, .site-footer, .site-nav { position: relative; z-index: 2; }

/* ------------------------------------------------------------------- Nav */

.site-nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 80;
  background: rgb(2 4 13 / .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgb(255 255 255 / .07);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 76px;
}

.wordmark {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: .08em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-links a {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  transition: color .15s ease, background-color .15s ease;
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 50px;
  background-image: var(--gradient-cta);
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 12px 36px -10px rgba(18,38,107,.4), inset 0 1px 0 rgba(159,184,255,.25);
  transition: transform .15s ease;
}

.nav-cta:hover { transform: scale(1.04); }

/* ------------------------------------------------------------------ Hero */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 140px var(--gutter) 80px;
  text-align: center;
}

.masthead {
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.06;
  letter-spacing: .01em;
}

.masthead .line { display: block; }
.masthead .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(.35em);
  transition: opacity .7s cubic-bezier(.2,0,0,1), transform .7s cubic-bezier(.2,0,0,1);
  transition-delay: var(--d, 0ms);
}
.masthead.in .char { opacity: 1; transform: translateY(0); }

.hero-icon { position: relative; width: 124px; height: 124px; }
.hero-icon .halo {
  position: absolute; inset: -80px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  filter: blur(40px);
}
.hero-icon .ring {
  position: absolute; inset: -80px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
}
.hero-icon svg { position: relative; width: 100%; height: 100%; }

.subtitle {
  max-width: 430px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,.92);
}

/* ---------------------------------------------------------- Formular-Pill */

.pill-form {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 2px 2px 2px 30px;
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pill-form input {
  width: 170px;
  background: transparent;
  border: none;
  font: inherit;
  font-size: 16px;
  color: #fff;
}
.pill-form input::placeholder { color: rgba(255,255,255,.9); }
.pill-form input:focus { outline: none; }

.pill-submit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 26px 2px 2px;
  border-radius: 50px;
  background-image: var(--gradient-cta);
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  transition: transform .15s ease;
}
.pill-submit:hover { transform: scale(1.03); }

.pill-submit .knob {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px; height: 39px;
  border-radius: 50%;
  background: #fff;
}

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

/* ------------------------------------------------------------- Sektionen */

.section {
  padding: 130px 0;
  scroll-margin-top: 70px;
}

.section-head { text-align: center; margin-bottom: 64px; }

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
  background-image: var(--gradient-icon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition: opacity .9s cubic-bezier(.2,0,0,1), transform .9s cubic-bezier(.2,0,0,1),
    filter .9s cubic-bezier(.2,0,0,1);
  transition-delay: var(--d, 0ms);
}
[data-reveal].in { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Leistungen-Raster */

.features {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 420px);
  justify-content: space-between;
  row-gap: 72px;
  column-gap: 40px;
}

.feature { display: block; }
.feature .f-title { font-size: 30px; font-weight: 400; line-height: 1.1; }
.feature .f-caption { margin-top: 10px; font-size: 16px; color: rgba(255,255,255,.92); }
.feature .f-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--accent-300);
  transition: color .15s ease;
}
.feature:hover .f-more { color: #fff; }
.feature .f-rule { display: block; margin-top: 16px; height: 1px; background-image: var(--gradient-rule); }
.feature.alt { text-align: right; }
.feature.alt .f-rule { background-image: var(--gradient-rule-alt); }

.footnote {
  margin: 72px auto 0;
  max-width: 440px;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255,255,255,.92);
}

/* Ablauf */

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 64px;
  max-width: 980px;
  margin-inline: auto;
}

.step .s-index {
  font-size: 15px;
  background-image: var(--gradient-icon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step .s-title { margin-top: 8px; font-size: 28px; font-weight: 400; line-height: 1.1; }
.step .s-body { margin-top: 10px; font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.8); }

/* Kontakt */

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

/* ---------------------------------------------------------------- Footer */

.site-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(2,4,13,0) 0%, rgba(3,7,22,.86) 26%, #030716 100%);
}

.site-footer .wrap { padding-block: 36px; display: flex; flex-direction: column; gap: 20px; }

.foot-top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 12px; }
.foot-top .tagline { font-size: 14px; color: rgba(255,255,255,.6); }

.foot-nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.foot-nav a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .15s ease; }
.foot-nav a:hover { color: #fff; }

.foot-base {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 18px;
}
.foot-base .copy { font-size: 13px; color: rgba(255,255,255,.45); }
.foot-base .legal { display: flex; gap: 18px; }
.foot-base .legal a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .15s ease; }
.foot-base .legal a:hover { color: #fff; }

/* ------------------------------------------------------- Unterseiten */

.subpage-nav { position: static; }
.subpage-main { padding: 40px 0 96px; }

.sub-head { text-align: center; max-width: 760px; margin-inline: auto; }
.sub-intro {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  text-align: center;
}

.included { max-width: 640px; margin: 72px auto 0; }
.included.wide { max-width: 1100px; }
.included.wide .included-label { text-align: center; }
.included-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.included li { margin-top: 34px; }
.included .i-title { font-size: 24px; font-weight: 400; line-height: 1.1; }
.included .i-body { margin-top: 10px; font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.75); }
.included .i-rule { display: block; margin-top: 16px; height: 1px; background-image: var(--gradient-rule); }
.included li:nth-child(even) .i-rule { background-image: var(--gradient-rule-alt); }

.bundle {
  max-width: 640px;
  margin: 72px auto 0;
  padding: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.bundle .b-name { margin-top: 12px; font-size: 22px; font-weight: 400; }
.bundle .b-price { margin-top: 10px; font-size: 26px; font-weight: 400; }
.bundle ul { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.bundle li { display: flex; gap: 10px; font-size: 15px; line-height: 1.4; color: rgba(255,255,255,.8); }
.bundle li::before { content: "·"; color: var(--accent-300); }
.bundle .b-note { margin-top: 16px; font-size: 13px; line-height: 1.4; color: rgba(255,255,255,.55); }

.sub-cta { margin-top: 88px; text-align: center; }
.sub-cta h2 { font-size: 30px; font-weight: 400; line-height: 1.1; }
.sub-cta p { margin: 12px auto 0; max-width: 440px; font-size: 15px; line-height: 1.45; color: rgba(255,255,255,.75); }
.cta-button {
  display: inline-flex;
  margin-top: 28px;
  padding: 16px 32px;
  border-radius: 50px;
  background-image: var(--gradient-cta);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 12px 36px -10px rgba(18,38,107,.4), inset 0 1px 0 rgba(159,184,255,.25);
  transition: transform .15s ease;
}
.cta-button:hover { transform: scale(1.04); }

/* Impressum */

.legal-main { max-width: 800px; margin-inline: auto; padding: 40px var(--gutter) 96px; }
.legal-main h1 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 400; line-height: 1.1; }
.legal-main h2 {
  margin-top: 46px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 26px;
  font-size: 24px;
  font-weight: 400;
  scroll-margin-top: 90px;
}
.legal-main h3 { margin-top: 28px; font-size: 17px; font-weight: 500; }
.legal-main p { margin-top: 10px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.75); white-space: pre-line; }
.legal-main ul { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.legal-main li { display: flex; gap: 10px; font-size: 15px; color: rgba(255,255,255,.75); }
.legal-main li::before { content: "·"; color: var(--accent-300); }
.legal-main .stand { margin-top: 28px; font-size: 13px; color: rgba(255,255,255,.45); }
.legal-main a { color: var(--accent-300); }
.legal-main a:hover { color: #fff; }

/* Danke */

.thanks {
  min-height: 80svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  padding: 0 var(--gutter);
}

/* ------------------------------------------------------------ Responsive */

@media (max-width: 1180px) {
  .wrap { padding-inline: 1.5rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .features { grid-template-columns: minmax(0, 1fr); row-gap: 44px; }
  .feature.alt { text-align: left; }
  .feature.alt .f-rule { background-image: var(--gradient-rule); }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .section { padding: 96px 0; }
}

@media (max-width: 656px) {
  .wrap { padding-inline: 1.25rem; }
  .hero { gap: 26px; padding-top: 120px; }
  .hero-icon { width: 96px; height: 96px; }
  .hero-icon .halo, .hero-icon .ring { inset: -56px; }
  .pill-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
  }
  .pill-form input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
  }
  .pill-form input::placeholder { color: rgba(255,255,255,.7); }
  .pill-submit { justify-content: center; padding: 6px 24px 6px 6px; }
}

/* --------------------------------------------------- Reduzierte Bewegung */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .masthead .char, [data-reveal] { transition: none; opacity: 1; transform: none; filter: none; }
}

/* QA-Schalter (?static=1): Endzustand ohne Animation — für Screenshots. */
html.no-anim { scroll-behavior: auto; }
html.no-anim .hero { min-height: 760px; }
html.no-anim .masthead .char,
html.no-anim [data-reveal] {
  transition: none;
  opacity: 1;
  transform: none;
  filter: none;
}

/* ------------------------------------------------ Neue Seiten (v8) */

/* Erstgespräch: gestapeltes Formular */
.stack-form {
  margin: 34px auto 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: left;
}
.stack-form input,
.stack-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  padding: 14px 18px;
  font: inherit;
  font-size: 16px;
  color: #fff;
  resize: vertical;
}
.stack-form input::placeholder,
.stack-form textarea::placeholder { color: rgba(255,255,255,.65); }
.stack-form input:focus,
.stack-form textarea:focus { outline: none; border-color: var(--accent-300); }
.stack-form .pill-submit { margin-top: 6px; justify-content: center; align-self: center; }

/* Fließtext-Absätze in Sektionen */
.prose { max-width: 720px; }
.prose p { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.85); }
.prose p + p { margin-top: 16px; }

/* Referenzen */
.case-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.case {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.case .c-tag {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  background-image: var(--gradient-icon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.case .c-title { margin-top: 10px; font-size: 26px; font-weight: 400; line-height: 1.15; }
.case .c-body { margin-top: 12px; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.8); }
.case .c-points { margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
.case .c-points li { display: flex; gap: 10px; font-size: 14px; line-height: 1.4; color: rgba(255,255,255,.75); }
.case .c-points li::before { content: "·"; color: var(--accent-300); }
.case .i-rule { margin-top: auto; padding-top: 18px; }
.case.c-invite { align-items: flex-start; justify-content: center; }
.case.c-invite .cta-button { margin-top: 18px; }

/* Über uns: Gründer-Karte */
.founder {
  margin: 88px auto 0;
  max-width: 720px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.founder .f-mono {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background-image: var(--gradient-cta);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .08em;
  color: #fff;
}
.founder .f-name { font-size: 24px; font-weight: 400; }
.founder .f-role { margin-top: 4px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.founder .f-text { margin-top: 14px; font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.85); }

/* Pakete & Preise */
.price-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.price-grid .bundle { max-width: none; margin: 0; display: flex; flex-direction: column; }
.price-grid .bundle.hot { border-color: var(--accent-300); box-shadow: 0 0 44px rgba(73,119,255,.14); }
.price-grid .b-more {
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
  color: var(--accent-300);
  transition: color .15s ease;
}
.price-grid .b-more:hover { color: #fff; }
.price-note {
  margin: 26px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.6);
}
.price-note strong { color: rgba(255,255,255,.85); font-weight: 400; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 28px; max-width: 720px; }
.faq-item h3 { font-size: 19px; font-weight: 400; }
.faq-item p { margin-top: 8px; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.78); }

/* Links in Fließtexten der neuen Sektionen */
.i-body a { color: var(--accent-300); text-decoration: underline; text-underline-offset: 3px; }
.i-body a:hover { color: #fff; }

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
  .founder { flex-direction: column; align-items: flex-start; }
}

/* Netto-Preisauszeichnung */
.b-price .b-vat { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.5); white-space: nowrap; }

/* ------------------------------------------------ v10: Flow-Stepper */

.flow {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.flow .f-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 22px 28px;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.flow .f-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(#0a1030, #0a1030) padding-box,
    var(--gradient-icon) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 26px rgb(73 119 255 / .3);
}
.flow .f-title { font-size: 20px; font-weight: 500; line-height: 1.15; }
.flow .f-body { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.78); }
/* Verbindungslinie zwischen den Schritten */
.flow .f-step::after {
  content: "";
  position: absolute;
  top: 52px; right: -23px;
  width: 24px; height: 1.5px;
  background: var(--gradient-rule);
}
.flow .f-step:last-child::after { display: none; }

/* --------------------------------------- v10: Qualifizierungs-Formular */

.stack-form.wide { max-width: 760px; }
.stack-form .fg {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.stack-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  padding: 14px 18px;
  font: inherit;
  font-size: 16px;
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%239fb8ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}
.stack-form select:focus { outline: none; border-color: var(--accent-300); }
.stack-form select option { background: #0a1030; color: #fff; }
.stack-form .form-note { font-size: 12.5px; color: rgba(255,255,255,.5); }

/* ------------------------------- v10: Cursor & Selektion (Deko-Texte) */

.masthead, .eyebrow, .included-label, .flow .f-num, .step .s-index {
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}
::selection { background: var(--accent-500); color: #fff; }

/* ----------------------------------------- v10: Mobile-Polish Unterseiten */

@media (max-width: 900px) {
  .flow { grid-template-columns: 1fr; gap: 20px; }
  .flow .f-step { flex-direction: row; align-items: flex-start; gap: 18px; padding: 22px 20px; }
  .flow .f-num { flex: none; width: 46px; height: 46px; font-size: 18px; }
  .flow .f-step > div, .flow .f-txt { display: block; }
  .flow .f-step::after {
    top: auto; bottom: -21px; right: auto; left: 42px;
    width: 1.5px; height: 22px;
  }
  .flow .f-title { margin-top: 10px; }
  .flow .f-body { margin-top: 8px; }
  .flow .f-step { display: block; }
  .flow .f-num { margin-bottom: 2px; }
}

@media (max-width: 656px) {
  .stack-form { padding: 20px 16px; }
  .stack-form .fg { grid-template-columns: 1fr; }
  .sub-cta .cta-button,
  .stack-form .pill-submit { width: 100%; justify-content: center; }
  .case { padding: 22px 18px; }
  .bundle { padding: 22px 18px; }
  .founder { padding: 22px 18px; gap: 16px; }
  .included { margin-top: 64px; }
  .sub-cta { margin-top: 64px; }
}

/* v12: Formular-Datenschutzhinweis + 404-Aktionen */
.form-privacy { font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,.5); text-align: center; }
.form-privacy a { color: var(--accent-300); text-decoration: underline; text-underline-offset: 3px; }
.form-privacy a:hover { color: #fff; }
.nf-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-button.ghost { background-image: none; background: var(--glass); border: 1px solid var(--glass-border); }
@media (max-width: 656px) { .nf-actions { flex-direction: column; width: 100%; max-width: 380px; } }

/* ------------------------------------------------------- v13: Blog */

.post-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 460px));
  justify-content: center;
  gap: 24px;
}
.post-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .25s ease, border-color .25s ease;
}
.post-card:hover { transform: translateY(-3px); border-color: var(--accent-300); }
.post-card .p-meta { font-size: 13px; color: rgba(255,255,255,.55); }
.post-card .p-title { font-size: 22px; font-weight: 500; line-height: 1.3; }
.post-card .p-teaser { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.78); }
.post-card .p-more { margin-top: auto; padding-top: 10px; font-size: 14px; color: var(--accent-300); }
.post-card:hover .p-more { color: #fff; }

/* Artikel-Layout */
.article { max-width: 760px; margin-inline: auto; }
.article .sub-head { text-align: left; }
.article .a-title { margin-top: 14px; font-size: clamp(28px, 4vw, 42px); font-weight: 500; line-height: 1.18; }
.article .a-meta { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,.55); }
.article .a-body { margin-top: 30px; }
.a-body p { font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.86); }
.a-body p + p { margin-top: 14px; }
.a-body h2 { margin-top: 38px; font-size: 24px; font-weight: 500; line-height: 1.25; }
.a-body h2 + p { margin-top: 12px; }
/* Listen: normaler Textfluss mit Marker — KEIN Flex (zerreißt Inline-Inhalte
   wie <strong>Begriff:</strong> Text in kaputte Spalten). */
.a-body ul, .a-body ol { margin-top: 14px; display: block; }
.a-body li {
  position: relative;
  display: block;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.84);
}
.a-body li + li { margin-top: 12px; }
.a-body ul li::before {
  content: "·";
  position: absolute;
  left: 7px;
  color: var(--accent-300);
  font-weight: 500;
}
.a-body ol { counter-reset: artikel-n; }
.a-body ol li { padding-left: 34px; counter-increment: artikel-n; }
.a-body ol li::before {
  content: counter(artikel-n) ".";
  position: absolute;
  left: 0;
  color: var(--accent-300);
  font-weight: 500;
}
.a-body a { color: var(--accent-300); text-decoration: underline; text-underline-offset: 3px; }
.a-body a:hover { color: #fff; }
.a-body strong { color: #fff; font-weight: 500; }

/* Danke-Seite: 3er-Flow + Textlinks */
.flow-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 980px; margin-inline: auto; }
.txt-link { color: var(--accent-300); text-decoration: underline; text-underline-offset: 3px; }
.txt-link:hover { color: #fff; }

@media (max-width: 900px) {
  .flow-3 { grid-template-columns: 1fr; }
}
@media (max-width: 656px) {
  .post-list { grid-template-columns: 1fr; }
  .article .a-body { margin-top: 24px; }
}

/* v16: Kurzfassung-Box + Breadcrumb im Artikel */
.kurzfassung {
  margin-top: 28px;
  padding: 20px 24px 22px;
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.kurzfassung .k-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-300);
}
.kurzfassung ul { margin-top: 12px; }
.kurzfassung li {
  position: relative;
  display: block;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.86);
}
.kurzfassung li + li { margin-top: 9px; }
.kurzfassung li::before { content: "·"; position: absolute; left: 6px; color: var(--accent-300); font-weight: 500; }
.eyebrow .crumb { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.eyebrow .crumb:hover { color: #fff; }
