/* =====================================================================
   FutureFit Business Solutions GmbH – Andreas Wiepck
   Design-System v2  ·  CLEAN / HELL / BLAU-AKZENT
   Typo: Plus Jakarta Sans (Display) + Inter (Text) – reine Sans-Serif
   Hinweis: Klassennamen wie .btn--gold / .sec-cream sind aus v1 erhalten,
            werden hier aber clean (blau/hell) gestylt – keine HTML-Änderung nötig.
   ===================================================================== */

/* Animierbarer Winkel für den Reifegrad-Ring */
@property --p { syntax: "<number>"; inherits: false; initial-value: 0; }

:root {
  /* Flächen */
  --bg:        #FFFFFF;
  --bg-alt:    #F6F7F9;   /* helle Grau-Sektion */
  --bg-soft:   #FAFBFC;
  --surface:   #FFFFFF;   /* Karten */
  --ink-bg:    #0B0F19;   /* dunkle Kontrast-Sektionen */

  /* Text */
  --ink:       #0B0F19;   /* Überschriften / stark */
  --ink-2:     #232936;
  --muted:     #5B6470;   /* Fließtext sekundär */
  --muted-2:   #858C98;   /* Hinweise */

  /* Linien */
  --line:      #E6E8EC;
  --line-2:    #EEF0F3;

  /* Akzent (Blau) – zentral, überall via var() referenziert */
  --accent:    #2563EB;
  --accent-600:#1D4ED8;
  --accent-700:#1E40AF;
  --accent-50: #EFF4FF;
  --accent-100:#DBE6FF;

  /* Level-Farben (Auswertung) */
  --low:  #DC2626;  --low-bg:  #FEECEC;
  --mid:  #2563EB;  --mid-bg:  #EAF1FF;
  --high: #16A34A;  --high-bg: #E7F6EC;

  /* Typo */
  --display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Maße */
  --wrap: 1180px;
  --wrap-narrow: 780px;
  --radius: 16px;
  --radius-sm: 11px;
  --radius-xs: 8px;
  --shadow-xs: 0 1px 2px rgba(11,15,25,.05);
  --shadow-sm: 0 1px 2px rgba(11,15,25,.04), 0 4px 14px rgba(11,15,25,.04);
  --shadow-md: 0 10px 34px rgba(11,15,25,.08);
  --shadow-lg: 0 24px 60px rgba(11,15,25,.12);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset / Base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--accent-100); }

h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; line-height: 1.1; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.025em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); letter-spacing: -.02em; }
p  { margin: 0 0 1rem; }
strong { color: var(--ink); font-weight: 600; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.narrow { max-width: var(--wrap-narrow); }
.section { padding-block: clamp(68px, 9vw, 128px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: .8rem;
  letter-spacing: .04em; color: var(--accent); margin: 0 0 1.1rem;
}
.eyebrow::before { content:""; width: 18px; height: 1.5px; background: var(--accent); border-radius: 2px; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.28rem); color: var(--muted); line-height: 1.6; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.mx-auto { margin-inline: auto; }
.note { font-size: .84rem; color: var(--muted-2); line-height: 1.55; }

/* Sektionsflächen (v1-Namen, neu gemappt) */
.sec-cream   { background: var(--bg); }
.sec-cream-2 { background: var(--bg-alt); }
.sec-white   { background: var(--bg-soft); }
.sec-dark    { background: var(--ink-bg); color: #C7CDD9; }
.sec-dark h1,.sec-dark h2,.sec-dark h3,.sec-dark h4 { color: #fff; }
.sec-dark .lead { color: #9AA3B2; }
.sec-dark .eyebrow { color: #7DA2FF; }
.sec-dark .eyebrow::before { background: #7DA2FF; }
.sec-dark .note { color: #7B8494; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .82em 1.4em; border-radius: var(--radius-xs); border: 1px solid transparent;
  font-family: var(--sans); font-weight: 600; font-size: .96rem; letter-spacing: -.01em; white-space: nowrap;
  transition: transform .18s var(--ease), background .18s, color .18s, box-shadow .22s, border-color .18s;
}
.btn:hover { transform: translateY(-1.5px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn--gold  { background: var(--accent); color: #fff; box-shadow: 0 1px 2px rgba(37,99,235,.25); }   /* Primär (Akzent) */
.btn--gold:hover { background: var(--accent-600); box-shadow: 0 8px 24px rgba(37,99,235,.28); }
.btn--dark  { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #1b2536; }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.22); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn--lg { padding: .98em 1.7em; font-size: 1rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.85); }
.nav { display: flex; align-items: center; gap: 12px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.0; }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 1.3rem; color: var(--ink); letter-spacing: -.035em; }
.brand__accent { color: var(--accent); }
.brand:hover .brand__accent { color: var(--accent-600); }
.brand__tag  { font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-size: .875rem; font-weight: 500; color: var(--muted); padding: 8px 6px; border-radius: var(--radius-xs); white-space: nowrap; transition: color .18s, background .18s; }
.nav__links a:hover { color: var(--ink); background: var(--bg-alt); }
.nav__cta { margin-left: 8px; display: flex; align-items: center; gap: 10px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--ink); white-space: nowrap; transition: color .16s; }
.nav__phone svg { width: 17px; height: 17px; color: var(--accent); flex: 0 0 auto; }
.nav__phone:hover { color: var(--accent); }
.nav__phone-m { display: none; }
@media (min-width: 1180px) { .nav__menu { display: flex; align-items: center; gap: 5px; } }
/* In der Desktop-Leiste nur das Telefon-Icon (Klick-to-Call); die volle Nummer
   steht im aufgeklappten Menü, im Kontaktbereich und im Footer. */
@media (min-width: 1180px) { .nav__phone span { display: none; } }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; border-radius: 8px; }
.nav__toggle span { display:block; width:22px; height:2px; background: var(--ink); margin:5px 0; border-radius:2px; transition: transform .25s, opacity .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1179px) {
  .nav__toggle { display: block; }
  .nav__phone-m { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; color: var(--accent); }
  .nav__phone-m svg { width: 19px; height: 19px; }
  .nav__menu {
    position: fixed; inset: 72px 0 auto 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    display: none; flex-direction: column; gap: 0; padding: 14px 24px 22px;
    box-shadow: var(--shadow-md);
  }
  .nav__menu.is-open { display: flex; animation: menuIn .28s var(--ease-out); }
  @keyframes menuIn { from { opacity:0; transform: translateY(-8px);} to{opacity:1; transform:none;} }
  .nav__links { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav__links a { display: block; padding: 13px 12px; font-size: 1.02rem; }
  .nav__cta { margin: 14px 0 0; flex-direction: column; align-items: stretch; gap: 12px; }
  .nav__cta .nav__phone { justify-content: center; padding: 6px; }
  .nav__cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 5vw, 76px); padding-bottom: clamp(56px, 7vw, 104px); }
.hero::before { /* dezenter Akzent-Schimmer */
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(60% 60% at 85% -10%, rgba(37,99,235,.10), transparent 70%),
    radial-gradient(50% 50% at 0% 0%, rgba(37,99,235,.05), transparent 60%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 60px; align-items: center; }
.hero__title { margin-bottom: .5em; line-height: 1.13; }
.hero__title em { font-style: normal; color: var(--accent); }
.hero__sub { max-width: 42ch; font-size: 1.18rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__meta { display:flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.hero__meta div { display:flex; align-items:center; gap:8px; font-size:.9rem; color: var(--muted); }
.hero__meta svg { width:18px; height:18px; color: var(--accent); }
.hero__quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-md); position: relative;
}
.hero__quote::before {
  content:""; position:absolute; left:0; top:28px; bottom:28px; width:3px; border-radius:3px;
  background: linear-gradient(var(--accent), var(--accent-100));
}
.hero__quote p { font-family: var(--display); font-weight: 500; font-size: 1.34rem; line-height: 1.42; letter-spacing: -.02em; color: var(--ink); margin: 0; padding-left: 20px; }
.hero__quote .qmeta { font-family: var(--sans); font-weight: 500; font-size: .86rem; color: var(--muted); margin: 18px 0 0; padding-left: 20px; }
@media (max-width: 880px){
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__sub { max-width: 52ch; }
}

/* ---------- Karten-Grundstil ---------- */
.pillar, .stat, .case, .ind {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.pillar:hover, .stat:hover, .case:hover, .ind:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }

/* Drei Säulen */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pillar { padding: 30px 28px; }
.pillar__ic { width: 46px; height: 46px; display:grid; place-items:center; border-radius: 12px; background: var(--accent-50); color: var(--accent); margin-bottom: 18px; }
.pillar__ic svg { width: 24px; height: 24px; }
.pillar h3 { margin-bottom: .35em; }
.pillar p { margin: 0; color: var(--muted); font-size: .98rem; }
@media (max-width: 800px){ .pillars { grid-template-columns: 1fr; } }

/* ---------- Selbstcheck ---------- */
.check__intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px){ .check__intro-grid { grid-template-columns: 1fr; gap: 32px; } }
.qlist { list-style: none; margin: 24px 0 0; padding: 0; }
.qlist li { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.qlist li:last-child { border-bottom: 1px solid var(--line); }
.qlist .qn { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--accent); flex: 0 0 auto; line-height: 1.5; font-variant-numeric: tabular-nums; }
.qlist .qt { margin: 0; font-weight: 600; color: var(--ink); }
.qlist .qt span { display:block; font-weight: 400; color: var(--muted); font-size: .93rem; margin-top: 3px; line-height: 1.5; }

/* Wizard */
.wizard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.wizard__head { padding: 26px 30px 0; }
.wizard__cat { font-size: .78rem; letter-spacing: .02em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.wizard__count { float: right; font-size: .84rem; color: var(--muted-2); font-weight: 600; font-variant-numeric: tabular-nums; }
.progress { height: 6px; background: var(--bg-alt); border-radius: 99px; margin: 14px 0 4px; overflow: hidden; }
.progress__bar { height: 100%; width: 0; background: var(--accent); border-radius: 99px; transition: width .45s var(--ease); }
.wizard__body { padding: 24px 30px 30px; }
.wizard__q { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem,2.3vw,1.7rem); letter-spacing:-.02em; margin: 6px 0 22px; color: var(--ink); min-height: 2.4em; }
/* Einheitliche Höhe des Frage-Screens: Karte springt nicht mehr zwischen Fragen.
   Navigation am unteren Rand verankern, damit der Ausgleichsraum sauber sitzt. */
#wz-quiz:not([hidden]) { min-height: 524px; display: flex; flex-direction: column; }
#wz-quiz .wizard__body { flex: 1; display: flex; flex-direction: column; }
#wz-quiz .wizard__nav { margin-top: auto; }
@media (max-width: 600px){ #wz-quiz:not([hidden]) { min-height: 560px; } }
.opts { display: grid; gap: 10px; }
.opt {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 15px 18px; transition: border-color .16s, background .16s, transform .12s, box-shadow .16s;
}
.opt:hover { border-color: var(--accent); background: var(--accent-50); transform: translateY(-1px); }
.opt.is-selected { border-color: var(--accent); background: var(--accent-50); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.opt__badge { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--bg-alt); color: var(--muted); font-weight: 700; font-size: .95rem; transition: background .16s, color .16s; }
.opt.is-selected .opt__badge { background: var(--accent); color: #fff; }
.opt__txt { font-size: 1rem; font-weight: 500; color: var(--ink); }
.wizard__nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 24px; }
.wizard__nav .spacer { flex: 1; }
.link-btn { background: none; border: 0; color: var(--muted-2); font-weight: 600; font-size: .9rem; padding: 8px; border-radius: 6px; transition: color .16s; }
.link-btn:hover { color: var(--ink); }
.link-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ---------- Ergebnis: großzügige Vollbreiten-Darstellung ---------- */
/* Sobald das Ergebnis da ist: Fünf-Fragen-Intro ausblenden, Panel über volle Breite */
.check__intro-grid.is-result { grid-template-columns: 1fr; }
.check__intro-grid.is-result > :first-child { display: none; }
#wz-result { padding: 34px 36px 38px; }
@media (max-width: 560px){ #wz-result { padding: 26px 22px 30px; } }

.result__top { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); animation: fadeUp .5s var(--ease-out) both; }
.result__verdict { flex: 1; min-width: 280px; }
.result__verdict .wizard__cat { display: block; margin-bottom: 8px; }
.result__verdict h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -.02em; margin-bottom: .3em; }
.result__verdict p { margin: 0; color: var(--muted); max-width: 64ch; }

.result__grid { display: grid; grid-template-columns: 1.25fr .9fr; gap: 40px; align-items: start; animation: fadeUp .5s var(--ease-out) .1s both; }
@media (max-width: 820px){ .result__grid { grid-template-columns: 1fr; gap: 28px; } }
.result__h { font-family: var(--sans); font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 20px; }
.result__aside { display: flex; flex-direction: column; gap: 18px; }
.result__cta { display: flex; flex-direction: column; gap: 12px; }

/* Reifegrad-Ring */
.gauge {
  --p: 0; flex: 0 0 auto; width: 148px; height: 148px; border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--p) * 1%), var(--bg-alt) 0);
  display: grid; place-items: center;
  transition: --p 1.1s var(--ease-out);
}
.gauge__inner { width: 118px; height: 118px; border-radius: 50%; background: var(--surface); display: grid; place-content: center; justify-items: center; gap: 3px; text-align: center; }
.gauge__num { font-family: var(--display); font-weight: 800; font-size: 2.3rem; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.gauge__lbl { font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }

/* Fünf Felder – Balken */
.bars { display: grid; gap: 20px; }
.bar__row { display: grid; gap: 8px; }
.bar__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.bar__name { font-weight: 600; font-size: 1rem; color: var(--ink); display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.bar__val { font-size: .85rem; color: var(--muted-2); font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.bar__track { height: 10px; background: var(--bg-alt); border-radius: 99px; overflow: hidden; }
.bar__fill { height: 100%; width: 0; border-radius: 99px; transition: width .8s var(--ease-out); }
.bar__fill.lvl-low  { background: var(--low); }
.bar__fill.lvl-mid  { background: var(--mid); }
.bar__fill.lvl-high { background: var(--high); }
.tag { display:inline-block; font-size:.68rem; font-weight:700; letter-spacing:.02em; padding:3px 10px; border-radius:99px; }
.tag.lvl-low  { background:var(--low-bg); color:var(--low); }
.tag.lvl-mid  { background:var(--mid-bg); color:var(--mid); }
.tag.lvl-high { background:var(--high-bg); color:var(--high); }

/* Größter-Hebel-Karte */
.focus-card { background: var(--ink-bg); color:#C7CDD9; border-radius: var(--radius); padding: 28px 30px; margin: 0; position: relative; overflow: hidden; }
.focus-card::after { content:""; position:absolute; right:-40px; top:-40px; width:150px; height:150px; border-radius:50%; background: radial-gradient(rgba(37,99,235,.4), transparent 70%); }
.focus-card h4 { color:#fff; margin-bottom:.4em; font-size:1.2rem; position:relative; }
.focus-card p { margin:0 0 1em; color:#D6DCE6; position:relative; }
.focus-card p:last-child { margin-bottom:0; }

/* Lead-Angebot nach dem Selbstcheck */
.lead-offer { display:flex; flex-direction:column; gap:14px; }
.lead-box h4 { font-size:1.12rem; margin:0 0 .35em; }
.lead-box p { color:var(--muted); font-size:.95rem; margin:0 0 14px; }
.lead-field { margin-bottom:10px; }
.lead-field input, .lead-grid input { width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:10px; font:inherit; color:var(--ink); background:#fff; transition:border-color .16s, box-shadow .16s; }
.lead-field input:focus, .lead-grid input:focus { outline:none; border-color:var(--accent); box-shadow:0 0 0 3px rgba(37,99,235,.14); }
.lead-grid { display:flex; flex-direction:column; gap:8px; margin-bottom:14px; }
.lead-consent { display:flex; gap:9px; align-items:flex-start; font-size:.82rem; line-height:1.45; color:var(--muted); margin:0 0 14px; }
.lead-consent input { margin-top:3px; flex:0 0 auto; }
.lead-consent a { color:var(--accent); text-decoration:underline; }
.lead-box .btn + .btn { margin-top:8px; }
.lead-err { color:#c0392b; font-size:.85rem; margin:10px 0 0; }
.lead-alt { display:block; text-align:center; margin-top:4px; font-size:.9rem; font-weight:600; color:var(--accent); }
.lead-alt:hover { text-decoration:underline; }

@keyframes fadeUp { from { opacity:0; transform: translateY(12px);} to{opacity:1; transform:none;} }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.stat { padding: 32px 28px; }
.stat__big { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem,4vw,3rem); color: var(--ink); line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stat__lbl { font-weight: 600; color: var(--accent); font-size: .82rem; letter-spacing:.02em; text-transform: uppercase; margin: 12px 0 12px; }
.stat p { margin: 0; color: var(--muted); font-size: .96rem; }
@media (max-width: 800px){ .stats { grid-template-columns: 1fr; } }

/* ---------- Fallbeispiele ---------- */
.cases { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.case { padding: 30px 28px; display:flex; flex-direction: column; }
.case__kicker { font-size:.72rem; letter-spacing:.04em; text-transform:uppercase; color: var(--accent); font-weight:700; margin-bottom: 14px; }
.case h3 { font-size: 1.24rem; }
.case p { color: var(--muted); font-size:.96rem; }
.case ul { list-style:none; margin:16px 0 0; padding:16px 0 0; border-top:1px solid var(--line); display:grid; gap:10px; }
.case li { position:relative; padding-left: 26px; font-size:.93rem; color: var(--ink-2); }
.case li::before { content:""; position:absolute; left:0; top:.35em; width:16px; height:16px; border-radius:50%; background: var(--accent-50); }
.case li::after { content:""; position:absolute; left:5px; top:.62em; width:6px; height:6px; border-radius:50%; background: var(--accent); }
@media (max-width: 900px){ .cases { grid-template-columns: 1fr; } }

/* ---------- Branchen ---------- */
.industries { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.ind { padding: 24px; }
.ind h3 { font-size: 1.1rem; margin-bottom: .35em; }
.ind p { margin:0; color: var(--muted); font-size:.92rem; }
@media (max-width: 900px){ .industries { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .industries { grid-template-columns: 1fr; } }

/* ---------- Expertise ---------- */
.expertise__grid { display:grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; }
.expertise__photo { position: relative; }
.expertise__photo { align-self: start; }
.expertise__photo img { border-radius: var(--radius); box-shadow: var(--shadow-md); background: var(--bg-alt); width:100%; height:auto; display:block; border: 1px solid var(--line); }
.expertise__badge {
  position:absolute; right:-14px; bottom:22px; background: var(--surface); color: var(--ink);
  padding: 14px 18px; border-radius: 14px; box-shadow: var(--shadow-md); border: 1px solid var(--line); max-width: 170px;
}
.expertise__badge b { font-family: var(--display); font-weight:800; font-size: 1.7rem; display:block; line-height:1; color: var(--accent); }
.expertise__badge span { font-size:.78rem; color: var(--muted); }
.expertise blockquote { font-family: var(--display); font-weight: 600; font-size: clamp(1.4rem,2.6vw,1.9rem); line-height:1.3; letter-spacing:-.025em; margin: 24px 0 0; color: var(--ink); }
.expertise__name { margin-top: 18px; font-weight:700; color: var(--ink); }
.expertise__name span { display:block; font-weight:400; color: var(--muted); font-size:.9rem; margin-top:2px; }
@media (max-width: 860px){ .expertise__grid { grid-template-columns: 1fr; gap: 44px; } .expertise__photo{ max-width: 360px; } .expertise__badge{ right: 14px; } }

/* ---------- Buch ---------- */
.book__grid { display:grid; grid-template-columns: 290px 1fr; gap: 56px; align-items:center; }
.book__cover {
  aspect-ratio: 3/4.2; border-radius: 12px; background: var(--ink-bg);
  box-shadow: var(--shadow-lg); color:#E7EAF0; padding: 32px 28px; display:flex; flex-direction:column; justify-content:space-between;
  position: relative; overflow: hidden; transition: transform .35s var(--ease);
}
.book__cover:hover { transform: translateY(-4px) rotate(-.6deg); }
.book__cover::before { content:""; position:absolute; left:0; top:0; bottom:0; width:5px; background: var(--accent); }
.book__cover::after { content:""; position:absolute; right:-50px; bottom:-50px; width:160px; height:160px; border-radius:50%; background: radial-gradient(rgba(37,99,235,.4), transparent 70%); }
.book__cover .bc-top { font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color: #7DA2FF; position:relative; }
.book__cover .bc-title { font-family: var(--display); font-weight:800; font-size: 1.85rem; line-height:1.08; letter-spacing:-.02em; color:#fff; position:relative; }
.book__cover .bc-sub { font-size:.85rem; color:#9AA3B2; position:relative; }
.book__cover .bc-author { font-size:.8rem; letter-spacing:.04em; border-top:1px solid rgba(255,255,255,.14); padding-top:14px; color:#C7CDD9; position:relative; }
.book ul { margin: 18px 0 26px; padding: 0; list-style: none; display:grid; gap:12px; }
.book li { position:relative; padding-left:30px; color: var(--muted); }
.book li svg { position:absolute; left:0; top:2px; width:20px; height:20px; color: var(--accent); }
.book__cover-img { display:block; align-self:start; border-radius:10px; overflow:hidden; box-shadow: var(--shadow-lg); transition: transform .35s var(--ease); }
.book__cover-img:hover { transform: translateY(-5px) rotate(-.8deg); }
.book__cover-img img { display:block; width:100%; height:auto; }
@media (max-width: 760px){ .book__grid { grid-template-columns: 1fr; gap: 36px; } .book__cover{ max-width: 250px; } }

/* ---------- Schritte ---------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step { background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 30px 28px; transition: border-color .25s, background .25s; }
.step:hover { border-color: rgba(125,162,255,.4); background: rgba(255,255,255,.05); }
.step__n { width: 40px; height: 40px; border-radius: 10px; background: rgba(125,162,255,.14); color: #7DA2FF; display:grid; place-items:center; font-family: var(--display); font-weight:800; font-size:1.2rem; }
.step h3 { margin: 16px 0 .4em; }
.step p { margin:0; color:#9AA3B2; font-size:.96rem; }
@media (max-width: 800px){ .steps { grid-template-columns: 1fr; } }

/* ---------- Kontakt / Formular ---------- */
.contact__grid { display:grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: stretch; }
/* Formular füllt die Höhe der linken Spalte → beide Seiten schließen unten bündig ab */
.contact__formcol { display: flex; }
.contact__formcol .form { flex: 1; display: flex; flex-direction: column; }
.field--grow { flex: 1; display: flex; flex-direction: column; }
.field--grow textarea { flex: 1; }
@media (max-width: 880px){ .contact__grid { grid-template-columns: 1fr; gap: 34px; } }
/* verhindert Grid-Blowout auf Mobil (Spalten dürfen unter ihren Inhalt schrumpfen) */
.contact__aside, .contact__formcol { min-width: 0; }
.contact__aside .note { overflow-wrap: anywhere; }
/* Vollbreite-Buttons dürfen umbrechen (lange Labels sprengen sonst schmale Spalten) */
.btn--block { white-space: normal; }
.form { background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field label { display:block; font-weight:600; font-size:.86rem; margin-bottom:7px; color: var(--ink); }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width:100%; padding: 12px 14px; border:1.5px solid var(--line); border-radius: var(--radius-xs);
  font-family: inherit; font-size: 1rem; background: var(--bg-soft); color: var(--ink); transition: border-color .16s, box-shadow .16s, background .16s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background:#fff; box-shadow: 0 0 0 3px rgba(37,99,235,.14);
}
.field textarea { min-height: 118px; resize: vertical; }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:0 16px; }
@media (max-width: 520px){ .grid-2 { grid-template-columns:1fr; } }
.consent { display:flex; gap:10px; align-items:flex-start; font-size:.85rem; color: var(--muted); margin: 6px 0 20px; }
.consent input { margin-top:3px; flex:0 0 auto; width:16px; height:16px; accent-color: var(--accent); }
.consent a { color: var(--accent); }
.form__status { display:none; padding: 13px 16px; border-radius: var(--radius-xs); font-size:.92rem; margin-bottom: 16px; }
.form__status.ok  { display:block; background:var(--high-bg); color: var(--high); }
.form__status.err { display:block; background:var(--low-bg); color:var(--low); }
.contact__aside .lead { margin-bottom: 26px; }
.contact__points { list-style:none; margin:0; padding:0; display:grid; gap:16px; }
.contact__points li { display:flex; gap:14px; align-items:flex-start; }
.contact__points .ci { flex:0 0 auto; width:38px; height:38px; border-radius:10px; background:var(--accent-50); color:var(--accent); display:grid; place-items:center; }
.contact__points svg { width:20px; height:20px; }
.contact__points b { display:block; color: var(--ink); font-size:.98rem; }
.contact__points span { color: var(--muted); font-size:.92rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-bg); color:#9AA3B2; padding: 72px 0 34px; }
.footer .brand__name { color:#fff; }
.footer .brand__accent { color:#7DA2FF; }
.footer .brand__tag { color:#6B7484; }
.footer__claim { margin: 22px 0 0; }
.footer__claim span { display:inline-block; font-family:var(--display); font-weight:700; font-size:1.5rem; letter-spacing:-.02em; color:#fff; margin-right:.4em; }
.footer__grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin: 40px 0; }
.footer a { transition: color .16s; }
.footer a:hover { color:#fff; }
.footer__links { list-style:none; margin:0; padding:0; display:grid; gap:11px; }
.footer__links a { font-size:.93rem; }
.footer__col h4 { font-family: var(--sans); font-weight:600; font-size:.76rem; letter-spacing:.1em; text-transform:uppercase; margin-bottom: 16px; color:#6B7484; }
.footer__bottom { border-top:1px solid rgba(255,255,255,.1); padding-top: 22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.85rem; color:#6B7484; }
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px){ .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Reveal / Animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity:1; transform:none; transition:none; }
  .gauge { transition: none; }
  * { animation: none !important; }
}

/* ---------- Rechtsseiten ---------- */
.legal { padding-block: clamp(48px,7vw,96px); }
.legal h1 { margin-bottom: .5em; }
.legal h2 { font-size: 1.35rem; margin-top: 1.8em; }
.legal p, .legal li { color: var(--muted); }
.legal .todo { background: var(--accent-50); border: 1px solid var(--accent-100); border-left: 4px solid var(--accent); padding: 12px 16px; border-radius: 8px; color: var(--accent-700); font-size:.92rem; }
.back-link { display:inline-flex; align-items:center; gap:8px; margin-bottom: 24px; color: var(--accent); font-weight:600; }

/* ---------- Bilder: einheitliche Blau-Tönung (Duotone-Look) ---------- */
.media { position: relative; overflow: hidden; background: var(--ink-bg); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(.55) contrast(1.04); transition: transform .6s var(--ease); }
.media::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(37,99,235,.16), rgba(11,15,25,.30)); }

/* Branchen-Karten mit Bild */
.ind { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.ind .media { aspect-ratio: 40 / 27; }
.ind:hover .media img { transform: scale(1.05); }
.ind__body { padding: 22px 24px 24px; }
.ind__body h3 { font-size: 1.1rem; margin-bottom: .3em; }
.ind__body p { margin: 0; color: var(--muted); font-size: .92rem; }

/* Hero-Bild mit Zitat-Overlay */
.hero__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 900 / 1080; }
.hero__media .media { position: absolute; inset: 0; }
.hero__media .media::after { background: linear-gradient(180deg, rgba(11,15,25,.10) 0%, rgba(11,15,25,.14) 30%, rgba(11,15,25,.60) 60%, rgba(11,15,25,.90) 100%); }
.hero__quote-over { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 30px 28px; z-index: 1; }
.hero__quote-over p { font-family: var(--display); font-weight: 600; font-size: clamp(1.15rem,1.7vw,1.34rem); line-height: 1.4; letter-spacing: -.02em; margin: 0 0 12px; color: #fff; }
.hero__quote-over .qmeta { font-family: var(--sans); font-weight: 500; font-size: .84rem; color: #C7CDD9; }
@media (max-width: 880px){ .hero__media { aspect-ratio: 16 / 11; } }

/* Bild-Band (Sektionswechsel) */
.band { position: relative; isolation: isolate; }
.band .media { position: absolute; inset: 0; }
.band .media img { filter: grayscale(.6) contrast(1.05); }
.band .media::after { background: linear-gradient(90deg, rgba(11,15,25,.88) 0%, rgba(11,15,25,.60) 55%, rgba(37,99,235,.30) 100%); }
.band__inner { position: relative; z-index: 1; padding-block: clamp(72px, 10vw, 128px); }
.band__quote { font-family: var(--display); font-weight: 700; font-size: clamp(1.6rem, 3.2vw, 2.5rem); line-height: 1.22; letter-spacing: -.025em; color: #fff; max-width: 22ch; margin: 0; }
.band__meta { margin: 18px 0 0; color: #9AA3B2; font-size: 1rem; max-width: 46ch; }

/* Kontakt-Bild */
.contact__media { border-radius: var(--radius); aspect-ratio: 900 / 500; margin-top: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }

@media (prefers-reduced-motion: reduce){ .media img { transition: none; } }

/* Aussage-Zitat (z. B. Sektion „Worum es geht") */
.statement { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 2.8vw, 2.15rem); line-height: 1.28; letter-spacing: -.02em; color: #fff; margin: 1.6em auto 0; max-width: 24ch; }
/* Aussage-Zitat mit Andreas' Porträt */
.statement-quote { display: flex; align-items: center; justify-content: center; gap: 28px; margin: 2em auto 0; max-width: 760px; text-align: left; flex-wrap: wrap; }
.statement-quote__avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: 50% 14%; flex: 0 0 auto; border: 3px solid rgba(255,255,255,.22); box-shadow: var(--shadow-lg); background: var(--bg-alt); }
.statement-quote > div { max-width: 30ch; }
.statement-quote .statement { margin: 0; max-width: none; font-size: clamp(1.35rem, 2.3vw, 1.85rem); }
.statement-quote__by { margin: 12px 0 0; font-size: .92rem; font-weight: 500; color: #9AA3B2; }
@media (max-width: 560px){ .statement-quote { text-align: center; gap: 16px; } .statement-quote > div { max-width: 100%; } }

/* „Worum es geht" mit dezentem Hintergrundbild (dunkel überlagert) */
.worum-bg {
  position: relative;
  background-image: linear-gradient(180deg, rgba(11,15,25,.86), rgba(11,15,25,.93)), url(../img/worum-bg.jpg);
  background-size: cover;
  background-position: center;
}

/* ================= Präsentations-Feinschliff ================= */
/* Hero: sanft wanderndes Blau-Leuchten */
.hero::before { inset: -25%; animation: heroGlow 24s ease-in-out infinite alternate; }
@keyframes heroGlow { from { transform: translate3d(-3%,-2%,0) scale(1); } to { transform: translate3d(4%,3%,0) scale(1.12); } }

/* Scroll-Spy: aktiver Navigationspunkt */
.nav__links a { position: relative; }
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: 3px; height: 2px; border-radius: 2px; background: var(--accent); }

/* Sanfter Bild-Parallax (nur wenn Bewegung erwünscht) */
@media (prefers-reduced-motion: no-preference) {
  img[data-parallax] { position: relative; top: -9%; height: 118%; transition: none; will-change: transform; }
}
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }

/* Utility */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* =====================================================================
   Selbstcheck – Aktion „Als PDF speichern" + druckbare Auswertung
   Die Auswertung (#wz-print) ist am Bildschirm ausgeblendet und wird nur
   beim Drucken (body.pr-printing) isoliert dargestellt – ideal für
   „Als PDF speichern" im Druckdialog.
   ===================================================================== */
.result__actions { margin-top: 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.result__actions-hint { font-size: .82rem; color: var(--muted-2); }

/* Druck-Auswertung – am Bildschirm nie sichtbar */
#wz-print { display: none; }

@media print {
  body.pr-printing > *:not(#wz-print) { display: none !important; }
  body.pr-printing #wz-print { display: block !important; }
  body.pr-printing { background: #fff !important; margin: 0 !important; }
  @page { size: A4; margin: 15mm 14mm 14mm; }
}

#wz-print, #wz-print * { box-sizing: border-box; }
#wz-print {
  -webkit-print-color-adjust: exact; print-color-adjust: exact;
  color: var(--ink); font-family: var(--sans); font-size: 11pt; line-height: 1.5;
}

/* Kopf */
.pr-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--accent); margin-bottom: 22px; }
.pr-logo { font-family: var(--display); font-weight: 800; font-size: 18pt; letter-spacing: -.03em; color: var(--ink); }
.pr-logo span { color: var(--accent); }
.pr-sub { display: block; font-size: 8pt; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }
.pr-headmeta { text-align: right; font-size: 9.5pt; font-weight: 600; color: var(--ink-2); }
.pr-headmeta span { font-weight: 400; color: var(--muted); font-size: 8.5pt; }

/* Reifegrad */
.pr-hero { display: flex; gap: 24px; align-items: center; padding: 2px 0 20px;
  border-bottom: 1px solid var(--line); margin-bottom: 20px; break-inside: avoid; }
.pr-gauge { flex: 0 0 auto; width: 108px; height: 108px; border-radius: 50%; display: grid;
  place-content: center; text-align: center;
  background: radial-gradient(circle at center, #fff 55%, transparent 56%),
              conic-gradient(var(--accent) calc(var(--pv,0) * 1%), var(--accent-100) 0); }
.pr-gaugenum { font-family: var(--display); font-weight: 800; font-size: 25pt; line-height: 1; color: var(--ink); }
.pr-gaugelbl { font-size: 6.5pt; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.pr-verdict { flex: 1; }
.pr-verdict h1 { font-family: var(--display); font-size: 17pt; letter-spacing: -.02em; margin: 0 0 .35em; color: var(--ink); }
.pr-verdict p { margin: 0 0 .5em; color: var(--ink-2); }
.pr-total { color: var(--muted) !important; font-size: 10pt; }

/* Detail-Tabelle */
.pr-detail { margin-bottom: 20px; }
#wz-print h2 { font-family: var(--display); font-size: 12.5pt; letter-spacing: -.01em; margin: 0 0 12px; color: var(--ink); }
.pr-table { width: 100%; border-collapse: collapse; }
.pr-row { border-top: 1px solid var(--line); break-inside: avoid; }
.pr-row:first-child { border-top: 0; }
.pr-cat { padding: 11px 12px 11px 0; vertical-align: top; }
.pr-catname { font-weight: 700; font-size: 10.5pt; color: var(--ink); margin-bottom: 2px; }
.pr-insight { font-size: 9.5pt; color: var(--muted); line-height: 1.45; }
.pr-score { padding: 11px 14px; vertical-align: top; white-space: nowrap; text-align: right; font-variant-numeric: tabular-nums; }
.pr-num { font-family: var(--display); font-weight: 800; font-size: 14pt; color: var(--ink); }
.pr-max { color: var(--muted); font-size: 9pt; }
.pr-lvl { padding: 11px 0; vertical-align: top; white-space: nowrap; text-align: right; }
.pr-chip { display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: 8pt; font-weight: 700; letter-spacing: .02em; }
.pr-chip.pr-low  { background: var(--low-bg);  color: var(--low); }
.pr-chip.pr-mid  { background: var(--mid-bg);  color: var(--mid); }
.pr-chip.pr-high { background: var(--high-bg); color: var(--high); }

/* Größter Hebel */
.pr-focus { background: var(--ink-bg); color: #E4E8F0; border-radius: 12px; padding: 16px 20px; margin-bottom: 20px; break-inside: avoid; }
#wz-print .pr-focus h2 { color: #fff; margin-bottom: 6px; }
.pr-focus p { margin: 0; color: #C7CDD9; font-size: 10pt; }

/* Nächster Schritt */
.pr-next { break-inside: avoid; margin-bottom: 18px; }
.pr-next p { margin: 0 0 8px; color: var(--ink-2); font-size: 10pt; }
.pr-contact { background: var(--accent-50); border: 1px solid var(--accent-100); border-radius: 10px; padding: 12px 16px; }

/* Fuß */
.pr-foot { border-top: 1px solid var(--line); padding-top: 10px; font-size: 8pt; color: var(--muted); }

/* =====================================================================
   Selbstcheck – E-Mail-Gate vor dem Ergebnis (maximale Kontakterfassung)
   ===================================================================== */
.gate { max-width: 560px; margin: 0 auto; text-align: center; padding: 8px 0 6px; animation: fadeUp .5s var(--ease-out) both; }
.gate .wizard__cat { display: block; margin-bottom: 10px; }
.gate__title { font-size: clamp(1.35rem, 2.4vw, 1.9rem); letter-spacing: -.02em; margin: 0 0 .5em; }
.gate__lead { color: var(--muted); margin: 0 auto 22px; max-width: 48ch; }
.gate .lead-field { margin-bottom: 12px; }
.gate .lead-field input { text-align: center; }
.gate .lead-consent { text-align: left; }
.gate__back { display: inline-block; margin-top: 16px; color: var(--muted-2); }
.gate__back:hover { color: var(--ink); }
