/* ============================================================
   Andreas Klar · Unabhängigkeitsscore
   Bauform nach den Sieger-LPs aus dem Swipe-Harvest 25.08.2026
   (de-01-verkaufsmaschine-baulig, de-07-schumann-simons):
   dunkler Hero über volle Breite, Zielgruppen-Call-out, Headline,
   drei Häkchen-Bullets, farbiger CTA, Trust direkt darunter,
   rechts das Konversionselement.

   Farben aus Andreas' bestehender Seite (Screenshot Michael,
   06.09.2026): sein Petrolblau als Marken- und Handlungsfarbe,
   dunkles Navy als Fläche, weiße Schrift.
   Keine externen Dependencies, keine Webfonts.
   ============================================================ */

:root {
  --paper: #fbf9f5;
  --paper-warm: #f3f0e8;
  --dark: #16232e;
  --dark-soft: #1e3140;
  --ink: #14140f;
  --ink-soft: #4b4a41;
  --ink-mute: #7d7b70;
  --line: #e3ded2;
  --line-strong: #c9c3b4;
  --accent: #376f8c;
  --accent-deep: #2b596f;
  --accent-ink: #ffffff;
  --card: #ffffff;

  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gap: clamp(52px, 8vw, 92px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-weight: 700; line-height: 1.16; letter-spacing: -0.018em; }
p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }
a { color: var(--accent-deep); }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.wrap-schmal { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav { background: var(--accent); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 14px; padding-bottom: 14px; }
.nav .marke { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; letter-spacing: 0.02em; font-size: 1.02rem; }
.nav .marke img { width: 38px; height: 38px; display: block; }
.nav .marke span { display: block; font-size: 0.66rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-top: 2px; }

/* ---------- Hero ---------- */
.hero {
  background: var(--dark);
  background-image: radial-gradient(120% 100% at 15% 0%, #23414f 0%, var(--dark) 64%);
  color: #fff;
  padding: clamp(34px, 5vw, 58px) 0 clamp(40px, 6vw, 68px);
}
.hero-grid { display: grid; gap: 34px; align-items: start; }
/* Unter 940px wird einspaltig gestapelt. Dann muss die Quizkarte direkt nach
   Headline und Subline kommen, nicht hinter Bullets, CTA und Trust. */
@media (max-width: 939px) {
  /* display:contents loest die Spalte auf, deshalb greift hier der Grid-Gap
     zwischen ALLEN Elementen. Der muss kleiner sein als der Spalten-Gap. */
  .hero-grid { gap: 16px; }
  .hero-kopf { display: contents; }
  .hero-kopf .callout { order: 1; }
  .hero-kopf h1 { order: 2; }
  .hero-kopf .sub { order: 3; }
  .hero-quiz { order: 4; margin: 10px 0 20px; }
  .hero-kopf .checks { order: 5; margin: 0 0 20px; }
  .hero-kopf .hero-cta { order: 6; }
  .hero-kopf .trust { order: 7; }
}
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.02fr 0.98fr; gap: 52px; } }

/* Der Call-out darf nicht untergehen: Versalien, Markenfarbe, eigene Zeile.
   So machen es auch Baulig ("FÜR AGENTUREN, BERATER, COACHES") und Schumann. */
.callout {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #7fbcd8;
  margin-bottom: 16px;
}

.hero h1 { color: #fff; font-size: clamp(1.92rem, 4.3vw, 3.05rem); margin-bottom: 16px; }
.hero h1 b { color: #8fc9e3; font-weight: 700; }
.hero .sub { color: rgba(255, 255, 255, 0.78); font-size: 1.04rem; max-width: 48ch; }

.checks { list-style: none; display: grid; gap: 13px; margin: 26px 0 28px; }
/* Häkchen absolut, nicht als Grid-Spalte: sonst rutscht jedes Element im
   Listentext in eine eigene Spalte und der Satz bricht Wort für Wort um. */
.checks li { position: relative; padding-left: 30px; color: rgba(255, 255, 255, 0.88); font-size: 1rem; line-height: 1.5; }
.checks li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.checks b { color: #fff; }

.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
/* Auf dunklem Grund braucht der Button mehr Helligkeit als sein Nav-Blau. */
.hero .btn { background: #4b93b5; }
.hero .btn:hover { background: #5aa3c6; }
.hero .mikro { color: rgba(255, 255, 255, 0.55); font-size: 0.88rem; }

/* Trust direkt unter dem Button, wie auf Andreas' Seite: Gesichter,
   Sterne, Kundenzahl. */
.trust { display: flex; align-items: center; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.trust .sterne { display: inline-flex; gap: 3px; }
.trust .sterne svg { width: 15px; height: 15px; fill: #f0b429; display: block; }
.trust .zahl { color: rgba(255, 255, 255, 0.82); font-size: 0.88rem; display: block; }

/* ---------- Faktenleiste unter dem Hero ---------- */
.fakten { background: var(--dark-soft); }
.fakten ul {
  list-style: none;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px 34px;
  padding: 12px 24px;
  font-size: 0.8rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Quizkarte ---------- */
.karte {
  background: var(--card);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  color: var(--ink);
}

.fortschritt { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.fortschritt .zahl { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); white-space: nowrap; }
.fortschritt .balken { flex: 1; height: 4px; background: var(--line); border-radius: 999px; overflow: hidden; }
.fortschritt .balken i { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 999px; transition: width 300ms ease; }

.frage { font-size: clamp(1.3rem, 2.7vw, 1.58rem); font-weight: 700; line-height: 1.28; margin-bottom: 22px; }

.optionen { display: grid; gap: 8px; }
.option {
  display: block; width: 100%; text-align: left;
  font: inherit; font-size: 1.06rem; font-weight: 500; line-height: 1.45;
  color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 9px;
  padding: 15px 42px 15px 56px;
  cursor: pointer; position: relative;
  transition: border-color 120ms ease, background 120ms ease;
}
/* Buchstaben-Badge links: gibt der Auswahl einen Anfasser und macht die
   Karte weniger textlastig. */
.option .badge {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #e8eef2; color: var(--accent-deep);
  font-size: 0.86rem; font-weight: 700;
  transition: background 120ms ease, color 120ms ease;
}
.option:hover .badge, .option[aria-current="true"] .badge { background: var(--accent); color: #fff; }

.option::after {
  content: ""; position: absolute; right: 15px; top: 50%;
  width: 7px; height: 7px; margin-top: -4px;
  border-right: 2px solid var(--line-strong); border-top: 2px solid var(--line-strong);
  transform: rotate(45deg); transition: border-color 120ms ease;
}
.option:hover { border-color: var(--accent); background: #fffdf8; }
.option:hover::after { border-color: var(--accent); }
.option:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.option[aria-current="true"] { border-color: var(--accent); background: #fffdf8; }

.quiz-fuss { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.zurueck { background: none; border: none; font: inherit; font-size: 0.92rem; color: var(--ink-mute); cursor: pointer; padding: 12px 2px; }
.zurueck:hover { color: var(--ink); }
.zurueck[hidden] { display: none; }
.quiz-mikro { font-size: 0.88rem; color: var(--ink-soft); margin-left: auto; }

/* Sechs Bereiche als Netzdiagramm: ein Balkenstapel zeigt sechs Zahlen,
   das Netz zeigt eine Form, die man auf einen Blick versteht. */
.radar-zone { display: grid; gap: 24px; align-items: center; }
@media (min-width: 780px) { .radar-zone { grid-template-columns: 380px 1fr; gap: 34px; } }
.radar { max-width: 400px; margin: 0 auto; width: 100%; }
.radar svg { width: 100%; height: auto; display: block; overflow: visible; }
.radar .netz { fill: none; stroke: var(--line); stroke-width: 1; }
.radar .achse { stroke: var(--line); stroke-width: 1; }
.radar .flaeche { fill: rgba(55, 111, 140, 0.22); stroke: var(--accent); stroke-width: 2.5; stroke-linejoin: round; }
.radar .punkt { fill: var(--accent); }
.radar .punkt.schwach { fill: #c2410c; }
.radar .beschriftung { font-size: 12.5px; font-weight: 600; fill: var(--ink-soft); }
.radar .wert { font-size: 13px; font-weight: 700; fill: var(--accent-deep); }
.radar-zone .dim-liste { margin-top: 0; }

/* Score-Ampel am Ende der Auswertung. Die Farbe kommt aus scoring.js und
   wird per Custom Property gesetzt, damit Ring und Block nie auseinanderlaufen. */
.ampel {
  text-align: center;
  border: 2px solid var(--ampelfarbe, var(--accent));
  border-radius: 14px;
  background: color-mix(in srgb, var(--ampelfarbe, var(--accent)) 8%, #fff);
  padding: clamp(28px, 5vw, 44px) 24px;
  margin: 12px 0 6px;
}
.ampel-kopf { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px; }
.ampel-zahl b { font-size: clamp(4rem, 15vw, 6.4rem); line-height: 0.95; font-weight: 700; color: var(--ampelfarbe, var(--accent)); letter-spacing: -0.04em; display: block; }
.ampel-zahl span { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.ampel-stufe { font-size: clamp(1.4rem, 3.6vw, 2rem); font-weight: 700; margin: 18px 0 10px; }
.ampel-satz {
  display: inline-block; background: var(--ampelfarbe, var(--accent)); color: #fff;
  border-radius: 999px; padding: 11px 26px; font-size: 1.06rem; font-weight: 700;
}

/* ---------- Score ---------- */
.score-zahl { font-size: clamp(3.4rem, 11vw, 5rem); line-height: 1; font-weight: 700; letter-spacing: -0.035em; }
.score-zahl span { font-size: 0.27em; color: var(--ink-mute); letter-spacing: 0; font-weight: 400; }
.score-titel { font-size: clamp(1.3rem, 3vw, 1.7rem); margin: 12px 0 14px; }
.score-text p + p { margin-top: 12px; }

.saeulen { display: grid; gap: 18px; margin: 26px 0 6px; padding-top: 22px; border-top: 1px solid var(--line); }
@media (min-width: 620px) { .saeulen { grid-template-columns: 1fr 1fr; gap: 26px; } }
.saeule .kopf { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.saeule .wert { font-size: 1.08rem; font-weight: 700; line-height: 1.35; }
.saeule .wert b { color: var(--accent-deep); }
.saeule p { font-size: 0.93rem; margin-top: 8px; }

.dim-liste { margin-top: 24px; display: grid; gap: 10px; }
.dim-zeile { display: grid; grid-template-columns: 1fr 88px 38px; align-items: center; gap: 12px; font-size: 0.9rem; }
.dim-zeile .track { height: 4px; background: var(--line); border-radius: 999px; overflow: hidden; }
.dim-zeile .track i { display: block; height: 100%; background: var(--accent); border-radius: 999px; }
.dim-zeile .num { text-align: right; color: var(--ink-mute); font-variant-numeric: tabular-nums; }

/* ---------- Formular ---------- */
.formkarte { margin-top: 20px; border-top: 3px solid var(--accent); }
.formkarte h2 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); margin-bottom: 10px; }
.formkarte > p { margin-bottom: 20px; font-size: 0.98rem; }

.feld { margin-bottom: 16px; }
.feld > label { display: block; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.feld input[type="text"], .feld input[type="email"] {
  width: 100%; font: inherit; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 7px; padding: 12px 14px;
}
.feld input:focus { outline: none; border-color: var(--accent); background: #fff; }

.wahl { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 7px; }
.wahl label { position: relative; display: flex; align-items: center; justify-content: center; min-height: 48px; background: var(--paper); border: 1px solid var(--line); border-radius: 7px; padding: 10px 12px; font-size: 0.94rem; text-align: center; cursor: pointer; }
.wahl input { position: absolute; opacity: 0; pointer-events: none; }
.wahl label:hover { border-color: var(--accent); }
.wahl label:has(input:checked) { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }
.wahl label:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }

.zustimmung { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; line-height: 1.5; color: var(--ink-soft); margin: 18px 0 20px; cursor: pointer; padding: 6px 0; }
.zustimmung input { width: 22px; height: 22px; margin-top: 1px; flex-shrink: 0; accent-color: var(--accent); }

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

/* ---------- CTA ---------- */
.btn {
  display: inline-block; font: inherit; font-weight: 700; font-size: 1.02rem;
  color: #fff; background: var(--accent);
  border: none; border-radius: 999px; padding: 16px 32px;
  cursor: pointer; text-decoration: none; text-align: center;
  box-shadow: 0 6px 18px rgba(55, 111, 140, 0.34);
  transition: background 120ms ease, transform 90ms ease;
}
.btn:hover { background: var(--accent-deep); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.55; cursor: default; }
.btn-block { display: block; width: 100%; }
.btn-klein { padding: 11px 22px; font-size: 0.92rem; box-shadow: none; background: #fff; color: var(--accent-deep); }
.btn-klein:hover { background: #eef4f7; }

.cta-block { text-align: center; padding: var(--gap) 0; background: var(--paper-warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-block h2 { font-size: clamp(1.45rem, 3.2vw, 2.05rem); max-width: 22ch; margin: 0 auto 12px; }
.cta-block p { max-width: 44ch; margin: 0 auto 24px; }
.cta-block .mikro { font-size: 0.86rem; color: var(--ink-mute); margin-top: 14px; }

.hinweis { font-size: 0.83rem; color: var(--ink-mute); margin-top: 12px; }
.fehler { color: #8f2b22; font-size: 0.92rem; margin-top: 12px; }
.fehler[hidden] { display: none; }

/* ---------- Sektionen ---------- */
.sektion { padding: var(--gap) 0; }
.sektion + .sektion { border-top: 1px solid var(--line); }
.sektion h2 { font-size: clamp(1.5rem, 3.4vw, 2.15rem); max-width: 21ch; margin-bottom: 14px; }
.sektion .lead { font-size: 1.04rem; max-width: 52ch; margin-bottom: 30px; }
.mitte { text-align: center; }
.mitte h2, .mitte .lead { margin-left: auto; margin-right: auto; }

.karten { display: grid; gap: 20px; }
@media (min-width: 760px) { .karten { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.karten article { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 24px 22px; }
.karten .nr { display: inline-block; width: 30px; height: 30px; line-height: 30px; text-align: center; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 14px; }
.karten h3 { font-size: 1.1rem; margin-bottom: 7px; }
.karten p { font-size: 0.96rem; }

/* Die sechs Bereiche als Schaubild: Kürzel, Name, ein Satz. */
.schaubild { display: grid; gap: 14px; margin-top: 34px; text-align: left; }
@media (min-width: 640px) { .schaubild { grid-template-columns: 1fr 1fr; gap: 16px 26px; } }
@media (min-width: 980px) { .schaubild { grid-template-columns: repeat(3, 1fr); } }
.schaubild article { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; background: var(--card); border: 1px solid var(--line); border-radius: 9px; padding: 18px 18px; }
.schaubild .kreis {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-pale, #eaf1f5); border: 1px solid var(--accent);
  color: var(--accent-deep); font-weight: 700; font-size: 0.94rem;
  display: flex; align-items: center; justify-content: center;
}
.schaubild h3 { font-size: 1rem; margin-bottom: 4px; }
.schaubild p { font-size: 0.93rem; line-height: 1.5; }

/* Gründer */
/* height:auto ist Pflicht, sobald width/height als Attribute am img stehen.
   Ohne das bleibt die Attributhöhe stehen und das Bild wird gestreckt. */
.gruender-foto { width: 100%; height: auto; border-radius: 12px; display: block; }
.gruender { display: grid; gap: 26px; align-items: start; }
@media (min-width: 820px) { .gruender { grid-template-columns: 0.62fr 1fr; gap: 44px; align-items: center; } }
.gruender .zitat { font-family: var(--serif); font-size: clamp(1.24rem, 2.7vw, 1.6rem); line-height: 1.34; color: var(--ink); }
.gruender .name { font-size: 0.86rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-mute); margin-top: 14px; }
.gruender p + p { margin-top: 13px; }

/* Für wen */
.fuerwen { display: grid; gap: 26px; }
@media (min-width: 760px) { .fuerwen { grid-template-columns: 1fr 1fr; gap: 34px; } }
.fuerwen > div { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 26px 24px; }
.fuerwen h3 { font-size: 1.08rem; margin-bottom: 16px; }
.fuerwen ul { list-style: none; display: grid; gap: 12px; }
.fuerwen li { display: grid; grid-template-columns: 20px 1fr; gap: 11px; font-size: 0.97rem; color: var(--ink-soft); }
.fuerwen .ja li::before { content: "\2713"; color: var(--accent-deep); font-weight: 700; }
.fuerwen .nein li::before { content: "\00D7"; color: var(--ink-mute); font-weight: 700; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { font-weight: 700; font-size: 1.03rem; padding: 19px 30px 19px 0; cursor: pointer; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 16px; font-size: 1.3rem; color: var(--accent-deep); font-weight: 400; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 0 20px; font-size: 0.97rem; }

/* ---------- Fuß ---------- */
.fuss { background: var(--dark); color: rgba(255, 255, 255, 0.5); padding: 28px 0 40px; font-size: 0.85rem; }
.fuss a { display: inline-block; padding: 12px 0; color: rgba(255, 255, 255, 0.6); margin-right: 24px; text-decoration: none; }
.fuss a:hover { color: #fff; }

/* ---------- Auswertungsseite ---------- */
.analyse-hero { background: var(--dark); color: #fff; padding: clamp(30px, 5vw, 52px) 0; }
.analyse-hero .eyebrow { font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); margin-bottom: 12px; }
/* Score als Ring: das ist der Moment, den Leute abfotografieren. */
.hero-score { display: grid; gap: 24px; align-items: center; }
@media (min-width: 620px) { .hero-score { grid-template-columns: 168px 1fr; gap: 32px; } }
.ring { position: relative; width: 168px; height: 168px; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 10; }
.ring .bahn { stroke: rgba(255, 255, 255, 0.13); }
.ring .fuellung {
  stroke: var(--accent); stroke-linecap: round;
  stroke-dasharray: 326.7; stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 900ms cubic-bezier(.2,.7,.3,1);
}
.ring-zahl {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ring-zahl b { font-size: 3rem; line-height: 1; font-weight: 700; color: #fff; }
.ring-zahl span { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

.analyse-hero .gesamt { font-size: 0.8rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.analyse-hero h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.3rem); margin-top: 10px; }

.block { padding: 34px 0; border-bottom: 1px solid var(--line); }
.block h2 { font-size: 1.32rem; margin-bottom: 14px; }
.block p + p { margin-top: 13px; }

.hebel { display: grid; gap: 22px; }
.hebel article { border-left: 3px solid var(--accent); padding-left: 20px; }
.hebel h3 { font-size: 1.06rem; margin-bottom: 6px; }

.laden { text-align: center; padding: 44px 24px 40px; margin: 34px 0; border: 2px solid #c2410c; border-radius: 12px; background: #fff5ed; }
.laden .zeichen {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%;
  background: #c2410c; color: #fff; font-size: 2rem; font-weight: 700; line-height: 62px;
  animation: pochen 1.5s ease-in-out infinite;
}
@keyframes pochen { 0%,100% { transform: scale(1); } 50% { transform: scale(1.09); } }
.laden .stopp { font-size: clamp(1.3rem, 3.4vw, 1.9rem); color: #9a3412; margin-bottom: 10px; }
.laden h2 { font-size: clamp(1.1rem, 2.6vw, 1.35rem); margin-bottom: 14px; color: var(--ink); }
.laden .dauer { display: inline-block; background: #fff; border: 1px solid #f3c9ab; border-radius: 999px; padding: 8px 18px; font-size: 1rem; color: #9a3412; font-weight: 700; }
.laden .warnung { font-size: 0.98rem; color: var(--ink-soft); margin-top: 14px; max-width: 46ch; margin-left: auto; margin-right: auto; }
.laden .punkte { display: none; }
.laden .leiste { height: 6px; background: #f3ddcb; border-radius: 999px; overflow: hidden; margin: 22px auto 0; max-width: 340px; }
.laden .leiste i { display: block; height: 100%; width: 20%; background: #c2410c; border-radius: 999px; animation: warten 2.2s ease-in-out infinite; }
@keyframes warten { 0% { margin-left: -22%; } 100% { margin-left: 102%; } }

.vsl { background: var(--dark); color: #fff; padding: var(--gap) 0; }
.vsl h2 { color: #fff; font-size: clamp(1.45rem, 3.2vw, 2rem); margin-bottom: 14px; max-width: 20ch; }
.vsl p { color: rgba(255, 255, 255, 0.78); }
.vsl .rahmen { border-radius: 8px; overflow: hidden; margin: 26px 0; background: #0f1b24; }
.vsl video, .vsl iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }
.vsl .kein-video { padding: 28px 26px; }
.vsl .kein-video p + p { margin-top: 13px; }

.garantie { border: 1px solid var(--accent); border-radius: 8px; padding: 24px 26px; margin: 28px 0; background: rgba(55, 111, 140, 0.14); }
.garantie .kopf { font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent); margin-bottom: 9px; }
.garantie p { color: rgba(255, 255, 255, 0.9); }
.garantie strong { color: #fff; }

/* Der Call ist das Ziel der Seite, also bekommt er eine eigene Bühne. */
.call-agenda { display: grid; gap: 16px; margin: 28px 0; }
@media (min-width: 720px) { .call-agenda { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.call-agenda article { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; padding: 20px 20px; }
.call-agenda .nr { display: inline-block; width: 28px; height: 28px; line-height: 28px; text-align: center; border-radius: 50%; background: var(--accent); color: #fff; font-weight: 700; font-size: 0.85rem; margin-bottom: 12px; }
.call-agenda h3 { color: #fff; font-size: 1.02rem; margin-bottom: 6px; }
.call-agenda p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }

/* Bewusst Gold statt Markenblau: die Garantie soll aus der Seite herausfallen,
   nicht in ihr verschwinden. */
.garantie-gross {
  border: 2px solid #e0a63c; border-radius: 14px;
  background: linear-gradient(160deg, rgba(224,166,60,0.20), rgba(224,166,60,0.05));
  padding: clamp(28px, 5vw, 44px); margin: 34px 0; text-align: center;
}
.garantie-gross .siegel {
  display: inline-block; background: #e0a63c; border-radius: 999px;
  padding: 8px 22px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #2a1c05; margin-bottom: 20px;
}
.garantie-gross .betrag { font-size: clamp(3rem, 10vw, 4.6rem); line-height: 1; font-weight: 700; color: #fff; letter-spacing: -0.03em; }
.garantie-gross .betrag span { font-size: 0.3em; letter-spacing: 0.02em; color: #f0c274; display: block; margin-top: 10px; line-height: 1.35; }
.garantie-gross h2 { color: #fff; margin: 20px auto 12px; max-width: 24ch; }
.garantie-gross p { color: rgba(255,255,255,0.82); max-width: 52ch; margin: 0 auto; }
.garantie-gross .klein { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 16px; }

/* Kundenstimmen, wörtlich von andreas-klar.com */
.stimmen { display: grid; gap: 20px; margin-top: 30px; }
@media (min-width: 760px) { .stimmen { grid-template-columns: 1fr 1fr; gap: 26px; } }
.stimmen blockquote { background: var(--card); border: 1px solid var(--line); border-radius: 9px; padding: 24px 24px 20px; margin: 0; }
.stimmen .sterne { display: inline-flex; gap: 3px; margin-bottom: 12px; }
.stimmen .sterne svg { width: 15px; height: 15px; fill: #f0b429; display: block; }
.stimmen p { font-size: 1rem; line-height: 1.6; color: var(--ink); }
.stimmen footer { margin-top: 14px; font-size: 0.9rem; color: var(--ink-mute); }
.stimmen footer b { color: var(--ink); font-weight: 700; display: block; }

/* Eine Stimme neben dem Video, wie bei Schumann & Simons */
.vsl-stimme { border-left: 3px solid var(--accent); padding-left: 18px; margin-top: 26px; }
.vsl-stimme p { color: rgba(255,255,255,0.9); font-size: 1rem; line-height: 1.55; }
.vsl-stimme footer { margin-top: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.vsl-stimme footer b { color: #fff; display: block; }

/* Platzhalter, die aussehen wie Platzhalter und nicht wie ein Fehler. */
.platzhalter {
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 10px; padding: 34px 22px;
  color: rgba(255, 255, 255, 0.72);
}
.platzhalter .play {
  width: 62px; height: 62px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
}
.platzhalter b { color: #fff; font-size: 1.02rem; }
.platzhalter span { font-size: 0.9rem; }
.platzhalter.hell { border-color: var(--line-strong); color: var(--ink-mute); }
.platzhalter.hell b { color: var(--ink); }

/* Gründerblock auf der Auswertungsseite */
.autor { display: grid; gap: 20px; align-items: center; margin-top: 26px; }
@media (min-width: 680px) { .autor { grid-template-columns: 230px 1fr; gap: 32px; } }
.autor .foto { width: 100%; height: auto; max-width: 230px; border-radius: 12px; display: block; }
@media (max-width: 679px) { .autor .foto { max-width: 200px; } }
.autor .name { font-weight: 700; }
.autor .rolle { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }

/* ---------- Rechtstexte ---------- */
.rechtstext { padding: 44px 0 60px; }
.rechtstext h1 { font-size: 1.9rem; margin-bottom: 22px; }
.rechtstext h2 { font-size: 1.16rem; margin: 28px 0 9px; }
.rechtstext ul { margin: 9px 0 9px 22px; }
.rechtstext h3 { font-size: 1rem; margin: 18px 0 6px; }
/* Lange Fremd-URLs aus der uebernommenen Erklaerung sprengen sonst die
   Seitenbreite auf dem Telefon. */
.rechtstext a { word-break: break-word; overflow-wrap: anywhere; }
.luecke { display: inline-block; background: #fdf6dd; border: 1px dashed var(--line-strong); padding: 1px 8px; font-size: 0.9em; }

/* Auf dem Handy ein mitlaufender CTA, sobald der Hero durch ist. Die Sieger
   im Harvest fahren 5 bis 8 CTA-Blöcke; wir haben 3, das gleicht es aus. */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgba(22, 35, 46, 0.96);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(110%); transition: transform 220ms ease;
}
.sticky-cta.an { transform: translateY(0); }
.sticky-cta .btn { display: block; width: 100%; padding: 15px 20px; }
@media (min-width: 760px) { .sticky-cta { display: none; } }

[hidden] { display: none !important; }

@media (max-width: 560px) {
  .dim-zeile { grid-template-columns: 1fr 54px 34px; }
  .hero-cta .btn { width: 100%; }
}

/* ---------- Einwilligung ---------- */
/* Unten angedockt statt als Vollbild-Sperre: Die Seite bleibt lesbar und das
   Quiz startbar, auch wenn jemand die Leiste ignoriert. */
.consent {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 60;
  background: #0f1720; color: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 14px;
  padding: 16px 18px; box-shadow: 0 18px 50px rgba(0,0,0,0.38);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  max-width: 760px; margin: 0 auto; font-size: 0.88rem; line-height: 1.5;
}
.consent p { margin: 0; flex: 1 1 320px; }
.consent a { color: #fff; text-decoration: underline; }
.consent-knoepfe { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.consent-nein {
  background: none; border: none; color: rgba(255,255,255,0.62);
  font: inherit; cursor: pointer; text-decoration: underline; padding: 8px 4px;
}
.consent-nein:hover { color: rgba(255,255,255,0.9); }
@media (max-width: 560px) {
  .consent { flex-direction: column; align-items: stretch; text-align: left; }
  .consent-knoepfe { justify-content: space-between; }
}

/* ---------- Videosektion ---------- */
.vsl-label {
  display: block; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #7fbcd8; margin-bottom: 12px;
}
.vsl .vsl-sub { font-size: 1.02rem; max-width: 46ch; }

/* Auflage mit Abspielknopf. Die nackte Steuerleiste des Browsers liest sich
   wie ein Dateianhang, nicht wie ein Angebot, das man sich ansehen will. */
.vsl .rahmen { position: relative; }
.abspielen {
  position: absolute; inset: 0; width: 100%; border: 0; cursor: pointer;
  background: linear-gradient(180deg, rgba(10,18,24,0.10) 0%, rgba(10,18,24,0.62) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: #fff; font: inherit; text-align: center;
  transition: background 160ms ease;
}
.abspielen:hover { background: linear-gradient(180deg, rgba(10,18,24,0.04) 0%, rgba(10,18,24,0.55) 100%); }
.abspielen .pfeil {
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 10px 34px rgba(0,0,0,0.42);
  display: flex; align-items: center; justify-content: center;
  transition: transform 160ms ease, background 160ms ease;
}
.abspielen .pfeil::after {
  content: ""; border-left: 20px solid #fff;
  border-top: 12px solid transparent; border-bottom: 12px solid transparent;
  margin-left: 6px;
}
.abspielen:hover .pfeil { transform: scale(1.06); background: #4b93b5; }
.abspielen-text { font-size: 1.06rem; font-weight: 700; line-height: 1.35; }
.abspielen-text b {
  display: block; font-size: 0.86rem; font-weight: 400;
  color: rgba(255,255,255,0.74); margin-top: 4px;
}
.rahmen.laeuft .abspielen { display: none; }
@media (max-width: 560px) {
  .abspielen .pfeil { width: 60px; height: 60px; }
  .abspielen .pfeil::after { border-left-width: 16px; border-top-width: 10px; border-bottom-width: 10px; }
  .abspielen-text { font-size: 0.96rem; }
}
