:root {
  color-scheme: dark;
  --ink: #100f24;
  --ink-2: #17163c;
  --ink-3: #242252;
  --paper: #fffdf2;
  --paper-soft: #f6f1df;
  --muted: #d9d3be;
  --muted-dark: #625d54;
  --yellow: #f5bb06;
  --yellow-2: #ffd85a;
  --red: #df1627;
  --line: rgba(255, 253, 242, 0.18);
  --shadow: 0 24px 80px rgba(8, 8, 24, 0.32);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(245, 187, 6, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(223, 22, 39, 0.18), transparent 24rem),
    linear-gradient(160deg, #12112f 0%, #17163c 42%, #0f0e25 100%);
  color: var(--paper);
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad { padding: clamp(72px, 10vw, 140px) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  background: rgba(16, 15, 36, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.brand img {
  width: clamp(150px, 18vw, 210px);
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.site-header nav, .site-footer nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-header a {
  text-decoration: none;
  font-size: 0.92rem;
  color: rgba(255, 253, 242, 0.82);
}

.site-header nav a {
  padding: 10px 14px;
  border-radius: 999px;
}
.site-header nav a:hover { background: rgba(255,255,255,.08); color: var(--paper); }
.site-header .nav-cta { background: var(--yellow); color: #15120a; font-weight: 800; }
.site-header .nav-cta:hover { background: var(--yellow-2); color: #15120a; }

.hero { padding-top: clamp(42px, 6vw, 76px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(350px, .78fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 850;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
.eyebrow.dark { color: var(--red); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 5.8vw, 5.55rem);
  line-height: .9;
  letter-spacing: -0.07em;
  max-width: 12ch;
}
h2 {
  font-size: clamp(2.05rem, 4.3vw, 4.45rem);
  line-height: .95;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.58rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.lead {
  max-width: 650px;
  color: rgba(255, 253, 242, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.56;
  margin-bottom: 26px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 850;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--yellow); color: #17120b; box-shadow: 0 16px 38px rgba(245, 187, 6, .24); }
.button.primary:hover { background: var(--yellow-2); }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.06); color: var(--paper); }
.button.secondary:hover { background: rgba(255,255,255,.1); }

.trust-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  max-width: 690px;
}
.trust-row li {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  border-radius: 18px;
  padding: 16px;
}
.trust-row strong { display: block; font-size: 1rem; }
.trust-row span { display: block; color: rgba(255,253,242,.68); font-size: .88rem; margin-top: 4px; }

.hero-card {
  position: relative;
  min-height: 560px;
}
.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  background: #080817;
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(13,13,32,.82) 100%);
}
.image-frame img { width: 100%; min-height: 520px; object-fit: cover; }
.image-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  background: rgba(255,253,242,.92);
  color: #11100b;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 850;
  font-size: .92rem;
}
.diagnosis-card {
  position: absolute;
  right: -18px;
  bottom: 46px;
  z-index: 4;
  width: min(310px, 86%);
  border-radius: 24px;
  padding: 20px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.card-label {
  margin: 0 0 14px;
  color: var(--muted-dark);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}
.signal-list { display: grid; gap: 10px; }
.signal-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}
.signal-list b {
  width: 11px; height: 11px; border-radius: 50%; background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(245,187,6,.18);
}
.signal-list span:nth-child(2) b { background: #ff8a00; box-shadow: 0 0 0 5px rgba(255,138,0,.18); }
.signal-list span:nth-child(3) b { background: var(--red); box-shadow: 0 0 0 5px rgba(223,22,39,.16); }

.summer, .offer, #ablauf, #ergebnis { background: var(--paper); color: var(--ink); }
.split {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: clamp(32px, 6vw, 80px);
}
.split.middle { align-items: center; }
.text-stack p, .section-head p, .offer p, .final-cta p {
  color: var(--muted-dark);
  font-size: 1.08rem;
  line-height: 1.65;
}
.text-stack p:last-child, .section-head p:last-child { margin-bottom: 0; }
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head.narrow { max-width: 680px; }

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.result-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17,16,11,.1);
  background: #fff8db;
}
.result-card::after {
  content: "";
  position: absolute;
  width: 160px; height: 160px;
  right: -64px; bottom: -64px;
  border-radius: 50%;
  background: rgba(245,187,6,.24);
}
.result-card.process { background: #f7ead6; }
.result-card.no { background: #f8e6e7; }
.result-card p { color: #514b41; line-height: 1.55; position: relative; z-index: 1; }
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 900;
  margin-bottom: 28px;
}

.dark-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0e25, #222052);
}
.dark-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 15%, rgba(245,187,6,.17), transparent 26rem);
  pointer-events: none;
}
.dark-panel .container { position: relative; z-index: 1; }
.image-stack {
  position: relative;
  min-height: 520px;
}
.image-stack img {
  position: absolute;
  width: min(82%, 470px);
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.image-stack img:first-child { left: 0; top: 0; transform: rotate(-4deg); }
.image-stack img:last-child { right: 0; bottom: 0; transform: rotate(4deg); }
.lever-list { display: grid; gap: 14px; margin-top: 34px; }
.lever-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}
.lever-list strong { color: var(--yellow); }
.lever-list span { color: rgba(255,253,242,.78); line-height: 1.5; }

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}
.timeline article {
  min-height: 270px;
  border-radius: var(--radius-lg);
  padding: 28px;
  background: linear-gradient(180deg, #17163c, #111028);
  color: var(--paper);
  border: 1px solid rgba(17,16,11,.08);
  box-shadow: 0 18px 48px rgba(18,17,47,.13);
}
.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: #15120a;
  font-weight: 950;
  margin-bottom: 32px;
}
.timeline p { color: rgba(255,253,242,.72); line-height: 1.58; }

.offer-grid {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.offer-grid > div:first-child { grid-row: span 2; }
.offer-box, .not-box {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(17,16,11,.1);
}
.offer-box { background: #17163c; color: var(--paper); }
.not-box { background: #f1ead7; }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
  font-weight: 950;
}

.final-cta {
  background:
    radial-gradient(circle at 16% 28%, rgba(245,187,6,.18), transparent 26rem),
    linear-gradient(135deg, #17163c, #100f24);
}
.form-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(32px, 6vw, 70px);
  align-items: start;
}
.final-cta p { color: rgba(255,253,242,.74); }
.contact-note {
  margin-top: 30px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: rgba(255,253,242,.78);
}
.contact-note strong { display: block; color: var(--paper); margin-bottom: 6px; }
.contact-note a { color: var(--yellow); font-weight: 850; }

.lead-form {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius-xl);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.lead-form label { display: grid; gap: 8px; font-weight: 850; }
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 1px solid rgba(17,16,11,.16);
  border-radius: 14px;
  background: #fffaf0;
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
}
.lead-form input:focus, .lead-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245,187,6,.22);
}
.lead-form textarea { resize: vertical; min-height: 130px; }
.form-button { width: 100%; border: 0; margin-top: 4px; }
.privacy-line, .form-status {
  margin: 0;
  color: var(--muted-dark);
  font-size: .92rem;
  line-height: 1.45;
}
.form-status { min-height: 1.35em; color: #246342; font-weight: 750; }

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(7,7,18,.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.site-footer img { width: 170px; max-height: 56px; object-fit: contain; object-position: left center; }
.site-footer p { margin: 0; color: rgba(255,253,242,.68); }
.site-footer a { color: rgba(255,253,242,.78); text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: var(--yellow); }

@media (max-width: 920px) {
  .site-header { align-items: flex-start; border-radius: 28px; }
  .site-header nav { justify-content: flex-end; }
  .hero-grid, .split, .form-grid, .offer-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: auto; }
  .image-frame img { min-height: 380px; }
  .diagnosis-card { position: relative; right: auto; bottom: auto; margin: -60px auto 0; }
  .trust-row, .result-grid, .timeline { grid-template-columns: 1fr; }
  .image-stack { min-height: 390px; }
  .offer-grid > div:first-child { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .section-pad { padding: 68px 0; }
  .site-header { position: relative; margin-top: 10px; width: calc(100% - 20px); padding: 14px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .site-header .nav-cta { padding: 10px 12px; font-size: .86rem; }
  h1 { font-size: clamp(3rem, 17vw, 4.7rem); max-width: 9ch; }
  h2 { font-size: clamp(2.1rem, 10vw, 3.05rem); }
  .hero-actions .button { width: 100%; }
  .trust-row li { padding: 14px; }
  .image-frame { transform: none; border-radius: 24px; }
  .image-frame img { min-height: 330px; }
  .image-stack { min-height: 320px; }
  .image-stack img { width: 78%; }
  .lever-list div { grid-template-columns: 1fr; gap: 6px; }
  .result-card, .timeline article, .offer-box, .not-box { padding: 22px; }
  .footer-grid nav { align-items: flex-start; flex-direction: column; }
}
