/* =================================================================
   PREISIG PROZESSE — STYLES
   1) Farben, Schrift, Grundwerte  (HIER Farben/Schrift ändern)
   2) Grundlagen / Reset
   3) Layout-Hilfen
   4) Buttons
   5) Kopfzeile (transparent oben, fest)
   6) Hero mit Foto + Vertrauens-Chips
   7) Problem
   8) Die drei Verlust-Stellen (Problem -> Lösung -> Ergebnis)
   9) ROI-Rechner
   10) Vertrauen / Über mich
   11) FAQ
   12) Kontakt mit Formular
   13) Angebots-Seite
   14) Demo-Seiten (Dashboard, Selbst-Check, Timeline)
   15) Fusszeile
   16) Animation / Barrierefreiheit
   17) Responsive
   ================================================================= */


/* =========================================================
   1) FARBEN, SCHRIFT, GRUNDWERTE
   ========================================================= */
:root {
  --accent:        #C24E20;
  --accent-hover:  #A5411A;
  --accent-bright: #E8703C;

  --ink:      #1E1A17;
  --body:     #3A342F;
  --muted:    #6B625B;
  --bg:       #FFFFFF;
  --surface:  #F5F4F2;
  --tint:     #FBF1EC;
  --line:     #E7E3DF;
  --dark:     #1C1815;

  --ok:    #1F7A4D;   --ok-bg: #E7F4EC;
  --warn:  #B7791F;   --warn-bg: #FBF0DC;
  --lost:  #B23B1B;   --lost-bg: #FBEAE4;

  /* --- Schrift: eine moderne, cleane Familie (Schibsted Grotesk) --- */
  --font-body:    "Schibsted Grotesk", system-ui, -apple-system, sans-serif;
  --font-display: "Schibsted Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1100px;
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 66px;
}


/* =========================================================
   2) GRUNDLAGEN / RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
:target { scroll-margin-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.1rem);
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
  font-weight: 700;
}
p { margin: 0; text-wrap: pretty; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.num { font-variant-numeric: tabular-nums; font-weight: 800; letter-spacing: -0.02em; }


/* =========================================================
   3) LAYOUT-HILFEN
   ========================================================= */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.narrow { max-width: 720px; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-dark { background: var(--dark); }
.section-tint { background: var(--tint); }
.center { text-align: center; }

.section-title { font-size: clamp(1.7rem, 1.3rem + 2.2vw, 2.8rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.03em; }
.section-title.center { margin-inline: auto; }
.section-intro { max-width: 60ch; }
.center .section-intro { margin-inline: auto; }

.lead { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.22rem); color: var(--body); max-width: 65ch; }
.lead + .lead { margin-top: 1rem; }
.center .lead { margin-inline: auto; }

.on-dark { color: #FBF7F4; }
.on-dark-muted { color: #C9BFB8; }
.eyebrow { display: inline-block; font-size: 0.9rem; font-weight: 600; color: var(--accent); margin-bottom: 0.75rem; }


/* =========================================================
   4) BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 0.95rem 1.5rem; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; min-height: 48px;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-sm { padding: 0.6rem 1.1rem; min-height: 40px; font-size: 0.95rem; }
.btn-block { width: 100%; margin-top: 0.5rem; }
.btn-arrow::after { content: "\2192"; font-size: 1.1em; }
.on-dark .btn-ghost, .btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.4); }
.on-dark .btn-ghost:hover, .btn-ghost.on-dark:hover { border-color: #fff; color: #fff; }


/* =========================================================
   5) KOPFZEILE
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.site-header.at-top { background: transparent; border-bottom-color: transparent; backdrop-filter: none; }
.site-header.at-top .brand-name { color: #fff; }
.site-header.at-top .site-nav a { color: rgba(255,255,255,0.82); }
.site-header.at-top .site-nav a:hover { color: #fff; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); font-family: var(--font-display); font-weight: 700; }
.brand:hover { color: var(--ink); }
.brand-mark { display: inline-flex; }
.brand-logo { display: block; width: 34px; height: 34px; border-radius: 8px; }
.brand-name { font-size: 1.2rem; letter-spacing: -0.02em; transition: color 0.35s var(--ease); }

.site-nav { display: flex; gap: 1.6rem; margin-left: auto; }
.site-nav a { color: var(--muted); font-weight: 500; font-size: 0.98rem; position: relative; transition: color 0.35s var(--ease); }
.site-nav a:hover { color: var(--ink); }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.site-nav a:hover::after { transform: scaleX(1); }
.header-cta { margin-left: 0.25rem; }


/* =========================================================
   6) HERO MIT FOTO + VERTRAUENS-CHIPS
   ========================================================= */
.hero-photo {
  position: relative; color: #fff; background: var(--dark); overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 5.5rem));
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}
/* ====== HERO-BILD TAUSCHEN: URL im index.html im style="--hero-img" ====== */
.hero-photo::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(24,20,17,0.62), rgba(24,20,17,0.88)),
    var(--hero-img) center / cover no-repeat;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; }
.hero-title { font-size: clamp(2.3rem, 1.4rem + 4.6vw, 4rem); font-weight: 700; letter-spacing: -0.035em; margin-bottom: 1.3rem; color: #fff; }
.hero-sub { font-size: clamp(1.1rem, 1rem + 0.7vw, 1.35rem); max-width: 60ch; margin-bottom: 1.6rem; color: #EDE6E1; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.8rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 0.65rem; list-style: none; margin: 0; padding: 0; }
.hero-trust li { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.92rem; color: #EDE6E1; background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.14); padding: 0.4rem 0.8rem; border-radius: 999px; }
.hero-trust li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-bright); flex: 0 0 auto; }


/* =========================================================
   7) PROBLEM
   ========================================================= */
.problem .lead { font-size: clamp(1.1rem, 1rem + 0.7vw, 1.35rem); color: var(--ink); }


/* =========================================================
   8) DIE DREI VERLUST-STELLEN (Problem -> Lösung -> Ergebnis)
   ========================================================= */
.losses { margin-top: clamp(2rem, 4vw, 3rem); }
.loss-item {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem, 3vw, 2.25rem);
  padding-block: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--line);
}
.loss-item:first-child { border-top: none; padding-top: 0; }
.loss-index { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 1.3rem + 2vw, 2.6rem); color: var(--accent); line-height: 1; font-variant-numeric: tabular-nums; }
.loss-title { font-size: clamp(1.4rem, 1.2rem + 1.4vw, 1.9rem); font-weight: 700; margin-bottom: 1.2rem; }

.ple { display: grid; gap: 0.7rem; margin-bottom: 1.4rem; max-width: 62ch; }
.ple-row { display: grid; grid-template-columns: 6.5rem 1fr; gap: 0.85rem; align-items: start; }
.ple-tag { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; padding: 0.28rem 0; }
.ple-tag-p { color: var(--lost); }
.ple-tag-l { color: var(--accent); }
.ple-tag-e { color: var(--ok); }
.ple-text { color: var(--body); }
.ple-text strong { color: var(--ink); }

.demos-intro { max-width: 60ch; margin-bottom: 0.5rem; }


/* =========================================================
   9) ROI-RECHNER
   ========================================================= */
.calc-head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.calc-inputs { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.5rem, 3vw, 2.25rem); display: grid; gap: 1.4rem; }
.field { display: grid; gap: 0.5rem; }
.field label { font-weight: 600; color: var(--ink); font-size: 0.98rem; display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem; }
.field-val { color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; }

.field input[type="number"], .field input[type="text"], .field input[type="email"], .field textarea, .select-wrap select {
  width: 100%; font-family: inherit; font-size: 1.05rem; color: var(--ink); background: var(--bg);
  border: 1.5px solid var(--line); border-radius: 10px; padding: 0.85rem 1rem; min-height: 52px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field input:focus, .field textarea:focus, .select-wrap select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(194,78,32,0.15); }
.select-wrap { position: relative; }
.select-wrap::after { content: ""; position: absolute; right: 1.1rem; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-65%) rotate(45deg); pointer-events: none; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 2.5rem; }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--line); cursor: pointer; margin-top: 0.4rem; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
input[type="range"]::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
input[type="range"]:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.calc-result { display: grid; gap: 1rem; }
.result-card { border-radius: 16px; padding: clamp(1.4rem, 3vw, 1.9rem); }
.result-gain { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.result-gain::before { content: ""; position: absolute; top: -40%; right: -20%; width: 60%; height: 160%; background: radial-gradient(closest-side, rgba(232,112,60,0.35), transparent 70%); pointer-events: none; }
.result-label { font-weight: 600; color: var(--accent-bright); margin-bottom: 0.5rem; position: relative; }
.result-big { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 1.3rem + 3.2vw, 3rem); line-height: 1.05; letter-spacing: -0.03em; position: relative; font-variant-numeric: tabular-nums; }
.result-unit { font-size: 0.9rem; font-weight: 600; color: #C9BFB8; letter-spacing: 0; display: block; margin-top: 0.2rem; }
.result-year { font-size: 1.05rem; color: #EBE4DF; margin-top: 0.35rem; position: relative; }
.result-year span, .result-loss-line span { font-variant-numeric: tabular-nums; font-weight: 700; }
.result-quote { font-size: 0.95rem; color: #C9BFB8; margin-top: 1rem; position: relative; }
.result-loss { background: var(--bg); border: 1px solid var(--line); }
.result-loss .result-label { color: var(--accent); }
.result-loss-line { color: var(--body); }
.result-loss-line strong { color: var(--accent); }
.result-disclaimer { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }
.result-cta-note { font-size: 0.9rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }


/* =========================================================
   10) VERTRAUEN / ÜBER MICH
   ========================================================= */
.trust-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.trust-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.trust-points li { position: relative; padding-left: 2.1rem; color: var(--body); }
.trust-points li::before {
  content: ""; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent);
}
.trust-points li::after {
  content: ""; position: absolute; left: 7px; top: 6px;
  width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.trust-points li strong { color: var(--ink); display: block; }


/* =========================================================
   11) FAQ
   ========================================================= */
.faq { max-width: 760px; margin-inline: auto; margin-top: clamp(2rem, 4vw, 3rem); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.25rem 2.5rem 1.25rem 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 0.35rem; top: 50%;
  width: 12px; height: 12px; margin-top: -8px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq-answer { padding: 0 0 1.4rem; color: var(--body); max-width: 65ch; }


/* =========================================================
   12) KONTAKT MIT FORMULAR
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.contact-intro .lead { margin-bottom: 1.75rem; }
.contact-direct { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.85rem; }
.contact-direct li { display: flex; align-items: center; gap: 0.75rem; }
.contact-direct a { color: #fff; font-weight: 500; }
.contact-direct a:hover { color: var(--accent-bright); }
.contact-ico { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--accent-bright); flex: 0 0 auto; }
.contact-form { background: var(--bg); border-radius: 16px; padding: clamp(1.5rem, 3vw, 2.25rem); display: grid; gap: 1.15rem; }
.form-status { font-size: 0.95rem; margin-top: 0.25rem; min-height: 1.2em; }
.form-status-ok { color: var(--ok); font-weight: 600; }
.form-status-err { color: var(--lost); font-weight: 600; }
.form-status-pending { color: var(--muted); }
.form-privacy { font-size: 0.82rem; color: var(--muted); margin-top: -0.2rem; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; margin-top: 2rem; }


/* =========================================================
   13) ANGEBOTS-SEITE
   ========================================================= */
.angebot-hero {
  position: relative; background: var(--dark); color: #fff; overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(3.5rem, 9vw, 6rem));
  padding-bottom: clamp(3.5rem, 8vw, 5.5rem);
}
.angebot-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,20,17,0.66), rgba(24,20,17,0.9)), var(--hero-img) center / cover no-repeat;
  z-index: 0;
}
.angebot-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.angebot-hero .hero-title { font-size: clamp(2.1rem, 1.4rem + 4vw, 3.4rem); }
.angebot-hero .hero-sub { margin-top: 1.1rem; }

.offer-block { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.25rem, 3vw, 2.5rem); padding-block: clamp(2.5rem, 5vw, 3.75rem); border-top: 1px solid var(--line); }
.offer-block:first-child { border-top: none; padding-top: 0; }
.offer-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem); color: var(--accent); line-height: 1; font-variant-numeric: tabular-nums; }
.offer-title { font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2rem); font-weight: 700; margin-bottom: 0.8rem; }
.offer-lead { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.2rem); color: var(--ink); margin-bottom: 0.9rem; max-width: 60ch; }
.offer-text { color: var(--body); max-width: 62ch; margin-bottom: 1.1rem; }
.offer-list { margin: 0 0 1.4rem; padding: 0; list-style: none; display: grid; gap: 0.6rem; max-width: 60ch; }
.offer-list li { position: relative; padding-left: 1.75rem; color: var(--body); }
.offer-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }


/* =========================================================
   14) DEMO-SEITEN
   ========================================================= */
.demo-hero {
  position: relative; background: var(--dark); color: #fff;
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 4.5rem));
  padding-bottom: clamp(2.75rem, 7vw, 4.5rem);
}
.demo-hero-inner { max-width: 760px; }
.demo-eyebrow { display: inline-block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--accent-bright); background: rgba(232,112,60,0.14); padding: 0.35rem 0.75rem; border-radius: 999px; margin-bottom: 1rem; }
.demo-hero .hero-title { font-size: clamp(2rem, 1.4rem + 3.5vw, 3.1rem); }
.demo-hero .hero-sub { color: #EDE6E1; margin-top: 1rem; }
.demo-note { font-size: 0.85rem; color: var(--muted); text-align: center; margin-top: 1.5rem; }
.demo-cta { text-align: center; }
.demo-cta-note { font-size: 0.9rem; color: var(--muted); margin-top: 0.8rem; }
.demo-back { display: inline-flex; align-items: center; gap: 0.4rem; color: #C9BFB8; font-weight: 500; margin-top: 1.5rem; }
.demo-back:hover { color: #fff; }
.demo-back::before { content: "\2190"; }

/* Demo 1: Dashboard */
.dash { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 3vw, 2rem); align-items: start; }
.dash-card { border-radius: 16px; padding: clamp(1.4rem, 3vw, 2rem); border: 1px solid var(--line); background: var(--bg); }
.dash-after { border-color: rgba(31,122,77,0.35); background: linear-gradient(180deg, #FBFEFC, #FFFFFF); }
.dash-badge { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 6px; margin-bottom: 0.75rem; }
.dash-before .dash-badge { color: var(--lost); background: var(--lost-bg); }
.dash-after .dash-badge { color: var(--ok); background: var(--ok-bg); }
.dash-card h3 { font-size: 1.15rem; margin-bottom: 1.25rem; }
.dash-stats { display: grid; gap: 0.85rem; margin-bottom: 1.5rem; }
.stat-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-bottom: 0.85rem; border-bottom: 1px dashed var(--line); }
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-label { color: var(--muted); font-size: 0.95rem; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.stat-num.is-lost { color: var(--lost); }
.stat-num.is-ok { color: var(--ok); }
.flow-title { font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 0.6rem; }
.flow { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.pill { font-size: 0.82rem; font-weight: 600; padding: 0.35rem 0.7rem; border-radius: 999px; opacity: 0; transform: translateY(6px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.pill.show { opacity: 1; transform: none; }
.pill-neutral { background: var(--surface); color: var(--body); }
.pill-wait { background: var(--warn-bg); color: var(--warn); }
.pill-lost { background: var(--lost-bg); color: var(--lost); }
.pill-ok { background: var(--ok-bg); color: var(--ok); }
.flow-arrow { color: var(--muted); font-size: 0.9rem; opacity: 0.5; }
.dash-kicker { text-align: center; max-width: 640px; margin: clamp(2.5rem, 5vw, 3.5rem) auto 0; }
.dash-kicker p { font-size: clamp(1.15rem, 1rem + 1vw, 1.55rem); color: var(--ink); font-weight: 600; line-height: 1.35; }
.replay-btn { display: inline-flex; align-items: center; gap: 0.5rem; margin: 1.5rem auto 0; background: transparent; border: 1.5px solid var(--line); color: var(--muted); border-radius: 999px; padding: 0.5rem 1.1rem; font-family: inherit; font-weight: 600; font-size: 0.9rem; cursor: pointer; }
.replay-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Demo 2: Selbst-Check */
.check { max-width: 640px; margin: 0 auto; }
.check-progress-wrap { margin-bottom: 1.5rem; }
.check-progress-label { font-size: 0.85rem; color: var(--muted); font-weight: 600; margin-bottom: 0.5rem; }
.check-progress { height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; }
.check-progress-bar { height: 100%; width: 100%; background: var(--accent); border-radius: 999px; transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.check-card { background: var(--bg); border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: 0 10px 40px rgba(28,24,21,0.06); }
.check-question { font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem); font-weight: 700; color: var(--ink); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.check-hint { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.check-answers { display: grid; gap: 0.75rem; }
.answer-btn { display: flex; align-items: center; gap: 0.85rem; text-align: left; width: 100%; background: var(--bg); border: 1.5px solid var(--line); border-radius: 12px; padding: 1rem 1.15rem; font-family: inherit; font-size: 1.02rem; color: var(--ink); cursor: pointer; min-height: 60px; transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), transform 0.2s var(--ease); }
.answer-btn:hover { border-color: var(--accent); background: var(--tint); transform: translateY(-1px); }
.answer-dot { width: 14px; height: 14px; border-radius: 50%; flex: 0 0 auto; }
.answer-dot-pos { background: var(--ok); }
.answer-dot-mid { background: var(--warn); }
.answer-dot-neg { background: var(--lost); }
.check-stepin { animation: stepIn 0.45s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.check-result { text-align: center; }
.score-ring { width: 170px; height: 170px; margin: 0 auto 1.25rem; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--accent) var(--deg, 0deg), var(--line) 0deg); }
.score-inner { width: 138px; height: 138px; border-radius: 50%; background: var(--bg); display: grid; place-items: center; }
.score-num { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.score-num small { font-size: 1rem; color: var(--muted); font-weight: 600; }
.score-verdict { font-size: clamp(1.2rem, 1rem + 0.8vw, 1.5rem); font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.tips-title { font-weight: 600; color: var(--muted); margin: 1.5rem 0 0.75rem; }
.tips { list-style: none; padding: 0; margin: 0 auto 1.5rem; display: grid; gap: 0.6rem; max-width: 440px; text-align: left; }
.tips li { position: relative; padding-left: 1.75rem; color: var(--body); }
.tips li::before { content: "\2192"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.check-restart { background: transparent; border: none; color: var(--muted); text-decoration: underline; cursor: pointer; font-family: inherit; font-size: 0.9rem; margin-top: 0.5rem; }
.check-restart:hover { color: var(--accent); }

/* Demo 3: Timeline */
.tl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 3vw, 2rem); align-items: start; }
.tl-card { border-radius: 16px; padding: clamp(1.4rem, 3vw, 2rem); border: 1px solid var(--line); background: var(--bg); }
.tl-after { border-color: rgba(194,78,32,0.3); }
.tl-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; }
.tl-badge { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 6px; }
.tl-before .tl-badge { color: var(--muted); background: var(--surface); }
.tl-after .tl-badge { color: var(--accent); background: var(--tint); }
.tl { list-style: none; margin: 0; padding: 0; position: relative; }
.tl-step { position: relative; padding: 0 0 1.5rem 2.75rem; opacity: 0; transform: translateY(10px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.tl-step.show { opacity: 1; transform: none; }
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before { content: ""; position: absolute; left: 15px; top: 32px; bottom: -2px; width: 2px; background: var(--line); }
.tl-step:last-child::before { display: none; }
.tl-dot { position: absolute; left: 0; top: 0; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 2px solid var(--line); z-index: 1; color: var(--muted); }
.tl-dot svg { width: 16px; height: 16px; }
.tl-after .tl-dot { border-color: rgba(194,78,32,0.4); background: var(--tint); color: var(--accent); }
.tl-time { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); margin-bottom: 0.2rem; }
.tl-text { color: var(--body); font-size: 0.98rem; }
.tl-text strong { color: var(--ink); }
.tl-step.tl-end-bad .tl-dot { background: var(--lost-bg); border-color: var(--lost); color: var(--lost); }
.tl-step.tl-end-bad .tl-text strong { color: var(--lost); }
.tl-step.tl-end-good .tl-dot { background: var(--accent); border-color: var(--accent); color: #fff; }
.tl-step.tl-end-good .tl-text strong { color: var(--accent); }
.tl-stat { margin-top: 1.5rem; background: var(--dark); color: #fff; border-radius: 14px; padding: 1.25rem 1.4rem; }
.tl-stat p { color: #EBE4DF; font-size: 0.98rem; }
.tl-stat strong { color: var(--accent-bright); }
.tl-stat .tl-stat-note { color: #A79C94; font-size: 0.82rem; margin-top: 0.5rem; }


/* =========================================================
   15) FUSSZEILE
   ========================================================= */
.site-footer { background: var(--ink); color: #C9BFB8; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer-brand .brand-name { color: #fff; font-size: 1.3rem; }
.footer-tag { margin-top: 0.5rem; color: #A79C94; max-width: 32ch; }
.footer-head { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.9rem; }
.footer-col a { display: block; color: #C9BFB8; padding: 0.28rem 0; }
.footer-col a:hover { color: var(--accent-bright); }
.footer-col a[aria-disabled="true"] { color: #857a72; cursor: default; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.4rem; font-size: 0.9rem; color: #A79C94; }


/* =========================================================
   16) ANIMATION / BARRIEREFREIHEIT
   ========================================================= */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: 0.6rem 1rem; z-index: 200; }
.skip-link:focus { left: 0.5rem; top: 0.5rem; color: #fff; }
.reveal-pending { opacity: 0; transform: translateY(22px); }
.reveal-in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-pending { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
  .pill, .tl-step { opacity: 1; transform: none; transition: none; }
  .check-stepin { animation: none; }
  .faq-item summary::after { transition: none; }
}


/* =========================================================
   17) RESPONSIVE
   ========================================================= */
@media (max-width: 820px) {
  .calc { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .dash { grid-template-columns: 1fr; }
  .tl-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .site-nav { display: none; }
  .hero-actions .btn, .contact-actions .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .loss-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .offer-block { grid-template-columns: 1fr; gap: 0.75rem; }
  .ple-row { grid-template-columns: 5.5rem 1fr; gap: 0.6rem; }
}
@media (max-width: 420px) {
  .footer-inner { grid-template-columns: 1fr; }
  .ple-row { grid-template-columns: 1fr; gap: 0.15rem; }
  .ple-tag { padding-bottom: 0; }
}

/* ── Rechtsseiten (Impressum / Datenschutz) ───────────── */
.legal-page { padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 3.5rem)); }
.legal-back { display: inline-block; margin-bottom: 1.5rem; font-weight: 600; font-size: 0.95rem; }
.legal-back::before { content: "\2190"; margin-right: 0.4rem; }
#jmdcontent { color: var(--ink); }
#jmdcontent h1 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.8rem; }
#jmdcontent h2 { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.6rem); font-weight: 700; letter-spacing: -0.02em; border-top: 1px solid var(--line); padding-top: 1.6em; }
#jmdcontent h3 { font-size: 1.15rem; font-weight: 700; }
#jmdcontent h4 { font-size: 1rem; font-weight: 700; color: var(--ink); }
#jmdcontent p, #jmdcontent li { color: var(--muted); }
#jmdcontent ul { padding-left: 1.3em; margin: 0.5em 0 1em; }
#jmdcontent li { margin-bottom: 0.3em; }
