:root {
  --cyan: #10f5e5;
  --cyan-soft: #98fff8;
  --green: #a6ff00;
  --green-glow: rgba(166,255,0,.35);
  --black: #020606;
  --deep: #062b29;
  --white: #f5fffd;
  --muted: #b8c2c0;
  --dim: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }

/* ─── Header ─────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px clamp(24px, 5vw, 108px);
  background: linear-gradient(180deg, rgba(2,6,6,.84), transparent);
}

.brand img {
  display: block;
  width: min(210px, 48vw);
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

nav a:hover { color: var(--cyan); }

.nav-cta {
  padding: 12px 18px;
  color: var(--black);
  background: var(--green);
  box-shadow: 0 0 28px var(--green-glow);
}

/* ─── Mobile menu toggle ─────────────────────────────────── */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  margin: -10px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform .25s, opacity .25s;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ─── Shared layout helpers ───────────────────────────────── */

.hero,
.section,
.image-band,
.proof,
.process,
.cta {
  position: relative;
  overflow: hidden;
}

.section::before,
.proof::before,
.process::before,
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 58%, rgba(16,245,229,.22), transparent 28%),
    linear-gradient(90deg, rgba(5,70,65,.55), transparent 34%, rgba(5,70,65,.42));
}

/* ─── Hero ────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: 118px clamp(24px, 5vw, 108px) 58px;
  background: var(--black);
}

.hero-copy,
.hero-visual,
.section > *,
.image-band-copy,
.proof > *,
.process > *,
.cta > * {
  position: relative;
  z-index: 1;
}

/* ─── Typography ──────────────────────────────────────────── */

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1,
h2 {
  margin-bottom: 28px;
  font-family: "Arial Black", Impact, Haettenschweiler, sans-serif;
  text-transform: uppercase;
  letter-spacing: -.025em;
}

h1 {
  max-width: 980px;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: .92;
}

h2 {
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: .95;
}

.outline {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--cyan);
  text-stroke: 1.4px var(--cyan);
}

h3 {
  font-family: "Arial Black", Impact, sans-serif;
  text-transform: uppercase;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -.015em;
}

.lead,
.text-stack p,
.cards p,
.process p,
.proof-copy p,
.cta p,
.image-band-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.62;
}

/* ─── Hero actions ────────────────────────────────────────── */

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.button.primary {
  color: var(--black);
  background: var(--green);
  box-shadow: 0 0 32px var(--green-glow);
}

.button.secondary {
  color: var(--cyan);
  border: 2px solid var(--cyan);
}

.hero-visual {
  min-height: 620px;
}

.hero-visual img {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(560px, 96vw);
  max-height: 82vh;
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(-3deg);
  filter: drop-shadow(0 0 38px rgba(16,245,229,.35)) drop-shadow(0 38px 70px rgba(0,0,0,.7));
}

/* ─── Stats band ──────────────────────────────────────────── */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--deep);
  border-top: 1px solid rgba(16,245,229,.2);
  border-bottom: 1px solid rgba(16,245,229,.2);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(28px, 4vw, 52px) 20px;
  text-align: center;
  border-right: 1px solid rgba(16,245,229,.14);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  color: var(--cyan);
  letter-spacing: -.02em;
}

.stat-plus {
  font-size: .75em;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

/* ─── Sections ────────────────────────────────────────────── */

.section {
  padding: clamp(76px, 9vw, 132px) clamp(24px, 5vw, 108px);
  background: var(--black);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(38px, 7vw, 100px);
}

/* ─── Pain section ────────────────────────────────────────── */

.pain-section {
  background: rgba(6, 43, 41, 0.45);
}

.pain-section h2 {
  margin-bottom: 48px;
}

.pain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
}

.pain-list li {
  display: flex;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--dim);
  background: rgba(255,255,255,.03);
}

.pain-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cyan);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.pain-list strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.pain-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ─── Cards ───────────────────────────────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cards-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

.section-cta { margin-top: clamp(36px, 4vw, 52px); }

.cards article {
  min-height: 270px;
  padding: 34px;
  border: 3px solid var(--cyan);
  background: linear-gradient(180deg, rgba(16,245,229,.12), rgba(255,255,255,.03));
  box-shadow: 0 0 26px rgba(16,245,229,.14);
}

/* ─── Image band ──────────────────────────────────────────── */

.image-band {
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  padding: clamp(44px, 7vw, 100px) clamp(24px, 5vw, 108px);
  background: var(--black);
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: .58;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 54%, rgba(16,245,229,.18), transparent 26%),
    linear-gradient(90deg, rgba(2,6,6,.94), rgba(2,6,6,.36) 52%, rgba(2,6,6,.9));
}

.image-band-copy {
  max-width: 820px;
}

/* ─── Proof / Testimonial ─────────────────────────────────── */

.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  padding: clamp(76px, 9vw, 132px) clamp(24px, 5vw, 108px);
  background: var(--black);
}

.proof-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 4px solid var(--cyan);
  box-shadow: 0 0 36px rgba(16,245,229,.24);
}

.proof-img-wrap {
  flex-shrink: 0;
}

.proof-img-wrap img {
  width: 200px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.proof-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.quote {
  color: var(--white);
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.4;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.quote-result {
  color: var(--cyan-soft);
}

.quote-meta {
  margin: 20px 0 6px;
  color: var(--cyan);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.quote-result-stat {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ─── Process ─────────────────────────────────────────────── */

.process {
  padding: clamp(76px, 9vw, 132px) clamp(24px, 5vw, 108px);
  background: var(--black);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.steps div {
  min-height: 260px;
  padding: 28px;
  border-top: 5px solid var(--cyan);
  background: rgba(255,255,255,.055);
}

.steps span {
  display: block;
  margin-bottom: 48px;
  color: var(--cyan);
  font-size: 28px;
  font-weight: 900;
}

/* ─── CTA ─────────────────────────────────────────────────── */

.cta {
  margin: clamp(24px, 5vw, 76px);
  padding: clamp(52px, 8vw, 96px);
  border: 4px solid var(--cyan);
  background: var(--black);
  box-shadow: 0 0 42px rgba(16,245,229,.18);
}

.cta h2 { max-width: 980px; }
.cta p { max-width: 760px; }

/* ─── Footer ──────────────────────────────────────────────── */

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(24px, 5vw, 108px);
  color: rgba(255,255,255,.68);
  background: var(--black);
  border-top: 1px solid var(--dim);
  font-size: 13px;
}

/* ─── Responsive ──────────────────────────────────────────── */

@media (max-width: 1100px) {
  .proof-card {
    grid-template-columns: 160px 1fr;
  }
  .proof-img-wrap img {
    width: 160px;
  }
}

@media (max-width: 980px) {
  nav a { display: none; }
  .menu-toggle { display: flex; }

  .site-header.nav-open nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    background: rgba(2, 6, 6, .97);
    padding: 24px;
    font-size: 20px;
    letter-spacing: .06em;
  }

  .site-header.nav-open nav a {
    display: block;
    color: var(--white);
    text-align: center;
  }

  .site-header.nav-open nav a:hover { color: var(--cyan); }

  .site-header.nav-open nav .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    color: var(--black);
    background: var(--cyan);
    padding: 16px 32px;
    margin-top: 8px;
    box-shadow: 0 0 28px rgba(16, 245, 229, .4);
    font-size: 14px;
  }

  .site-header.nav-open .menu-toggle {
    position: absolute;
    top: 26px;
    right: clamp(24px, 5vw, 108px);
    z-index: 31;
  }

  .image-band { min-height: 540px; }

  .hero,
  .split,
  .proof {
    grid-template-columns: 1fr;
  }

  .cards,
  .steps,
  .pain-list,
  .stats-band {
    grid-template-columns: 1fr 1fr;
  }

  .hero { min-height: auto; }

  .hero-visual { min-height: 460px; }

  .stat { border-right: none; border-bottom: 1px solid rgba(16,245,229,.14); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(16,245,229,.14); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .proof-card {
    grid-template-columns: 1fr;
  }

  .proof-img-wrap img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-position: center 20%;
  }
}

/* ─── Lead magnet teaser (homepage) ──────────────────── */

.leadmagnet-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  background: rgba(6, 43, 41, 0.35);
  border-top: 1px solid rgba(16,245,229,.14);
  border-bottom: 1px solid rgba(16,245,229,.14);
}

.check-bullets {
  list-style: none;
  margin: 24px 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 17px);
}

.check-bullets li::before {
  content: "✓";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

/* ─── Mock report card ────────────────────────────────── */

.mock-report {
  padding: 32px;
  border: 2px solid rgba(16,245,229,.35);
  background: rgba(6, 43, 41, 0.65);
  box-shadow: 0 0 40px rgba(16,245,229,.1);
}

.mock-report-header {
  margin-bottom: 28px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cyan);
  opacity: .7;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--muted);
}

.mock-bar > span:first-child {
  flex-shrink: 0;
  width: 150px;
}

.mock-bar-track {
  flex: 1;
  min-width: 30px;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 3px;
  overflow: hidden;
}

.mock-bar-fill {
  height: 100%;
  background: var(--cyan);
  border-radius: 3px;
  opacity: .65;
}

.mock-bar-pct {
  flex-shrink: 0;
  width: 34px;
  text-align: right;
  font-weight: 700;
  color: var(--white);
  font-size: 12px;
}

.mock-report-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(16,245,229,.15);
  font-size: 14px;
  color: var(--muted);
}

.mock-report-footer strong { color: var(--cyan); }

/* ─── Check page hero ─────────────────────────────────── */

.check-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 118px clamp(24px, 5vw, 108px) 72px;
  background:
    linear-gradient(90deg, rgba(2,6,6,.98), rgba(2,6,6,.82)),
    url("/assets/grid-bg.jpg");
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.check-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 58%, rgba(16,245,229,.22), transparent 28%),
    linear-gradient(90deg, rgba(5,70,65,.55), transparent 34%, rgba(5,70,65,.42));
}

.check-hero-copy,
.check-hero-form {
  position: relative;
  z-index: 1;
}

/* ─── Check list (check page) ─────────────────────────── */

.check-list {
  list-style: none;
  margin: 28px 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.4;
}

.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

/* ─── Form card ───────────────────────────────────────── */

.form-card {
  padding: 38px;
  border: 2px solid var(--cyan);
  background: rgba(6, 43, 41, 0.55);
  box-shadow: 0 0 48px rgba(16,245,229,.14);
}

.form-card-title {
  margin: 0 0 28px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cyan);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

.form-input {
  padding: 13px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(16,245,229,.28);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(255,255,255,.25); }

.form-input:focus {
  border-color: var(--cyan);
  background: rgba(16,245,229,.05);
}

.form-btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  background: var(--green);
  color: var(--black);
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  box-shadow: 0 0 28px var(--green-glow);
  transition: opacity .2s;
}

.form-btn:hover { opacity: .88; }
.form-btn:disabled { opacity: .5; cursor: not-allowed; }

.form-trust {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.32);
  line-height: 1.5;
}

/* ─── Form success state ──────────────────────────────── */

.form-success {
  padding: 52px 38px;
  border: 2px solid var(--cyan);
  background: rgba(6, 43, 41, 0.55);
  box-shadow: 0 0 48px rgba(16,245,229,.14);
  text-align: center;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
}

.form-success h3 {
  color: var(--cyan);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── Responsive additions ────────────────────────────── */

@media (max-width: 980px) {
  .check-hero,
  .leadmagnet-section {
    grid-template-columns: 1fr;
  }

  .check-hero {
    min-height: auto;
    padding: 96px clamp(20px, 5vw, 48px) 56px;
    gap: 32px;
  }

  /* Form above copy on mobile — form is the goal, copy is supporting */
  .check-hero-form { order: -1; }

  .mock-bar > span:first-child { width: 130px; }

  .leadmagnet-section { gap: 32px; }
}

@media (max-width: 560px) {
  .check-hero {
    padding: 86px 20px 44px;
    gap: 24px;
  }

  .check-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    margin-bottom: 12px;
  }

  .check-hero .lead { font-size: 16px; }

  .check-list {
    margin: 14px 0 0;
    gap: 9px;
  }

  .check-list li { font-size: 14px; }

  .form-card { padding: 22px 18px; }

  .form-success { padding: 32px 18px; }

  .form-group { margin-bottom: 14px; }

  .mock-report { padding: 20px 18px; }

  .mock-bar { gap: 8px; }

  .mock-bar > span:first-child {
    width: 100px;
    font-size: 11px;
  }

  .mock-bar-pct { font-size: 11px; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(36px, 11vw, 56px); }
  h2 { font-size: clamp(26px, 8vw, 40px); }

  .hero-actions,
  .cards,
  .steps,
  .pain-list,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .hero-actions { flex-direction: column; }
  .button { width: 100%; }

  .hero-visual {
    min-height: 0;
    display: flex;
    justify-content: center;
    padding-top: 8px;
  }

  .hero-visual img {
    position: static;
    inset: auto;
    width: min(260px, 68vw);
    max-height: none;
    transform: rotate(-3deg);
  }

  .image-band { min-height: 420px; }

  .cta {
    margin: 16px;
    padding: 36px 28px;
  }

  .stat { border-right: none; border-bottom: 1px solid rgba(16,245,229,.14); }
  .stat:last-child { border-bottom: none; }
  .stat:nth-child(odd) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: 1px solid rgba(16,245,229,.14); }

  footer { flex-direction: column; }

  /* Check page */
  .check-hero {
    padding: 86px 20px 44px;
    gap: 24px;
  }
  .check-hero h1 { font-size: clamp(34px, 10vw, 48px); margin-bottom: 12px; }
  .check-hero .lead { font-size: 16px; }
  .check-list { margin: 14px 0 0; gap: 9px; }
  .check-list li { font-size: 14px; }
  .form-card { padding: 22px 18px; }
  .form-success { padding: 32px 18px; }
  .form-group { margin-bottom: 14px; }
  .mock-report { padding: 20px 18px; }
  .mock-bar { gap: 8px; }
  .mock-bar > span:first-child { width: 100px; font-size: 11px; }
  .mock-bar-pct { font-size: 11px; }

  /* Quiz page */
  .quiz-hero { padding: 86px 20px 44px; }
  .quiz-container { padding: 0; }
  .quiz-q { font-size: clamp(20px, 7vw, 28px); margin-bottom: 20px; }
  .quiz-option { padding: 14px 16px; font-size: 15px; }
  .quiz-next { width: 100%; }
  .quiz-diag-grid { gap: 10px; }
  .quiz-diag-card { padding: 18px 20px; }
  .quiz-potenzial { font-size: clamp(26px, 8vw, 36px); }
  .quiz-system { padding: 20px; }
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card { padding: 28px 22px; }
}

/* ─── Tools section (homepage) ────────────────────────── */

.tools-section { background: rgba(6, 43, 41, 0.35); }

.tools-intro {
  max-width: 640px;
  margin-bottom: 48px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.tool-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 36px;
  border: 2px solid rgba(16,245,229,.28);
  background: rgba(6,43,41,.5);
  box-shadow: 0 0 28px rgba(16,245,229,.07);
}

.tool-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(16,245,229,.12);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  align-self: flex-start;
}

.tool-card h3 { margin-bottom: 0; }

.tool-card p {
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  margin: 0;
}

.tool-card .button { align-self: flex-start; margin-top: 6px; }

@media (max-width: 1100px) {
  .tools-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .tools-grid { grid-template-columns: 1fr; }
}

/* ─── Quiz page ───────────────────────────────────────── */

.quiz-hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 118px clamp(24px, 5vw, 108px) 80px;
  background:
    linear-gradient(90deg, rgba(2,6,6,.98), rgba(2,6,6,.82)),
    url("/assets/grid-bg.jpg");
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.quiz-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 42%, rgba(16,245,229,.18), transparent 32%),
    linear-gradient(90deg, rgba(5,70,65,.5), transparent 40%, rgba(5,70,65,.35));
}

.quiz-container {
  width: 100%;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.quiz-hero h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: .95;
  margin-bottom: 20px;
}

.quiz-hero h2,
.quiz-result-headline h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: .97;
}

/* Intro screen */
.quiz-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 36px 0 44px;
}

.quiz-intro-stat {
  padding: 20px;
  border: 1px solid rgba(16,245,229,.2);
  background: rgba(6,43,41,.5);
  text-align: center;
}

.quiz-intro-stat strong {
  display: block;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 28px;
  color: var(--cyan);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}

.quiz-intro-stat span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

/* Progress */
.quiz-progress-wrap {
  height: 3px;
  background: rgba(255,255,255,.08);
  margin-bottom: 22px;
  border-radius: 2px;
  overflow: hidden;
}

.quiz-bar {
  height: 100%;
  background: var(--cyan);
  border-radius: 2px;
  transition: width .45s ease;
  width: 0%;
}

.quiz-step-lbl {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(16,245,229,.7);
}

/* Question */
.quiz-q {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(22px, 3.2vw, 34px);
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0 0 28px;
}

/* Options */
.quiz-options { display: flex; flex-direction: column; gap: 10px; }

.quiz-option {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(16,245,229,.18);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s;
  line-height: 1.4;
}

.quiz-option:hover:not(:disabled) {
  border-color: var(--cyan);
  background: rgba(16,245,229,.07);
}

.quiz-option.selected {
  border-color: var(--cyan);
  background: rgba(16,245,229,.12);
  color: var(--cyan);
}

.quiz-option:disabled { cursor: default; }

/* Feedback box */
.quiz-feedback {
  margin: 20px 0 0;
  padding: 16px 20px;
  border-left: 3px solid var(--cyan);
  background: rgba(16,245,229,.06);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Navigation */
.quiz-nav {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.quiz-next {
  padding: 15px 32px;
  background: var(--green);
  color: var(--black);
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  box-shadow: 0 0 24px var(--green-glow);
  transition: opacity .2s;
}

.quiz-next:hover { opacity: .88; }

/* Result */
.quiz-result-headline {
  margin-bottom: 32px;
}

.quiz-diag-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.quiz-diag-card {
  padding: 22px 26px;
  border: 1px solid rgba(16,245,229,.2);
  background: rgba(6,43,41,.55);
}

.quiz-diag-lbl {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(16,245,229,.7);
}

.quiz-diag-val {
  margin: 0;
  font-size: 16px;
  color: var(--white);
  line-height: 1.5;
}

.quiz-potenzial {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  color: var(--cyan);
  letter-spacing: -.02em;
  line-height: 1;
}

.quiz-system {
  padding: 28px 32px;
  border: 2px solid var(--cyan);
  background: rgba(6,43,41,.6);
  box-shadow: 0 0 36px rgba(16,245,229,.1);
  margin-bottom: 44px;
}

.quiz-system p { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0 0 16px; }

.quiz-system ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quiz-system li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
}

.quiz-system li::before { content: "–"; color: var(--cyan); font-weight: 900; }

/* Contact section on result */
.quiz-contact {
  padding-top: 36px;
  border-top: 1px solid rgba(16,245,229,.15);
}

.quiz-contact-title {
  margin: 0 0 24px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.1;
}

@media (max-width: 980px) {
  .quiz-hero { min-height: auto; }
  .quiz-intro-stats { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
}

/* ─── Wettbewerbsanalyse ──────────────────────────────── */

.wa-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}

.wa-tag {
  padding: 5px 13px;
  background: rgba(16,245,229,.12);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.wa-section-panel {
  background: rgba(6,43,41,.28);
  border: 1px solid rgba(16,245,229,.14);
  padding: 26px 28px 24px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.wa-section-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent 60%);
}

.wa-section-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.wa-section-num {
  flex-shrink: 0;
  font-family: "Arial Black", Impact, Haettenschweiler, sans-serif;
  font-size: 30px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
  margin-top: 1px;
}

.wa-section-title {
  margin: 0 0 4px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.wa-section-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
  font-weight: 400;
}

.wa-bench-row {
  margin-bottom: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(16,245,229,.14);
  background: rgba(6,43,41,.45);
}

.wa-bench-name {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.wa-bench-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.wa-bench-item:last-of-type { margin-bottom: 0; }

.wa-bench-item-label {
  flex-shrink: 0;
  width: 110px;
  font-size: 11px;
  color: rgba(255,255,255,.42);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.wa-bench-track {
  flex: 1;
  min-width: 0;
  height: 7px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  overflow: hidden;
}

.wa-bench-fill {
  height: 100%;
  border-radius: 4px;
  transition: width .6s ease;
}

.wa-bench-fill--avg { background: rgba(255,255,255,.22); }
.wa-bench-fill--top { background: var(--cyan); }

.wa-bench-val {
  flex-shrink: 0;
  width: 56px;
  text-align: right;
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
}

.wa-bench-val--top { color: var(--cyan); }

.wa-bench-delta {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: .02em;
}

.wa-weakness-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.wa-weakness-card {
  padding: 22px 26px;
  border: 1px solid rgba(16,245,229,.18);
  background: rgba(6,43,41,.5);
}

.wa-weakness-title {
  margin: 0 0 8px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
}

.wa-weakness-desc {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.wa-gate-teaser {
  padding: 32px;
  margin-bottom: 28px;
  border: 1px solid rgba(16,245,229,.2);
  background: rgba(6,43,41,.4);
  text-align: center;
}

.wa-gate-teaser-count {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(42px, 7vw, 64px);
  color: var(--cyan);
  letter-spacing: -.02em;
  line-height: 1;
  margin: 0 0 10px;
}

.wa-gate-teaser-label {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.wa-potenzial-box {
  padding: 36px;
  border: 2px solid var(--cyan);
  background: rgba(6,43,41,.6);
  box-shadow: 0 0 36px rgba(16,245,229,.1);
  margin-bottom: 36px;
  text-align: center;
}

.wa-potenzial-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(16,245,229,.7);
}

.wa-potenzial-amount {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  color: var(--cyan);
  letter-spacing: -.02em;
  line-height: 1;
  margin: 0 0 10px;
}

.wa-potenzial-sub {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.wa-result-cta {
  padding-top: 36px;
  border-top: 1px solid rgba(16,245,229,.15);
  margin-top: 8px;
  text-align: center;
}

@media (max-width: 560px) {
  .wa-bench-item-label { width: 78px; font-size: 10px; }
  .wa-bench-val        { width: 46px; font-size: 13px; }
  .wa-bench-row        { padding: 16px 16px; }
  .wa-weakness-card    { padding: 18px 18px; }
  .wa-potenzial-box    { padding: 24px 18px; }
  .wa-gate-teaser      { padding: 22px 18px; }
}

/* ─── Rounded corners ────────────────────────────────────── */

.button,
.nav-cta { border-radius: 5px; }

.cards article,
.tool-card,
.pain-list li,
.steps div,
.mock-report,
.form-card,
.form-success,
.quiz-system,
.quiz-option,
.quiz-diag-card,
.wa-section-panel,
.wa-bench-row,
.wa-weakness-card,
.wa-potenzial-box,
.wa-gate-teaser { border-radius: 8px; }

.proof-card { border-radius: 10px; }
.cta { border-radius: 16px; }

/* ─── Hero countdown ─────────────────────────────────────── */

.hero-countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 30px;
  padding: 13px 20px;
  background: rgba(166,255,0,.07);
  border: 1px solid rgba(166,255,0,.28);
  border-radius: 6px;
  width: fit-content;
}

.countdown-badge {
  padding: 3px 9px;
  background: var(--green);
  color: var(--black);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 3px;
}

.countdown-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.countdown-units {
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 38px;
}

.countdown-unit span {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 22px;
  color: var(--green);
  line-height: 1;
  letter-spacing: -.01em;
}

.countdown-unit small {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: 2px;
}

.countdown-colon {
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
  padding-bottom: 14px;
  opacity: .7;
}

/* ─── Hero social proof ──────────────────────────────────── */

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.hero-proof-faces {
  display: flex;
  align-items: center;
}

.hero-proof-faces img,
.proof-face {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--black);
  object-fit: cover;
  object-position: center 15%;
  flex-shrink: 0;
}

.proof-face { margin-left: -10px; }

.proof-face--a { background: linear-gradient(135deg, #2a7f7a, #10f5e5); }
.proof-face--b { background: linear-gradient(135deg, #1a5f3a, #a6ff00); }
.proof-face--c { background: linear-gradient(135deg, #4a2f6a, #8b5cf6); }

.hero-proof-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-proof-stars {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 3px;
}

.hero-proof-text span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* ─── Testimonials grid ──────────────────────────────────── */

.testimonials-section {
  background: rgba(6, 43, 41, 0.25);
  border-top: 1px solid rgba(16,245,229,.1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.testi-card {
  padding: 32px;
  border: 1px solid rgba(16,245,229,.2);
  background: rgba(6,43,41,.4);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testi-card--featured {
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(16,245,229,.12);
}

.testi-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 2px solid var(--cyan);
}

.testi-meta {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--cyan);
}

.testi-meta span {
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.testi-quote {
  color: var(--white);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.58;
  margin: 0;
  flex: 1;
}

.testi-result {
  padding: 10px 14px;
  background: rgba(16,245,229,.07);
  border-left: 3px solid var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--cyan);
  border-radius: 0 4px 4px 0;
}

.testi-card--stat {
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 44px 32px;
}

.testi-stat-num {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(52px, 5.5vw, 72px);
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -.02em;
}

.testi-stat-num span { font-size: .6em; }

.testi-stat-label {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
}

.testi-stat-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 980px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ─── ROI Rechner ─────────────────────────────────────────── */

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid var(--black);
  box-shadow: 0 0 8px rgba(16,245,229,.5);
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid var(--black);
  box-shadow: 0 0 8px rgba(16,245,229,.5);
  cursor: pointer;
  border: none;
}

.roi-slider-group { margin-bottom: 22px; }

.roi-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.roi-slider-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

.roi-slider-val {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 20px;
  color: var(--cyan);
  letter-spacing: -.01em;
}

.roi-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 10px;
  color: rgba(255,255,255,.22);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.roi-mini-results {
  border-top: 1px solid rgba(16,245,229,.15);
  padding-top: 18px;
}

.roi-mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.roi-mini-row--last { border-bottom: none; }

.roi-mini-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.roi-mini-num {
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 19px;
  color: var(--white);
  letter-spacing: -.01em;
}

.roi-mini-num--cyan  { color: var(--cyan); }
.roi-mini-num--green { color: var(--green); }
.roi-mini-num--warn  { color: #f87171; }

/* ─── Agentur Fit Test ─────────────────────────────────────── */

.fit-score-wrap { margin-bottom: 28px; }

.fit-score-track {
  height: 10px;
  background: rgba(255,255,255,.08);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 10px;
}

.fit-score-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 1s ease;
}

.fit-score-fill--low  { background: #f87171; }
.fit-score-fill--mid  { background: #fbbf24; }
.fit-score-fill--high { background: var(--green); }

.fit-score-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.fit-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 24px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 4px;
}

.fit-category-badge--low  { background: rgba(248,113,113,.12); color: #f87171;      border: 1px solid rgba(248,113,113,.28); }
.fit-category-badge--mid  { background: rgba(251,191,36,.1);   color: #fbbf24;      border: 1px solid rgba(251,191,36,.28); }
.fit-category-badge--high { background: rgba(166,255,0,.08);   color: var(--green); border: 1px solid rgba(166,255,0,.28); }

.fit-findings {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.fit-finding {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  border: 1px solid rgba(16,245,229,.14);
  background: rgba(6,43,41,.4);
  border-radius: 8px;
}

.fit-finding-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  border-radius: 50%;
  margin-top: 2px;
}

.fit-finding-icon--ok   { background: rgba(166,255,0,.15);   color: var(--green); }
.fit-finding-icon--warn { background: rgba(251,191,36,.15);  color: #fbbf24; }
.fit-finding-icon--bad  { background: rgba(248,113,113,.15); color: #f87171; }

.fit-finding-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.fit-finding-body strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════
   LIGHT MODE
   Body ist jetzt weiß. Dunkle Sektionen sind explizit markiert.
═══════════════════════════════════════════════════════════ */

/* ── Base ────────────────────────────────────────────────── */

body {
  background: #ffffff;
  color: #0d1f1d;
}

/* ── Header: immer dunkel ────────────────────────────────── */

.site-header {
  background: rgba(2,6,6,.97);
  border-bottom: 1px solid rgba(16,245,229,.08);
  padding-top: 18px;
  padding-bottom: 18px;
}

/* ── Dunkle Sektionen: weißen Text wiederherstellen ─────── */

.hero,
.stats-band,
.image-band,
.cta,
footer {
  color: var(--white);
}

.hero .lead { color: var(--muted); }

.image-band-copy p,
.cta p {
  color: var(--muted);
}

/* ── Helle Sektionen: Text-Overrides ─────────────────────── */

.lead               { color: #4a6360; }
.cards p            { color: #4a6360; }
.text-stack p       { color: #4a6360; }
.proof-copy p       { color: #4a6360; }

.section h2, .section h3,
.process h2, .process h3,
.proof h2,
.testimonials-section h2,
.tools-section h2   { color: #0d1f1d; }

/* ── Sektions-Hintergründe → weiß/hellgrau ──────────────── */

.section   { background: #ffffff; }
.process   { background: #f6f7f7; }
.proof     { background: #ffffff; }

.section::before,
.proof::before,
.process::before { background: none; }

/* ── Pain section → hellgrau ─────────────────────────────── */

.pain-section { background: #f6f7f7; }

.pain-list li {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.pain-list strong { color: #0d1f1d; }
.pain-list p      { color: #4a5e5c; }

/* ── Cards ───────────────────────────────────────────────── */

.cards article {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.cards article h3 { color: #0d1f1d; }

/* ── Steps ───────────────────────────────────────────────── */

.steps div {
  background: #ffffff;
  border-top: 5px solid #0d1f1d;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.steps h3 { color: #0d1f1d; }
.steps p  { color: #4a5e5c; }

/* ── Proof card ──────────────────────────────────────────── */

.proof-card {
  background: #ffffff;
  border: 2px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.quote        { color: #0d1f1d; }
.quote-result { color: #0d1f1d; }

/* ── Testimonials ────────────────────────────────────────── */

.testimonials-section {
  background: #f6f7f7;
  border-top: 1px solid rgba(0,0,0,.06);
}

.testi-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.07);
}

.testi-card--featured {
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.testi-quote      { color: #0d1f1d; }
.testi-stat-label { color: #0d1f1d; }
.testi-stat-desc  { color: #4a5e5c; }

/* ── Tools-Sektion ───────────────────────────────────────── */

.tools-section {
  background: #f6f7f7;
  border-top: 1px solid rgba(0,0,0,.06);
}

.tool-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
}

.tool-card h3 { color: #0d1f1d; }
.tool-card p  { color: #4a5e5c; }

/* ── Check/Bullet-Listen ─────────────────────────────────── */

.check-bullets li { color: #4a5e5c; }

.check-hero .check-list li,
.check-hero .check-bullets li { color: #4a5e5c; }

/* ── Form-Card: hell ─────────────────────────────────────── */

.form-card {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.09);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.check-hero .form-card,
.quiz-hero .form-card {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.09);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.form-input {
  background: #f9fafa;
  border: 1px solid rgba(0,0,0,.12);
  color: #0d1f1d;
}

.form-input::placeholder { color: rgba(13,31,29,.35); }

.form-input:focus {
  border-color: #0d1f1d;
  background: #ffffff;
}

.check-hero .form-input,
.quiz-hero .form-input {
  background: #f9fafa;
  border: 1px solid rgba(0,0,0,.12);
  color: #0d1f1d;
}

.check-hero .form-input::placeholder,
.quiz-hero .form-input::placeholder { color: rgba(13,31,29,.35); }

.check-hero .form-input:focus,
.quiz-hero .form-input:focus { background: #ffffff; border-color: #0d1f1d; }

.form-success {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.09);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.form-success p  { color: #4a5e5c; }
.form-success h3 { color: #0d1f1d; }

.check-hero .form-success,
.quiz-hero .form-success {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.09);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

/* ── Quiz-Ergebnis: Hero wechselt zu hell ─────────────────── */

.quiz-hero.show-result {
  background: #ffffff;
  color: #0d1f1d;
}

.quiz-hero.show-result::before { display: none; }

.quiz-hero.show-result .quiz-result-headline h2,
.quiz-hero.show-result h2 { color: #0d1f1d; }

.quiz-hero.show-result .form-card {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.09);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.quiz-hero.show-result .form-input {
  background: #f9fafa;
  border: 1px solid rgba(0,0,0,.12);
  color: #0d1f1d;
}

.quiz-hero.show-result .form-input::placeholder { color: rgba(13,31,29,.35); }
.quiz-hero.show-result .form-input:focus { border-color: #0d1f1d; background: #ffffff; }

.quiz-hero.show-result .form-success {
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,.09);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.quiz-hero.show-result .form-success p  { color: #4a5e5c; }
.quiz-hero.show-result .form-success h3 { color: #0d1f1d; }

.quiz-diag-card {
  background: #f6f7f7;
  border: 1px solid rgba(0,0,0,.07);
}

.quiz-diag-val { color: #0d1f1d; }

.quiz-system {
  background: #f6f7f7;
  border: 2px solid rgba(0,0,0,.08);
  box-shadow: none;
}

.quiz-system p  { color: #4a5e5c; }
.quiz-system li { color: #4a5e5c; }

.quiz-contact      { border-top: 1px solid rgba(0,0,0,.08); }
.quiz-contact-title { color: #0d1f1d; }

/* ── Wettbewerbsanalyse → hell ───────────────────────────── */

.wa-section-panel {
  background: #f6f7f7;
  border: 1px solid rgba(0,0,0,.07);
}

.wa-section-panel::before { display: none; }

.wa-section-title { color: #0d1f1d; }
.wa-section-sub   { color: #4a5e5c; }

.wa-bench-row {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.07);
}

.wa-bench-track     { background: rgba(0,0,0,.08); }
.wa-bench-fill--avg { background: rgba(0,0,0,.18); }

.wa-bench-name       { color: #4a5e5c; }
.wa-bench-item-label { color: rgba(13,31,29,.38); }
.wa-bench-val        { color: #0d1f1d; }

.wa-weakness-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
}

.wa-weakness-title { color: #0d1f1d; }
.wa-weakness-desc  { color: #4a5e5c; }

.wa-gate-teaser {
  background: #f6f7f7;
  border: 1px solid rgba(0,0,0,.07);
}

.wa-gate-teaser-label { color: #4a5e5c; }

.wa-potenzial-box {
  background: #f6f7f7;
  border: 2px solid rgba(0,0,0,.1);
}

.wa-potenzial-sub { color: #4a5e5c; }

.wa-result-cta { border-top: 1px solid rgba(0,0,0,.08); }

/* ── ROI Rechner ─────────────────────────────────────────── */

.roi-mini-results { border-top-color: rgba(0,0,0,.08); }
.roi-mini-lbl     { color: #4a5e5c; }
.roi-mini-num     { color: #0d1f1d; }
.roi-mini-row     { border-bottom-color: rgba(0,0,0,.05); }

/* ── Agentur-Fit-Test ────────────────────────────────────── */

.fit-score-meta { color: #4a5e5c; }

.fit-finding {
  background: #f6f7f7;
  border: 1px solid rgba(0,0,0,.07);
}

.fit-finding-body p      { color: #4a5e5c; }
.fit-finding-body strong { color: #0d1f1d; }

/* ── Cyan nirgends auf weiß ──────────────────────────────────
   #10f5e5 ist auf hellem Hintergrund nicht lesbar.
   Ersatz auf hellen Sektionen: #0a4a44 (dunkles Teal, gleiche Hue).
─────────────────────────────────────────────────────────── */

/* Eyebrow */
.hero .eyebrow,
.check-hero .eyebrow,
.quiz-hero .eyebrow,
.section .eyebrow,
.process .eyebrow,
.proof .eyebrow,
.tools-section .eyebrow,
.testimonials-section .eyebrow    { color: #0a4a44; }

/* Secondary Buttons */
.check-hero .button.secondary,
.quiz-hero .button.secondary,
.tools-section .button.secondary,
.section .button.secondary {
  color: #0d1f1d;
  border-color: #0d1f1d;
}

/* Tool-Tags */
.tool-tag {
  background: rgba(0,0,0,.06);
  color: #0d1f1d;
}

/* Check-Bullets (in Tool-Cards & hellen Sektionen) */
.tools-section .check-bullets li::before,
.section .check-bullets li::before {
  background: #0d1f1d;
  color: var(--white);
}

/* Form-Card-Titel */
.form-card-title { color: #0a4a44; }
.check-hero .form-card-title,
.quiz-hero .form-card-title { color: #0a4a44; }

/* Quiz Schritt-Label im Ergebnis */
.quiz-hero.show-result .quiz-step-lbl { color: #0a4a44; }

/* Quiz-Diag-Label */
.quiz-diag-lbl { color: #0a4a44; }

/* Potenzial-Zahlen */
.quiz-potenzial      { color: #0d1f1d; }
.wa-potenzial-amount { color: #0d1f1d; }
.wa-gate-teaser-count { color: #0d1f1d; }
.roi-mini-num--cyan  { color: #0a4a44; }

/* Benchmark Top-Bars & Werte */
.wa-bench-fill--top { background: #0a4a44; }
.wa-bench-val--top  { color: #0a4a44; }

/* Testimonial-Meta & Result-Tag */
.testi-meta   { color: #0a4a44; }
.testi-result {
  border-left-color: #0a4a44;
  color: #0a4a44;
}

/* Fit-Kategorie Badge: high → dunkel statt grün (grün auf weiß ok, aber border) */
.fit-category-badge--high {
  background: rgba(10,74,68,.08);
  color: #0a4a44;
  border-color: rgba(10,74,68,.25);
}

/* ── Mock-Report → hell ──────────────────────────────────── */

.mock-report {
  background: #eefcfa;
  border: 2px solid rgba(16,245,229,.28);
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
}

.mock-report-header { color: var(--cyan); }
.mock-bar           { color: #4a6360; }
.mock-bar-pct       { color: #0d1f1d; }

.mock-report-footer {
  border-top-color: rgba(16,245,229,.15);
  color: #4a6360;
}

.mock-report-footer strong { color: var(--cyan); }

/* Outline-Text auf Nicht-Hero-Seiten */
.check-hero .outline,
.quiz-hero .outline {
  -webkit-text-stroke: 1.4px #0a4a44;
  text-stroke: 1.4px #0a4a44;
}

/* ── Check-Hero → weiß ─────────────────────────────────────── */

.check-hero {
  background: #ffffff;
  color: #0d1f1d;
}

.check-hero::before { display: none; }
.check-hero .lead   { color: #4a5e5c; }
.check-hero h1, .check-hero h2 { color: #0d1f1d; }

/* ── Quiz-Hero → weiß ──────────────────────────────────────── */

.quiz-hero {
  background: #ffffff;
  color: #0d1f1d;
}

.quiz-hero::before { display: none; }
.quiz-hero .lead   { color: #4a5e5c; }
.quiz-hero h1, .quiz-hero h2 { color: #0d1f1d; }

/* ── Quiz-Komponenten → hell ───────────────────────────────── */

.quiz-intro-stat {
  background: #f6f7f7;
  border: 1px solid rgba(0,0,0,.08);
}

.quiz-intro-stat strong { color: #0a4a44; }
.quiz-intro-stat span   { color: #4a5e5c; }

.quiz-progress-wrap { background: rgba(0,0,0,.08); }
.quiz-bar           { background: #0a4a44; }
.quiz-step-lbl      { color: #0a4a44; }

.quiz-option {
  background: #f6f7f7;
  border: 1px solid rgba(0,0,0,.1);
  color: #0d1f1d;
}

.quiz-option:hover:not(:disabled) {
  border-color: #0a4a44;
  background: rgba(10,74,68,.06);
  color: #0d1f1d;
}

.quiz-option.selected {
  border-color: #0a4a44;
  background: rgba(10,74,68,.1);
  color: #0a4a44;
}

.quiz-feedback {
  border-left-color: #0a4a44;
  background: rgba(10,74,68,.05);
  color: #4a5e5c;
}

/* Form-Trust-Text (war rgba(255,255,255,.32)) */
.form-trust { color: #4a5e5c; }

/* ── Range Inputs → heller Track ───────────────────────────── */

input[type="range"] { background: rgba(0,0,0,.12); }

/* ── ROI Slider Labels → hell ──────────────────────────────── */

.roi-slider-label { color: #4a5e5c; }
.roi-slider-val   { color: #0a4a44; }
.roi-slider-ticks { color: rgba(13,31,29,.35); }
