/* ===== Starterclass Landing Page ===== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--neutral-light); }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: 32px;
}

/* ============================================================
   CTA-Interlude — zwischendurch ein Sprungbrett zum Formular
   ============================================================ */
.lp-cta-interlude {
  padding: 40px 0 16px;
  text-align: center;
  background: transparent;
}
.lp-cta-interlude__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  color: var(--violet-700);
  margin: 0 auto 20px;
  max-width: 32ch;
  text-wrap: balance;
}
.lp-cta-interlude__btn {
  padding: 16px 36px;
  font-size: 15px;
  letter-spacing: 0.04em;
}

/* ============================================================
   Hero logos — beide Logos sitzen auf dem Hero-Verlauf
   ============================================================ */
.lp-hero__logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.lp-hero__logo { display: inline-flex; align-items: center; }
.lp-hero__logo--mindflow img { height: 44px; width: auto; }
.lp-hero__logo--cowork img   { height: 96px; width: auto; }
@media (max-width: 600px) {
  .lp-hero__logo--mindflow img { height: 32px; }
  .lp-hero__logo--cowork img   { height: 64px; }
}

/* ============================================================
   Header
   ============================================================ */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(244, 244, 244, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}
.lp-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.lp-logo img { width: 32px; height: 32px; object-fit: contain; }
.lp-logo strong {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; letter-spacing: -0.01em;
}
.lp-logo small {
  font-family: var(--font-body); font-size: 11px;
  color: var(--fg-subtle); font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-left: -4px;
}
.lp-header__cta {
  display: flex; align-items: center; gap: 24px;
}
.lp-header__price {
  font-family: var(--font-body); font-size: 13px; color: var(--fg-muted);
}
.lp-header__price b { color: var(--violet-700); font-weight: 700; }

/* ============================================================
   Hero
   ============================================================ */
.lp-hero {
  position: relative; overflow: hidden;
  padding: 28px 0 80px;
}
.lp-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 0%, var(--violet-100) 0%, transparent 55%),
              radial-gradient(ellipse at 0% 90%, var(--orange-50) 0%, transparent 55%);
  z-index: 0;
}
.lp-hero .container { position: relative; z-index: 1; }
.lp-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 8px;
  background: white; border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 600; color: var(--violet-700);
}
.lp-hero__badge i {
  display: inline-block; width: 22px; height: 22px;
  background: var(--orange-500); color: white;
  border-radius: 50%; font-style: normal;
  font-size: 11px; font-weight: 700; text-align: center; line-height: 22px;
}
.lp-hero__badge em {
  font-style: normal; color: var(--fg-muted); font-weight: 500;
}
.lp-hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.98; letter-spacing: -0.035em;
  color: var(--violet-700);
  margin: 24px 0 28px;
  max-width: 16ch;
  text-wrap: balance;
}
.lp-hero__title .accent {
  color: var(--orange-500); position: relative;
  white-space: nowrap;
}
.lp-hero__title .underline {
  position: relative; display: inline-block;
}
.lp-hero__title .underline::after {
  content: ""; position: absolute;
  left: -2%; right: -2%; bottom: 4%;
  height: 14%;
  background: var(--orange-500); opacity: 0.22;
  border-radius: 4px; z-index: -1;
}
.lp-hero__sub {
  font-size: 22px; line-height: 1.5;
  color: var(--fg-muted); max-width: 720px;
  margin: 0 0 40px;
}
.lp-hero__sub strong { color: var(--ink); font-weight: 600; }

.lp-hero__paradigm {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 20px; align-items: stretch;
  margin-top: 56px; max-width: 1000px;
}
.lp-paradigm-card {
  background: white; border-radius: 20px; padding: 28px 28px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.lp-paradigm-card--past { border-top: 4px solid var(--neutral-warm); }
.lp-paradigm-card--future {
  border-top: 4px solid var(--orange-500);
  background: linear-gradient(180deg, #fff 0%, var(--orange-50) 100%);
}
.lp-paradigm-card__label {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 12px;
}
.lp-paradigm-card--future .lp-paradigm-card__label { color: var(--orange-500); }
.lp-paradigm-card__head {
  font-family: var(--font-display); font-weight: 800;
  font-size: 22px; line-height: 1.2;
  color: var(--violet-700); margin: 0 0 12px;
}
.lp-paradigm-card p {
  font-size: 15px; line-height: 1.6; color: var(--fg-muted); margin: 0;
}
.lp-paradigm-arrow {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-marker); font-size: 32px;
  color: var(--violet-500); transform: rotate(-6deg);
  padding: 0 8px;
}

/* ============================================================
   Generic section
   ============================================================ */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--dark { background: var(--violet-700); color: white; }
.section--ink { background: var(--ink); color: white; }

.section h2.section__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.02; letter-spacing: -0.028em;
  color: var(--violet-700); margin: 12px 0 20px;
  max-width: 22ch; text-wrap: balance;
}
.section--dark h2.section__title { color: white; }
.section--ink h2.section__title { color: white; }

.section__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange-500);
}
.section__eyebrow::before {
  content: ""; width: 28px; height: 2px;
  background: var(--orange-500);
}
.section--dark .section__eyebrow { color: var(--violet-300); }
.section--dark .section__eyebrow::before { background: var(--violet-300); }

.section__lead {
  font-size: 19px; line-height: 1.55;
  color: var(--fg-muted); max-width: 720px;
  margin: 0 0 56px;
}
.section--dark .section__lead { color: rgba(255,255,255,0.78); }

/* ============================================================
   Pain points
   ============================================================ */
.lp-pains {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.lp-pain {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 26px;
  background: white; border-radius: 18px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--divider);
}
.lp-pain__num {
  flex: 0 0 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--violet-100); color: var(--violet-700);
  border-radius: 50%;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
}
.lp-pain p {
  margin: 0; font-size: 16px; line-height: 1.55; color: var(--ink);
}
.lp-pains__verdict {
  margin-top: 40px; padding: 36px 40px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--violet-900) 100%);
  border-radius: 24px; color: white;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3; text-wrap: balance;
  position: relative;
}
.lp-pains__verdict span { color: var(--orange-500); }

/* ============================================================
   What we build
   ============================================================ */
.lp-build {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 16px;
}
.lp-build-card {
  background: white; border-radius: 24px;
  padding: 40px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.lp-build-card--brain {
  background: linear-gradient(180deg, white 0%, var(--violet-50) 100%);
  border: 1px solid var(--violet-100);
}
.lp-build-card--worker {
  background: linear-gradient(180deg, white 0%, var(--orange-50) 100%);
  border: 1px solid var(--orange-100);
}
.lp-build-card__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 18px;
  background: white; box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.lp-build-card__icon img { width: 44px; height: 44px; object-fit: contain; }
.lp-build-card__kicker {
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-subtle); margin-bottom: 6px;
}
.lp-build-card h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--violet-700); margin: 0 0 16px;
}
.lp-build-card p {
  font-size: 16px; line-height: 1.6; color: var(--fg-muted); margin: 0 0 14px;
}
.lp-build-card p strong { color: var(--ink); font-weight: 600; }
.lp-build-bridge {
  margin-top: 36px;
  padding: 32px 40px;
  background: var(--ink); color: white;
  border-radius: 24px;
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
}
.lp-build-bridge__mark {
  font-family: var(--font-marker); color: var(--orange-500);
  font-size: 56px; line-height: 1; transform: rotate(-6deg);
}
.lp-build-bridge p {
  margin: 0; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.3;
}
.lp-build-bridge p span { color: var(--violet-300); }

/* ============================================================
   Outcomes (Was nach 4 Wochen steht)
   ============================================================ */
.lp-outcomes {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.lp-outcome {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 20px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
}
.lp-outcome__check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--orange-500); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  line-height: 1;
}
.lp-outcome h4 {
  margin: 0; font-family: var(--font-display); font-weight: 800;
  font-size: 18px; line-height: 1.25; color: white;
}
.lp-outcome p {
  margin: 0; font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.74);
}

/* ============================================================
   4-week roadmap
   ============================================================ */
.lp-roadmap {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.lp-week {
  background: white; border-radius: 24px;
  padding: 32px 28px 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex; flex-direction: column;
  border-top: 4px solid var(--violet-100);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.lp-week:nth-child(1) { border-top-color: var(--violet-300); }
.lp-week:nth-child(2) { border-top-color: var(--violet-500); }
.lp-week:nth-child(3) { border-top-color: var(--violet-700); }
.lp-week:nth-child(4) { border-top-color: var(--orange-500); }
.lp-week:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lp-week__num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 72px; line-height: 0.9; letter-spacing: -0.04em;
  color: var(--violet-700); opacity: 0.16;
  margin-bottom: 4px;
}
.lp-week__label {
  font-family: var(--font-body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--violet-700); margin-bottom: 8px;
}
.lp-week:nth-child(4) .lp-week__num { color: var(--orange-500); }
.lp-week:nth-child(4) .lp-week__label { color: var(--orange-500); }
.lp-week h3 {
  margin: 0 0 14px; font-family: var(--font-display); font-weight: 800;
  font-size: 22px; line-height: 1.18; color: var(--ink);
  text-wrap: balance;
}
.lp-week__body {
  font-size: 15px; line-height: 1.55; color: var(--fg-muted);
  margin: 0 0 16px;
}
.lp-week__list { margin: 0 0 16px; padding: 0; list-style: none; }
.lp-week__list li {
  font-size: 14px; line-height: 1.5; color: var(--fg-muted);
  padding-left: 18px; position: relative; margin-bottom: 4px;
}
.lp-week__list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet-300);
}
.lp-week__goal {
  margin-top: auto; padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-size: 13px; line-height: 1.5;
}
.lp-week__goal b {
  font-family: var(--font-display); font-weight: 800;
  color: var(--orange-500); display: block; margin-bottom: 2px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.lp-week__goal span { color: var(--ink); font-weight: 500; }

/* ============================================================
   Examples
   ============================================================ */
.lp-examples {
  display: flex; flex-direction: column; gap: 16px;
}
.lp-example {
  background: white; border-radius: 22px;
  padding: 32px 36px;
  box-shadow: var(--shadow-xs);
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 36px; align-items: stretch;
}
.lp-example__head {
  display: flex; flex-direction: column; gap: 6px;
}
.lp-example__num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 56px; line-height: 0.9; letter-spacing: -0.04em;
  color: var(--violet-100);
}
.lp-example__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; line-height: 1.2; color: var(--violet-700);
}
.lp-example__col h5 {
  margin: 0 0 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.lp-example__col--past h5 { color: var(--fg-subtle); }
.lp-example__col--now h5 { color: var(--orange-500); }
.lp-example__col p {
  margin: 0; font-size: 15px; line-height: 1.55; color: var(--fg-muted);
}
.lp-example__col--now p { color: var(--ink); }
.lp-example__col {
  padding-left: 24px; border-left: 1px solid var(--divider);
}

/* ============================================================
   Control / Independence band
   ============================================================ */
.lp-control {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.lp-control__visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 28px;
  background: var(--neutral-warm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.lp-control__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.lp-control__visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(28,20,36,0.62) 100%);
  pointer-events: none;
}
.lp-control__marker {
  position: absolute; left: 36px; right: 36px; bottom: 28px;
  z-index: 2;
  font-family: var(--font-marker); color: white;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.0;
  text-shadow: 0 4px 30px rgba(28,20,36,0.55);
  transform: rotate(-4deg);
  transform-origin: left bottom;
}
.lp-control__marker span { color: var(--orange-100); display: block; }
.lp-control h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05; letter-spacing: -0.028em;
  color: var(--violet-700); margin: 12px 0 20px;
  text-wrap: balance;
}
.lp-control p {
  font-size: 17px; line-height: 1.65; color: var(--fg-muted);
  margin: 0 0 16px;
}
.lp-control p strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   Format (what's included)
   ============================================================ */
.lp-format {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.lp-format-card {
  background: white; border-radius: 22px; padding: 32px 28px;
  border: 1px solid var(--divider);
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
}
.lp-format-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--orange-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-500);
}
.lp-format-card__icon svg {
  width: 28px; height: 28px;
}
.lp-format-card h4 {
  margin: 0; font-family: var(--font-display); font-weight: 800;
  font-size: 19px; line-height: 1.2; color: var(--violet-700);
}
.lp-format-card p {
  margin: 0; font-size: 14px; line-height: 1.55; color: var(--fg-muted);
}

/* ============================================================
   Fit (für dich / nicht für dich)
   ============================================================ */
.lp-fit {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.lp-fit-card {
  background: white; border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.lp-fit-card--yes { border-top: 4px solid var(--orange-500); }
.lp-fit-card--no { border-top: 4px solid var(--neutral-warm); }
.lp-fit-card__head {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 24px; color: var(--violet-700);
  margin-bottom: 22px;
}
.lp-fit-card--no .lp-fit-card__head { color: var(--fg-muted); }
.lp-fit-card__head i {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-style: normal; font-size: 18px;
  background: var(--orange-500); color: white;
  font-weight: 800;
}
.lp-fit-card--no .lp-fit-card__head i {
  background: var(--neutral-warm); color: var(--ink);
}
.lp-fit-card ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.lp-fit-card li {
  font-size: 15px; line-height: 1.5; color: var(--ink);
  padding-left: 28px; position: relative;
}
.lp-fit-card--yes li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--orange-500); font-weight: 800;
}
.lp-fit-card--no li::before {
  content: "×"; position: absolute; left: 4px; top: -1px;
  color: var(--fg-subtle); font-weight: 700; font-size: 18px;
}
.lp-fit-card--no li { color: var(--fg-muted); }
.lp-fit__verdict {
  margin-top: 32px; padding: 28px 36px;
  background: var(--violet-700); color: white;
  border-radius: 20px;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.35;
  text-align: center; text-wrap: balance;
}
.lp-fit__verdict span { color: var(--orange-500); }

/* ============================================================
   Price / Deal
   ============================================================ */
.lp-price {
  position: relative; overflow: hidden;
}
.lp-price-card {
  background: white;
  border-radius: 32px;
  padding: 56px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.lp-price-card::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 320px; height: 320px;
  background: var(--gradient-warm);
  filter: blur(80px); opacity: 0.6; z-index: 0;
}
.lp-price-card > * { position: relative; z-index: 1; }
.lp-price__left h2 {
  margin: 8px 0 18px;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(34px, 3.8vw, 48px); line-height: 1.05;
  letter-spacing: -0.028em; color: var(--violet-700);
}
.lp-price__left p { margin: 0 0 14px; font-size: 16px; line-height: 1.6; color: var(--fg-muted); }
.lp-deal { margin-top: 24px; }
.lp-deal__title {
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-500);
  margin-bottom: 12px;
}
.lp-deal__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.lp-deal__list li {
  padding-left: 28px; position: relative;
  font-size: 15px; line-height: 1.55; color: var(--ink);
}
.lp-deal__list li::before {
  content: ""; position: absolute; left: 4px; top: 8px;
  width: 14px; height: 8px;
  border-left: 2.5px solid var(--orange-500);
  border-bottom: 2.5px solid var(--orange-500);
  transform: rotate(-45deg);
}

.lp-price__right {
  background: var(--ink); color: white;
  border-radius: 24px; padding: 36px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.lp-price__badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-500); color: white;
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lp-price__amount {
  margin: 20px 0 4px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 72px; line-height: 1; letter-spacing: -0.04em;
  color: white;
  display: flex; align-items: baseline; gap: 8px;
}
.lp-price__amount sup {
  font-size: 28px; font-weight: 700; color: rgba(255,255,255,0.55);
  text-decoration: line-through;
}
.lp-price__sub {
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin: 0 0 24px;
}
.lp-price__meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.lp-price__meta div b {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--violet-300); margin-bottom: 4px;
}
.lp-price__meta div span {
  font-family: var(--font-display); font-weight: 800;
  font-size: 16px; color: white;
}
.lp-price__needs h5 {
  margin: 0 0 10px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--violet-300);
}
.lp-price__needs ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.lp-price__needs li {
  font-size: 13px; line-height: 1.45; color: rgba(255,255,255,0.78);
  padding-left: 16px; position: relative;
}
.lp-price__needs li::before {
  content: "•"; position: absolute; left: 0; color: var(--orange-500);
}

/* ============================================================
   Final CTA / signup
   ============================================================ */
.lp-signup {
  background-image: url('assets/gradients/verlauf-05.png');
  background-size: cover; background-position: center;
  padding: 96px 0;
  color: white; position: relative; overflow: hidden;
}
.lp-signup::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,20,36,0.45) 0%, rgba(91,50,155,0.5) 100%);
}
.lp-signup .container { position: relative; }
.lp-signup__inner {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.lp-signup__signet {
  width: 64px; height: 64px; margin: 0 auto 16px;
}
.lp-signup__marker {
  font-family: var(--font-marker); font-size: 28px;
  color: var(--orange-500);
  transform: rotate(-2deg); display: inline-block;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  margin-bottom: 8px;
}
.lp-signup h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0; letter-spacing: -0.03em;
  color: white; margin: 0 0 20px;
  text-shadow: 0 4px 40px rgba(28,20,36,0.45);
  text-wrap: balance;
}
.lp-signup__lead {
  font-size: 19px; line-height: 1.55;
  color: rgba(255,255,255,0.92); max-width: 560px;
  margin: 0 auto 40px;
}
.lp-signup__form {
  background: white; color: var(--ink);
  border-radius: 24px; padding: 32px;
  text-align: left;
  box-shadow: var(--shadow-lg);
  max-width: 560px; margin: 0 auto;
}
.lp-signup__form h3 {
  margin: 0 0 18px; font-family: var(--font-display); font-weight: 800;
  font-size: 22px; color: var(--violet-700);
}
.lp-field { display: block; margin-bottom: 14px; }
.lp-field label {
  display: block; font-size: 12px; font-weight: 700;
  color: var(--fg-subtle); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 6px;
}
.lp-field input, .lp-field textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px; font-family: var(--font-body);
  font-size: 15px; color: var(--ink);
  background: var(--neutral-light);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.lp-field input:focus, .lp-field textarea:focus {
  outline: none; border-color: var(--violet-500);
  background: white;
}
.lp-field textarea { min-height: 96px; resize: vertical; }
.lp-signup__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.lp-signup__submit {
  width: 100%; margin-top: 8px;
  justify-content: center;
  padding: 16px 28px; font-size: 15px;
}
.lp-signup__legal {
  font-size: 12px; color: var(--fg-subtle); margin: 14px 0 0;
  line-height: 1.4; text-align: center;
}
.lp-signup__ok {
  background: var(--violet-50); border: 1.5px solid var(--violet-300);
  color: var(--violet-700); border-radius: 16px;
  padding: 24px; text-align: center;
}
.lp-signup__ok strong {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  display: block; margin-bottom: 6px;
}
.lp-signup__ok p { margin: 0; font-size: 14px; color: var(--violet-700); }

/* ============================================================
   Footer
   ============================================================ */
.lp-footer {
  background: var(--ink); color: rgba(255,255,255,0.72);
  padding: 56px 0 28px;
}
.lp-footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  align-items: start;
}
.lp-footer__brand img { height: 44px; width: auto; margin-bottom: 14px; }
.lp-footer__brand p { font-size: 14px; line-height: 1.6; margin: 0; max-width: 280px; }
.lp-footer h6 {
  margin: 0 0 12px; font-family: var(--font-display); font-weight: 800;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: white;
}
.lp-footer p, .lp-footer a {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.72);
}
.lp-footer a:hover { color: var(--orange-500); }
.lp-footer__legal {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px; color: rgba(255,255,255,0.45);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .container { padding-inline: 24px; }
  .lp-hero__paradigm { grid-template-columns: 1fr; }
  .lp-paradigm-arrow { transform: rotate(90deg); }
  .lp-pains { grid-template-columns: 1fr; }
  .lp-build { grid-template-columns: 1fr; }
  .lp-outcomes { grid-template-columns: repeat(2, 1fr); }
  .lp-roadmap { grid-template-columns: 1fr 1fr; }
  .lp-example { grid-template-columns: 1fr; gap: 16px; }
  .lp-example__col { padding-left: 0; border-left: 0; border-top: 1px solid var(--divider); padding-top: 16px; }
  .lp-control { grid-template-columns: 1fr; gap: 32px; }
  .lp-format { grid-template-columns: 1fr 1fr; }
  .lp-fit { grid-template-columns: 1fr; }
  .lp-price-card { grid-template-columns: 1fr; padding: 40px 28px; }
  .lp-footer__inner { grid-template-columns: 1fr 1fr; }
  .lp-header__price { display: none; }
  .lp-header { padding: 12px 20px; }
  .section { padding: 64px 0; }
  .lp-hero { padding: 20px 0 48px; }
}
@media (max-width: 600px) {
  .lp-outcomes { grid-template-columns: 1fr; }
  .lp-roadmap { grid-template-columns: 1fr; }
  .lp-format { grid-template-columns: 1fr; }
  .lp-signup__row { grid-template-columns: 1fr; }
  .lp-footer__inner { grid-template-columns: 1fr; }
}
