@charset "UTF-8";
/* ═══════════════════════════════════════════════════════
   seniq Strategiepartner — seniq.css
   Version: 2.0 | IONOS-ready
   Farben: Navy #1A2E5A · Teal #1AA8A8 · Gold #C9992A
═══════════════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --navy:   #1A2E5A;
  --teal:   #1AA8A8;
  --gold:   #C9992A;
  --grn:    #2E9E6B;
  --grn-l:  rgba(46,158,107,.12);
  --bg:     #F7F9FC;
  --border: #DDE3F0;
  --muted:  #6B7A99;
  --fs:     'Playfair Display', Georgia, serif;
  --fb:     'DM Sans', system-ui, sans-serif;
  --mono:   'DM Mono', 'Courier New', monospace;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(26,46,90,.10);
  --trans:  .25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--fb);
  color: var(--navy);
  background: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
canvas { max-width: 100%; display: block; }
#velChart { max-height: 280px; }
#benchChart { max-height: 220px; }
#velMiniChart { max-height: 180px; }
a { color: var(--teal); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--navy); }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Navigation ── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 2.5rem;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
#mainNav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(26,46,90,.10);
  padding: .6rem 2.5rem;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--navy);
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: .5rem 1.2rem;
  border-radius: 8px;
  font-size: .82rem !important;
}
.nav-cta:hover { background: var(--navy) !important; color: white !important; }

/* ── Buttons ── */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  text-decoration: none;
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,46,90,.2); }
.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: #158c8c; color: white; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 10px;
  border: 1.5px solid rgba(26,46,90,.25);
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color var(--trans), background var(--trans), transform var(--trans);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(26,46,90,.06);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 7rem 2.5rem 4rem;
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
}
.hero-bg {
  display: none;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.hero-h1 {
  font-family: var(--fs);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}
.hero-h1 em { color: var(--teal); font-style: italic; }
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* KPI Pills */
.kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 1rem;
}
.kpi-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.kpi-pill.gold-border { border-color: rgba(201,153,42,.45); }
.kpi-pill.grn-border  { border-color: rgba(46,158,107,.45); }
.kpi-pill-num {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: .3rem;
}
.kpi-pill-label {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.45;
}

/* VEL Card */
.hero-left { min-width: 0; }
.hero-right { position: relative; }
.vel-card {
  min-width: 0;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 8px 32px rgba(26,46,90,.08);
  color: var(--navy);
}
.vel-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--teal), #158c8c);
  color: white;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.vel-card h3 {
  font-family: var(--fs);
  font-size: 1.1rem;
  margin-bottom: .6rem;
  color: var(--navy);
}
.vel-card p { font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }
.vel-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; margin-top: 1rem; }
.vel-kpi { text-align: center; }
.vel-kpi-val { font-family: var(--mono); font-size: 1.15rem; font-weight: 700; color: var(--teal); }
.vel-kpi-lbl { font-size: .65rem; color: var(--muted); margin-top: .2rem; }
.vel-mini-col { background: rgba(255,255,255,.05); border-radius: 10px; padding: .8rem; min-width: 0; }

/* Ertrag Section */
.ertrag-section { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--border); }
.ertrag-title { font-size: .75rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; letter-spacing: .04em; }
.ert-row { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; }
.ert-label { font-size: .68rem; color: var(--muted); min-width: 110px; }
.ert-track { flex: 1; height: 22px; background: #F0F3F9; border-radius: 6px; overflow: hidden; }
.ert-fill {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-right: .5rem;
  justify-content: flex-end;
  transition: width 1.4s cubic-bezier(.4,0,.2,1);
}
.ert-fill span { font-size: .64rem; font-weight: 700; color: white; }
.ert-delta { font-size: .65rem; font-weight: 700; min-width: 48px; text-align: center; padding: .2rem .4rem; border-radius: 5px; }
.ert-note { font-size: .6rem; color: var(--muted); margin-top: .5rem; }

/* ── Section Base ── */
.section {
  padding: 5rem 2rem;
  position: relative;
}
.section-h2 {
  font-family: var(--fs);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .8rem;
}
.section-h2 em { color: var(--teal); font-style: italic; }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: .8rem;
}

/* ── Parallax / Background ── */
.parallax-wrap { overflow: hidden; }
.bg-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1e3d 0%, #1A2E5A 100%);
  z-index: 0;
}

/* ── Problem Grid ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-bottom: 2rem;
}
.problem-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.8rem;
  color: white;
}
.problem-card h4 { font-size: 1rem; font-weight: 700; margin: .6rem 0 .5rem; color: white; }
.problem-card p  { font-size: .83rem; color: rgba(255,255,255,.7); line-height: 1.65; }
.problem-num {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .06em;
}
.callout-bar {
  background: linear-gradient(90deg, rgba(26,168,168,.12), rgba(201,153,42,.08));
  border: 1px solid rgba(26,168,168,.25);
  border-radius: var(--radius);
  padding: 1.8rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  color: white;
  margin-top: 1rem;
}
.callout-big {
  font-family: var(--mono);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--teal);
  white-space: nowrap;
}
.callout-text { display: flex; flex-direction: column; gap: .35rem; }
.callout-text strong { color: white; font-size: .95rem; }
.callout-text span   { color: rgba(255,255,255,.65); font-size: .82rem; line-height: 1.6; }

/* ── Wissenschaft / PIMS ── */
#wissenschaft { background: white; }
.wiss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}
.wiss-left-col .section-h2 { margin-bottom: 1rem; }
.cred-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.8rem 0 2rem;
}
.cred-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  text-align: center;
  border: 1px solid var(--border);
}
.cred-num { font-family: var(--mono); font-size: 1.6rem; font-weight: 800; color: var(--navy); }
.cred-label { font-size: .65rem; color: var(--muted); margin-top: .25rem; line-height: 1.4; }
.pims-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .35rem .9rem;
  font-size: .7rem;
  font-weight: 600;
  color: var(--muted);
  margin: .2rem .15rem;
}
.wiss-right-col { position: relative; }
.wiss-right { position: relative; }
.wiss-right-inner { position: relative; }
.wiss-img-card {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 520px;
  box-shadow: 0 20px 60px rgba(26,46,90,.25);
}
.wiss-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.wiss-quote {
  font-family: var(--fs);
  font-size: .95rem;
  font-style: italic;
  color: white;
  line-height: 1.65;
  margin-bottom: .5rem;
}

/* ── Methodik (RQ/RP/VEL) ── */
#methodik { background: var(--bg); }
.methodik-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}
.rqvel-cards { display: flex; flex-direction: column; gap: 1rem; }
.rqvel-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.rqvel-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(26,46,90,.12); }
.rq-abbr {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal);
  background: linear-gradient(135deg,rgba(26,168,168,.12),rgba(26,168,168,.06));
  border-radius: 8px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(26,168,168,.2);
}
.rqvel-card h4 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.rqvel-card p  { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* Benchmark col */
.bench-col { background: white; border-radius: 18px; padding: 1.8rem; border: 1px solid var(--border); box-shadow: var(--shadow); min-width: 0; position: relative; }

/* ── Ergebnisse ── */
#ergebnis { background: white; }
.ergebnis-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.ergebnis-left-col { display: flex; flex-direction: column; gap: 1.2rem; }
.kp-bars { display: flex; flex-direction: column; gap: .7rem; }
.kp-row { display: flex; flex-direction: column; gap: .25rem; }
.kp-row-top { display: flex; justify-content: space-between; align-items: center; }
.kp-label { font-size: .8rem; font-weight: 600; color: var(--navy); }
.kp-badge { font-size: .65rem; font-weight: 700; padding: .15rem .5rem; border-radius: 5px; }
.kp-track { height: 8px; background: var(--bg); border-radius: 4px; overflow: hidden; margin-top: .2rem; }
.kp-fill { height: 100%; border-radius: 4px; background: var(--teal); transition: width 1.2s ease; }
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow);
}

/* Hf cards (Handlungsfelder) */
.hf-cards { display: flex; flex-direction: column; gap: .9rem; }
.hf-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.hf-card:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(26,168,168,.1); }
.hf-icon { font-size: 1.4rem; flex-shrink: 0; }
.hf-badge {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 5px;
  margin-bottom: .3rem;
}
.hf-title { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.hf-desc  { font-size: .78rem; color: var(--muted); line-height: 1.55; }

/* VEL positioning card */
.vel-mini-wrap { margin-top: 1rem; position: relative; }

/* ── Natur / Bildbrücke ── */
#natur-bridge {
  padding: 0;
}
.natur-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.natur-panel {
  position: relative;
  overflow: hidden;
  height: 400px;
  background: var(--bg);
}
.natur-panel img { width: 100%; height: 100%; object-fit: cover; display: block; }
.natur-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,46,90,.85) 0%, rgba(26,46,90,.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2.2rem;
  color: white;
}
.natur-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: .4rem;
}
.natur-caption {
  font-family: var(--fs);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
}
.natur-bridge-msg {
  background: var(--navy);
  padding: 3.5rem 2rem;
  text-align: center;
}
.natur-bridge-msg-inner {
  max-width: 720px;
  margin: 0 auto;
}
.natur-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: 1rem;
}
.natur-headline {
  font-family: var(--fs);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.natur-headline em { color: var(--teal); font-style: italic; }
.natur-sub { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* ── Nachhaltigkeit ── */
#nachhaltigkeit { padding: 0; overflow: hidden; }
.nach-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.nach-left {
  background: var(--navy);
  display: flex;
  align-items: center;
}
.nach-left-inner {
  padding: 3rem 3rem 3rem 2.5rem;
  max-width: 540px;
}
.nach-right {
  background: white;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nach-kpis {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.8rem;
}
.nach-kpi {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.nach-kpi-val {
  font-family: var(--fs);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
  min-width: 76px;
  line-height: 1.1;
}
.nach-kpi-label {
  font-size: .83rem;
  font-weight: 700;
  color: white;
  margin-bottom: .2rem;
}
.nach-kpi p {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}
.nach-insight {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}
.nach-feat {
  font-size: .82rem;
  color: var(--navy);
  line-height: 1.6;
  padding: .5rem 0 .5rem 1.3rem;
  position: relative;
}
.nach-feat::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ── Einwand / Vergleich ── */
#einwand { background: var(--bg); }
.einwand-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
  position: relative;
}
.einw-left-card, .einw-right-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
}
.einw-left-card { border-color: rgba(217,79,61,.35); border-width: 2px; }
.einw-right-card { border-color: var(--teal); border-width: 2px; }
.einwand-2col::after {
  content: '→';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(201,153,42,.4);
  z-index: 2;
}
@media (max-width: 900px) {
  .einwand-2col::after { display: none; }
}
.einw-right-inner { border-left: 3px solid var(--teal); padding-left: 1rem; margin: 1rem 0; }
.einw-right-highlight {
  background: var(--bg);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: .82rem;
  line-height: 1.6;
  margin: .7rem 0;
  border-left: 3px solid var(--teal);
}
.einw-warn-box {
  background: rgba(201,153,42,.08);
  border: 1px solid rgba(201,153,42,.25);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: .8rem;
  line-height: 1.6;
  color: var(--navy);
}

/* Vergleichstabelle */
.vergleich-table { width: 100%; border-collapse: collapse; margin-top: 2rem; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.vt-head { background: var(--navy); color: white; display: grid; grid-template-columns: 1.1fr 1fr 1.3fr; }
.vt-cell { padding: .8rem 1rem; }
.vt-head .vt-cell { font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: white; }
.vt-head th { padding: .9rem 1rem; font-size: .78rem; text-align: left; font-weight: 700; letter-spacing: .04em; }
.vt-row { display: grid; grid-template-columns: 1.1fr 1fr 1.3fr; border-bottom: 1px solid var(--border); transition: background var(--trans); }
.vt-row:last-child { border-bottom: none; }
.vt-row:hover { background: rgba(26,168,168,.04); }
.vt-key { padding: .8rem 1rem; font-size: .82rem; font-weight: 600; color: var(--navy); }
.vt-old { padding: .8rem 1rem; font-size: .8rem; color: var(--muted); background: rgba(217,79,61,.04); }
.vt-new { padding: .8rem 1rem; font-size: .8rem; font-weight: 600; color: var(--teal); background: rgba(26,168,168,.06); }
@media (max-width: 700px) {
  .vt-head, .vt-row { grid-template-columns: 1fr; }
  .vt-key { font-weight: 700; padding-bottom: .2rem; }
  .vt-old::before { content: '✕ Klassisch: '; font-weight: 700; color: #c0392b; }
  .vt-new::before { content: '✓ seniq: '; font-weight: 700; }
  .vt-head .vt-cell:not(:first-child) { display: none; }
}
.ok, .plus, .win, .gap, .minus {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 5px;
  font-size: .68rem;
  font-weight: 700;
}
.ok   { background: var(--grn-l); color: var(--grn); }
.plus { background: rgba(26,168,168,.12); color: var(--teal); }
.win  { background: rgba(26,168,168,.12); color: var(--teal); }
.gap  { background: rgba(201,153,42,.12); color: var(--gold); }
.minus { background: rgba(217,79,61,.12); color: #c0392b; }

/* ── Angebote / Bausteine ── */
#angebote { background: var(--bg); }
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 900px) { .angebote-grid { grid-template-columns: repeat(4, 1fr); } }
.angebot-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  display: flex;
  flex-direction: column;
}
.angebot-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(26,46,90,.13); border-color: var(--teal); }
.angebot-card.feat { border: 2px solid var(--teal); box-shadow: 0 8px 32px rgba(26,168,168,.15); }
.angebot-card h3 { font-size: 1rem; font-weight: 700; margin: .8rem 0 .5rem; color: var(--navy); }
.angebot-card p  { font-size: .8rem; color: var(--muted); line-height: 1.6; flex: 1; }
.angebot-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .25rem .65rem;
  border-radius: 5px;
  margin-bottom: .6rem;
}
.angebot-list {
  list-style: none;
  margin-top: .8rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.angebot-list li { font-size: .76rem; color: var(--muted); padding-left: 1.1rem; position: relative; line-height: 1.5; }
.angebot-list li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-size: .7rem; }

/* ── Zeit-Banner ── */
.zeit-banner {
  background: linear-gradient(135deg, var(--navy), #0d1e3d);
  border-radius: 20px;
  padding: 2.5rem 2.5rem;
  margin-top: 2.5rem;
  color: white;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.zeit-inner { display: flex; align-items: baseline; gap: .3rem; margin-bottom: .2rem; }
.zeit-big   { font-family: var(--mono); font-size: 3rem; font-weight: 800; color: var(--teal); line-height: 1; }
.zeit-num   { display: flex; align-items: baseline; gap: .6rem; }
.zeit-unit  { font-size: 1.1rem; color: rgba(255,255,255,.6); }
.zeit-h     { font-size: 1rem; font-weight: 700; color: white; margin-bottom: .3rem; }
.zeit-sub   { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.55; }
.zeit-trigger { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; }
.zeit-content { flex: 1; }
.zeit-triggers { display: flex; flex-direction: column; gap: .5rem; margin-top: .8rem; }
.zeit-dot  { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.5; }
.zeit-cta  { white-space: nowrap; }

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: .06em;
  margin-bottom: .5rem;
}
.step-card h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.step-card p  { font-size: .78rem; color: var(--muted); line-height: 1.6; }

/* ── Team ── */
#team { background: var(--bg); }
.team-tag {
  display: inline-block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .22rem .7rem;
  font-size: .66rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ESG Bars */
.esg-bars { display: flex; flex-direction: column; gap: .7rem; }
.esg-row-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .25rem; }
.esg-row-name { font-size: .78rem; font-weight: 600; color: var(--navy); }
.esg-row-val  { font-family: var(--mono); font-size: .78rem; font-weight: 700; color: var(--teal); }
.esg-track { height: 10px; background: var(--bg); border-radius: 5px; overflow: hidden; }
.esg-fill  { height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--teal), #158c8c); transition: width 1.2s ease; }

/* ── Kontakt ── */
#kontakt { background: white; }
.kontakt-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}
.kontakt-2col p { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.kontakt-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: .8rem;
  border: 1px solid var(--border);
}
.kontakt-guarantee-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.kontakt-guarantee strong { display: block; font-size: .85rem; color: var(--navy); margin-bottom: .2rem; }
.kontakt-guarantee span  { font-size: .78rem; color: var(--muted); line-height: 1.55; }
.kontakt-form {
  background: var(--bg);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
}
.form-field { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1rem; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--fb);
  font-size: .88rem;
  color: var(--navy);
  background: white;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,168,168,.12);
}
.form-field input.has-error,
.form-field textarea.has-error { border-color: #e05a5a; }
.form-error { font-size: .73rem; color: #e05a5a; min-height: 1em; }
.form-datenschutz { font-size: .72rem; color: var(--muted); line-height: 1.5; margin-bottom: 1rem; }
.form-datenschutz a { color: var(--teal); }
.form-server-error {
  background: rgba(224,90,90,.08);
  border: 1px solid rgba(224,90,90,.25);
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .8rem;
  color: #c0392b;
  margin-bottom: .8rem;
}
.kontakt-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg);
  border-radius: 20px;
  border: 1px solid var(--border);
}
.kontakt-success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.kontakt-success h3 { font-family: var(--fs); color: var(--navy); margin-bottom: .5rem; }
.kontakt-success p  { font-size: .85rem; color: var(--muted); }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  text-align: center;
  padding: 2rem;
  font-size: .8rem;
}
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-top: .5rem; }
.footer-links a { color: rgba(255,255,255,.5); font-size: .78rem; transition: color var(--trans); }
.footer-links a:hover { color: white; }

/* ── Reveal Animations ── */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-l { transform: translateX(-28px); }
.reveal-r { transform: translateX(28px); }
.reveal.visible, .reveal-l.visible, .reveal-r.visible {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ── Responsive ── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; padding-top: 6rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .kpi-strip { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .wiss-grid, .methodik-2col, .ergebnis-2col, .einwand-2col,
  .kontakt-2col, .problem-grid { grid-template-columns: 1fr; }
  .angebote-grid { grid-template-columns: 1fr 1fr; }
  .natur-split { grid-template-columns: 1fr; }
  .zeit-banner { flex-direction: column; gap: 1.5rem; }
  .nav-links { display: none; }
  .cred-cards { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { padding: 0 1.2rem; }
  .section { padding: 3.5rem 1.2rem; }
  .angebote-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .cred-cards { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   PERPLEXITY UPGRADES v4
   ① hero-badge  ② kpi-pill flex  ③ callout-bar
═══════════════════════════════════════ */

/* ① Hero-Badge (animierter Puls-Pill) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(26,168,168,.12);
  border: 1px solid rgba(26,168,168,.32);
  color: var(--teal);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .42rem 1rem .42rem .8rem;
  border-radius: 24px;
  margin-bottom: 1.1rem;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,168,168,.6); }
  50%       { box-shadow: 0 0 0 5px rgba(26,168,168,0); }
}

/* ② KPI-Pill — flex row mit farbiger Border */
.kpi-strip {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.8rem;
}
.kpi-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3.5px solid var(--navy);
  border-radius: 10px;
  padding: .75rem 1.2rem;
  box-shadow: 0 2px 12px rgba(26,46,90,.06);
  transition: transform var(--trans), box-shadow var(--trans);
}
.kpi-pill:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 18px rgba(26,46,90,.1);
}
.kpi-pill.gold-border { border-left-color: var(--gold); }
.kpi-pill.grn-border  { border-left-color: var(--grn); }
.kpi-pill-num {
  font-family: var(--fs);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--navy);
  min-width: 72px;
  line-height: 1;
}
.kpi-pill-label {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ③ Callout-Bar — Gold-Zahl gross, optional CTA */
.callout-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 1.8rem 2.2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.callout-big {
  font-family: var(--fs);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
}
.callout-text {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.callout-text strong {
  color: #fff;
  font-size: .93rem;
  font-weight: 700;
}
.callout-text span {
  color: rgba(255,255,255,.68);
  font-size: .82rem;
  line-height: 1.65;
}
.callout-cta { flex-shrink: 0; }

@media (max-width: 600px) {
  .callout-bar  { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.4rem 1.4rem; }
  .callout-cta  { width: 100%; }
  .callout-cta .btn-p { width: 100%; justify-content: center; }
}
