/* =========================================================================
   Clementine Media — Site Styles
   Layout, sections, components. Tokens come from colors_and_type.css.
   ========================================================================= */

/* ---------- Base resets / utility ---------- */
* { box-sizing: border-box; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--c-orange); outline-offset: 2px; }
input:focus, textarea:focus { outline: none; }
::selection { background: var(--c-orange); color: #fff; }

.container { max-width: 1280px; margin: 0 auto; }
.section { padding: 128px 40px; }
.section-pad { padding: 0 40px; }

/* ---------- Atoms ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-orange);
}
.eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 999px;
  background: currentColor; display: inline-block;
}
.eyebrow.is-red { color: var(--c-red); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  border: none; cursor: pointer;
  border-radius: 999px;
  padding: 14px 24px; font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out), color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 30px; font-size: 16px; }

.btn-primary { background: var(--c-navy); color: #fff; }
.btn-primary:hover { color: #fff; }
.btn-accent { background: var(--c-orange); color: #fff; box-shadow: var(--shadow-glow-orange); }
.btn-accent:hover { background: var(--c-red); color: #fff; }
.btn-ghost { background: transparent; color: var(--c-navy); box-shadow: inset 0 0 0 1.5px var(--c-navy); }
.btn-link { background: transparent; color: var(--c-navy); padding: 6px 0; }
.btn-link:hover { color: var(--c-orange); }
.btn .arrow { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 200ms, border-color 200ms;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--c-line-2);
}
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14.5px; color: var(--c-navy);
  padding: 6px 2px;
  transition: color 120ms;
}
.nav-links a:hover { color: var(--c-orange); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14.5px; color: var(--c-navy); padding: 6px 0;
}
.nav-phone:hover { color: var(--c-orange); }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: #fff;
  padding: 64px 40px 96px; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 2;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.04; letter-spacing: -0.03em;
  color: var(--c-navy); margin: 24px 0 28px; text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  background: var(--c-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; position: relative;
}
.hero h1 em svg {
  position: absolute; left: 0; bottom: -6px; width: 100%; height: 14px;
}

.rotor {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  white-space: nowrap;
  height: 1em;
  transition: width 380ms var(--ease-out);
  color: var(--c-navy);
}
.rotor::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.06em;
  height: 3px;
  border-radius: 999px;
  background: var(--c-orange);
  opacity: 0.45;
  transition: opacity 200ms var(--ease-out);
}
.rotor-word {
  display: inline-block;
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.32em);
  transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out);
  pointer-events: none;
  will-change: opacity, transform;
}
.rotor-word.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.rotor-word.is-leaving {
  opacity: 0;
  transform: translateY(-0.32em);
}
.hero-lead {
  font-family: var(--font-body); font-size: 19px; line-height: 1.55;
  color: var(--c-ink-2); max-width: 560px; margin: 0 0 36px;
}
.hero-lead em { color: var(--c-navy); font-style: italic; }
.hero-lead strong { color: var(--c-navy); font-weight: 800; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 32px; margin-top: 56px;
  padding-top: 28px; border-top: 1px solid var(--c-line-2);
}
.hero-stat-k {
  font-family: var(--font-display); font-weight: 800;
  font-size: 28px; color: var(--c-navy); letter-spacing: -0.02em;
}
.hero-stat-v {
  font-family: var(--font-body); font-size: 12.5px;
  color: var(--c-ink-3); line-height: 1.45;
  margin-top: 4px; white-space: pre-line;
}

.dotfield {
  position: absolute; inset: 0; opacity: 0.55;
  z-index: 1; pointer-events: none;
}

/* search demo */
.demo { position: relative; }
.demo-halo {
  position: absolute; inset: -30px;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(247,149,32,0.18), transparent 65%),
    radial-gradient(ellipse at 30% 80%, rgba(239,65,55,0.10), transparent 60%);
  filter: blur(20px); z-index: 0;
}
.demo-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,42,60,0.14), 0 2px 6px rgba(0,42,60,0.06);
  border: 1px solid var(--c-line-2);
  overflow: hidden;
}
.demo-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid #F1F4F6;
  background: #FAFBFC;
}
.demo-chrome-dots { display: flex; gap: 6px; }
.demo-chrome-dots span {
  width: 10px; height: 10px; border-radius: 999px;
  background: #E1E5E8;
}
.demo-chrome-title {
  flex: 1; display: flex; justify-content: center; align-items: center; gap: 7px;
  font-family: var(--font-body); font-size: 12px;
  color: var(--c-ink-3); letter-spacing: 0.02em;
}
.demo-chrome-spacer { width: 60px; }

.demo-prompt {
  padding: 24px 26px;
  border-bottom: 1px solid #F1F4F6;
}
.demo-label {
  font-family: var(--font-body); font-size: 11.5px; font-weight: 700;
  color: var(--c-gray); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 10px;
}
.demo-prompt-text {
  font-family: var(--font-display); font-weight: 600;
  font-size: 22px; line-height: 1.3;
  color: var(--c-navy); letter-spacing: -0.01em;
  min-height: 64px;
}
.demo-cursor {
  display: inline-block; width: 2px; height: 22px;
  background: var(--c-orange); margin-left: 2px; vertical-align: text-bottom;
  animation: cmblink 0.9s steps(1) infinite;
}
.demo-cursor.is-done { animation: none; opacity: 0; }
@keyframes cmblink { 50% { opacity: 0; } }

.demo-answer {
  padding: 22px 26px 26px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.demo-answer.is-shown { opacity: 1; transform: translateY(0); }
.demo-answer-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.demo-answer-head .demo-label { margin: 0; }
.demo-answer-head .rule { flex: 1; height: 1px; background: #F1F4F6; }
.demo-answer-head .recommended {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  color: var(--c-green); letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 5px;
}
.demo-answer-head .recommended::before {
  content: ''; width: 6px; height: 6px; border-radius: 999px;
  background: var(--c-green);
}
.answer-card {
  border: 1.5px solid var(--c-navy);
  border-radius: 14px; padding: 20px;
  background: linear-gradient(180deg, #fff 0%, #FAFBFC 100%);
  position: relative;
}
.answer-badge {
  position: absolute; top: -10px; left: 18px;
  background: var(--c-orange); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.answer-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.answer-name {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  color: var(--c-navy); letter-spacing: -0.01em;
}
.answer-meta {
  font-family: var(--font-body); font-size: 13px;
  color: var(--c-ink-3); margin-top: 4px;
}
.answer-stars { display: flex; gap: 4px; }
.answer-stars svg { width: 14px; height: 14px; fill: var(--c-orange); }
.answer-body {
  font-family: var(--font-body); font-size: 14px; color: var(--c-ink-2);
  line-height: 1.55; margin: 14px 0 16px;
}
.answer-body strong { color: var(--c-navy); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.chip {
  font-family: var(--font-display); font-weight: 600; font-size: 11.5px;
  padding: 5px 10px; border-radius: 999px;
  background: var(--c-surface-2); color: var(--c-ink-2);
  border: 1px solid var(--c-line-2);
}
.chip.is-primary {
  background: #FFF1DD; color: #B5610A; border-color: #FBD9A4;
}
.answer-trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding-top: 12px; border-top: 1px dashed var(--c-line);
}
.answer-trust-k {
  font-family: var(--font-display); font-weight: 800;
  font-size: 16px; color: var(--c-navy); letter-spacing: -0.01em;
}
.answer-trust-v {
  font-family: var(--font-body); font-size: 11px;
  color: var(--c-gray); margin-top: 1px;
}
.answer-sources {
  margin-top: 14px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 12px; color: var(--c-gray);
}

.demo-pin {
  position: absolute; right: -16px; top: 220px;
  background: var(--c-navy); color: #fff;
  padding: 10px 14px; border-radius: 12px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  box-shadow: 0 12px 30px rgba(0,42,60,0.25);
  opacity: 0; transform: translateX(-8px);
  transition: opacity 600ms 200ms var(--ease-out), transform 600ms 200ms var(--ease-out);
  z-index: 3; max-width: 200px;
}
.demo-pin.is-shown { opacity: 1; transform: translateX(0); }
.demo-pin-eyebrow {
  color: var(--c-orange);
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px;
}
.demo-pin::after {
  content: ''; position: absolute; left: -6px; top: 24px;
  width: 12px; height: 12px; background: var(--c-navy);
  transform: rotate(45deg);
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--c-navy);
  padding: 22px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.trust-row {
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap; justify-content: center;
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item svg { width: 14px; height: 14px; }
.trust-item span {
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  color: rgba(255,255,255,0.92); letter-spacing: -0.005em;
}
.trust-sep {
  width: 4px; height: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.2);
}

/* ---------- Problem ---------- */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 96px; align-items: center;
}
.problem h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; line-height: 1.02; letter-spacing: -0.025em;
  color: var(--c-navy); margin: 24px 0 24px; text-wrap: balance;
}
.problem h2 em { font-style: normal; color: var(--c-orange); }
.problem-lead, .problem-sub {
  font-family: var(--font-body); line-height: 1.6; max-width: 540px;
}
.problem-lead { font-size: 18px; color: var(--c-ink-2); margin-bottom: 28px; }
.problem-lead strong { color: var(--c-navy); font-weight: 800; }
.problem-sub { font-size: 16px; color: var(--c-ink-3); margin-bottom: 32px; }
.problem-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--c-line-2);
}
.stat-k {
  font-family: var(--font-display); font-weight: 800;
  font-size: 36px; letter-spacing: -0.02em; line-height: 1;
}
.stat-k.is-red { color: var(--c-red); }
.stat-k.is-green { color: var(--c-green); }
.stat-v {
  font-family: var(--font-body); font-size: 13px; color: var(--c-ink-3);
  line-height: 1.45; margin-top: 8px; max-width: 220px;
}

.oldnew { display: flex; flex-direction: column; gap: 18px; }
.oldnew-card {
  border-radius: 18px; padding: 24px; position: relative;
}
.oldnew-old {
  background: var(--c-surface-2);
  border: 1px solid var(--c-line-2);
  opacity: 0.65;
}
.oldnew-new {
  background: #fff;
  border: 1.5px solid var(--c-navy);
  box-shadow: 0 16px 48px rgba(0,42,60,0.08);
}
.oldnew-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.oldnew-tag {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.oldnew-old .oldnew-tag { color: var(--c-gray); }
.oldnew-new .oldnew-tag { color: var(--c-orange); }
.oldnew-rule { flex: 1; height: 1px; }
.oldnew-old .oldnew-rule { background: var(--c-line); }
.oldnew-new .oldnew-rule { background: var(--c-line-2); }
.oldnew-query {
  font-family: var(--font-body); font-size: 14px; font-style: italic;
  margin-bottom: 12px;
}
.oldnew-old .oldnew-query { color: var(--c-ink-3); }
.oldnew-new .oldnew-query { color: var(--c-navy); margin-bottom: 14px; }
.oldnew-result-line {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0;
}
.oldnew-result-line + .oldnew-result-line { border-top: 1px dashed var(--c-line); }
.oldnew-result-line .a { width: 16px; height: 4px; background: var(--c-gray); border-radius: 2px; }
.oldnew-result-line .b { flex: 1; height: 4px; background: var(--c-line); border-radius: 2px; }
.oldnew-result-line .c { width: 32px; height: 4px; background: var(--c-line); border-radius: 2px; }
.oldnew-pill {
  position: absolute; top: -8px; right: 24px;
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  color: #fff;
}
.oldnew-old .oldnew-pill { background: var(--c-gray); }
.oldnew-new .oldnew-pill { background: var(--c-green); }
.oldnew-arrow {
  display: flex; justify-content: center; margin: -4px 0;
}
.oldnew-arrow div {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--c-gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(247,149,32,0.35);
}
.oldnew-recommend {
  background: var(--c-surface-2); border-radius: 12px; padding: 14px;
  border-left: 3px solid var(--c-orange);
}
.oldnew-recommend-name {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--c-navy); margin-bottom: 6px;
}
.oldnew-recommend-body {
  font-family: var(--font-body); font-size: 12.5px;
  color: var(--c-ink-3); line-height: 1.5;
}

/* ---------- System (Antwort-Architektur) ---------- */
.system {
  background: var(--c-navy);
  position: relative; overflow: clip;
}
.system .dotfield-dark {
  position: absolute; inset: 0; opacity: 0.4; pointer-events: none;
}
.system-inner { position: relative; z-index: 2; }
.system-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 88px;
}
.system-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 64px; line-height: 1; letter-spacing: -0.025em;
  color: #fff; margin: 24px 0 0; text-wrap: balance;
}
.system-head p {
  font-family: var(--font-body); font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.78); max-width: 520px;
}
.system-grid {
  display: grid; grid-template-columns: 1.1fr 1.4fr;
  gap: 80px; align-items: start;
}
.system-list { position: relative; }
.system-line {
  position: absolute; left: 28px; top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, rgba(247,149,32,0.6) 0%, rgba(239,65,55,0.6) 100%);
}
.system-dot {
  position: absolute; left: 22px;
  width: 14px; height: 14px; border-radius: 999px;
  background: var(--c-gradient);
  box-shadow: 0 0 0 4px rgba(247,149,32,0.25), 0 0 20px rgba(247,149,32,0.6);
  z-index: 2;
  will-change: top;
}
.system-step {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 0;
  background: transparent; border: none; cursor: pointer;
  width: 100%; text-align: left; color: inherit;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.system-step:first-of-type { border-top: 1px solid rgba(255,255,255,0.1); }
.system-step-num {
  position: relative;
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(rgba(255,255,255,0.04), rgba(255,255,255,0.04)), var(--c-navy);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  color: rgba(255,255,255,0.5);
  transition: all 200ms;
  z-index: 1;
  letter-spacing: 0.02em;
}
.system-step-title {
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.015em; transition: color 200ms;
}
.system-step-sub {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.55); margin-top: 2px;
}
.system-step .arrow path { stroke: rgba(255,255,255,0.3); transition: stroke 200ms; }
.system-step.is-active .system-step-num {
  background: var(--c-gradient);
  border-color: transparent;
  color: #fff;
}
.system-step.is-active .system-step-title { color: #fff; }
.system-step.is-active .arrow path { stroke: var(--c-orange); }

.system-scroller { position: relative; }
.system-stage { display: block; }

@media (min-width: 1101px) {
  .system-scroller { height: 460vh; }
  .system-stage {
    position: sticky; top: 0;
    height: 100vh;
    display: flex; align-items: center;
  }
  .system-stage .system-grid { width: 100%; }
}

.system-detail {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 40px;
  backdrop-filter: blur(8px);
}
.system-detail-stack {
  position: relative;
  display: grid;
}
.system-detail-stack [data-system-detail] {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 360ms var(--ease-out), transform 420ms var(--ease-out);
  pointer-events: none;
}
.system-detail-stack [data-system-detail].is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .system-detail { position: sticky; top: 100px; }
}
.system-detail-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.system-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(247,149,32,0.15);
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  color: var(--c-orange); letter-spacing: 0.12em; text-transform: uppercase;
}
.system-bars { display: flex; gap: 4px; }
.system-bars span {
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(255,255,255,0.2);
  transition: width 360ms var(--ease-out), background 360ms var(--ease-out);
}
.system-bars span.is-active { width: 28px; background: var(--c-orange); }

.system-detail h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 48px;
  color: #fff; letter-spacing: -0.025em; line-height: 1.02;
  margin: 0 0 16px;
}
.system-detail-sub {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--c-orange); letter-spacing: -0.01em;
  line-height: 1.2; margin-bottom: 24px;
}
.system-detail-body {
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: rgba(255,255,255,0.85); margin: 0 0 32px;
}
.system-detail-out-label {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  color: rgba(255,255,255,0.5); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 14px;
}
.system-out-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.system-out-tag {
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: #fff;
}
.system-detail-out {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
}

/* ---------- Differentiators ---------- */
.diff { background: var(--c-surface-2); position: relative; }
.diff-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 72px;
}
.diff-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; line-height: 1.02; letter-spacing: -0.025em;
  color: var(--c-navy); margin: 24px 0 0; text-wrap: balance;
}
.diff-head p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: var(--c-ink-2); max-width: 480px;
}
.diff-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.diff-card {
  background: #fff; border-radius: 16px; padding: 28px;
  border: 1px solid var(--c-line-2);
  box-shadow: 0 2px 6px rgba(0,42,60,0.05);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.diff-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,42,60,0.10);
}
.diff-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.diff-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,42,60,0.04);
  display: flex; align-items: center; justify-content: center;
}
.diff-icon svg { width: 22px; height: 22px; }
.diff-num {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: var(--c-orange); letter-spacing: 0.1em;
}
.diff-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 21px;
  color: var(--c-navy); letter-spacing: -0.01em; line-height: 1.2;
  margin: 0 0 12px;
}
.diff-card p {
  font-family: var(--font-body); font-size: 15px;
  color: var(--c-ink-3); line-height: 1.55; margin: 0;
}

/* ---------- Branchen ---------- */
.branchen { background: #fff; }
.branchen-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 56px;
}
.branchen-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; line-height: 1.02; letter-spacing: -0.025em;
  color: var(--c-navy); margin: 24px 0 0; text-wrap: balance;
}
.branchen-head p {
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: var(--c-ink-2); max-width: 520px;
}
.branchen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.branche-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-line-2);
  border-radius: 20px;
  padding: 32px 30px 28px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.branche-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(247,149,32,0.10), transparent 55%);
  opacity: 0; transition: opacity 280ms var(--ease-out);
  z-index: -1; pointer-events: none;
}
.branche-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247,149,32,0.45);
  box-shadow: 0 24px 56px rgba(0,42,60,0.10);
  color: inherit;
}
.branche-card:hover::before { opacity: 1; }

.branche-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(247,149,32,0.12), rgba(239,65,55,0.08));
  display: flex; align-items: center; justify-content: center;
  color: var(--c-navy);
  margin-bottom: 24px;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.branche-card-icon svg { width: 28px; height: 28px; }
.branche-card:hover .branche-card-icon {
  background: linear-gradient(135deg, var(--c-orange), var(--c-red));
  color: #fff;
  transform: scale(1.04) rotate(-2deg);
}

.branche-card-name {
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  color: var(--c-navy); letter-spacing: -0.022em; line-height: 1.08;
  margin: 0 0 8px;
  text-wrap: balance;
}
.branche-card-tagline {
  font-family: var(--font-body); font-weight: 600; font-size: 13.5px;
  color: var(--c-orange); letter-spacing: -0.005em; line-height: 1.4;
  margin-bottom: 16px;
}
.branche-card p {
  font-family: var(--font-body); font-size: 14.5px;
  color: var(--c-ink-3); line-height: 1.55; margin: 0 0 24px;
  flex: 1;
}
.branche-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--c-navy); letter-spacing: -0.005em;
  transition: color 200ms var(--ease-out), gap 200ms var(--ease-out);
}
.branche-card:hover .branche-card-cta { color: var(--c-orange); gap: 12px; }
.branche-card-cta svg { width: 14px; height: 14px; }

/* ---------- Process ---------- */
.process { background: #fff; }
.process-head { margin-bottom: 72px; max-width: 720px; }
.process-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; line-height: 1.02; letter-spacing: -0.025em;
  color: var(--c-navy); margin: 24px 0 0; text-wrap: balance;
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-line {
  position: absolute; top: 30px; left: 60px; right: 60px;
  height: 0; border-top: 2px dashed var(--c-orange);
  opacity: 0.5; z-index: 0;
}
.process-step { position: relative; padding: 0 16px; z-index: 1; }
.process-num {
  width: 60px; height: 60px; border-radius: 999px;
  background: #fff; border: 2px solid var(--c-navy);
  color: var(--c-navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.process-step:first-child .process-num {
  background: var(--c-gradient);
  border: none; color: #fff;
  box-shadow: 0 8px 28px rgba(247,149,32,0.35);
}
.process-step h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--c-navy); letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.process-step p {
  font-family: var(--font-body); font-size: 14.5px;
  color: var(--c-ink-3); line-height: 1.55; margin: 0 0 16px;
}
.process-dur {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-orange);
}

/* ---------- Proof ---------- */
.proof { background: #fff; }
.proof-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 56px;
}
.proof-head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 56px; line-height: 1.02; letter-spacing: -0.025em;
  color: var(--c-navy); margin: 24px 0 0; max-width: 720px; text-wrap: balance;
}
.proof-tabs { display: flex; gap: 8px; }
.proof-tab {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--c-surface-2); color: var(--c-gray);
  border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  transition: all 200ms;
}
.proof-tab.is-active { background: var(--c-navy); color: #fff; }
.proof-card {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px;
  background: var(--c-surface-2); border-radius: 24px; overflow: hidden;
  border: 1px solid var(--c-line-2);
}
.proof-image {
  position: relative; min-height: 480px;
  background-size: cover; background-position: center;
  transition: background-image 400ms;
}
.proof-tag {
  position: absolute; top: 24px; left: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.08); color: #fff;
  letter-spacing: 0.08em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.proof-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 999px;
  background: var(--c-orange);
}
.proof-meta {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 14px; padding: 16px;
  display: flex; align-items: center; gap: 12px;
}
.proof-meta-avatar {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--c-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 18px;
}
.proof-meta-name {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--c-navy);
}
.proof-meta-sub {
  font-family: var(--font-body); font-size: 12px; color: var(--c-ink-3);
}
.proof-content { padding: 48px 48px 48px 8px; }
.proof-content h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 32px;
  color: var(--c-navy); letter-spacing: -0.02em; line-height: 1.1;
  margin: 0 0 20px;
}
.proof-content p {
  font-family: var(--font-body); font-size: 16px; color: var(--c-ink-2);
  line-height: 1.6; margin: 0 0 36px;
}
.proof-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding-top: 28px; border-top: 1px solid var(--c-line);
}
.proof-stat-k {
  font-family: var(--font-display); font-weight: 800; font-size: 30px;
  color: var(--c-navy); letter-spacing: -0.02em; line-height: 1;
}
.proof-stat-v {
  font-family: var(--font-body); font-size: 12.5px;
  color: var(--c-ink-3); margin-top: 6px;
}
.proof-actions {
  margin-top: 36px; display: flex; align-items: center; gap: 12px;
}
.proof-actions span {
  font-family: var(--font-body); font-size: 13px; color: var(--c-gray);
}

/* ---------- Voices ---------- */
.voices { background: var(--c-surface-2); }
.voices-head { margin-bottom: 56px; }
.voices-head h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 56px;
  line-height: 1.02; letter-spacing: -0.025em;
  color: var(--c-navy); margin: 24px 0 0; max-width: 820px; text-wrap: balance;
}
.voices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.voice {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid var(--c-line-2);
  box-shadow: 0 2px 6px rgba(0,42,60,0.05);
  display: flex; flex-direction: column;
}
.voice svg.quote { width: 32px; height: 24px; fill: var(--c-orange); margin-bottom: 20px; }
.voice p {
  font-family: var(--font-display); font-weight: 500; font-size: 19px;
  color: var(--c-navy); line-height: 1.4; letter-spacing: -0.01em;
  margin: 0 0 28px; flex: 1;
}
.voice-meta { padding-top: 20px; border-top: 1px solid var(--c-line-2); }
.voice-name {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--c-navy);
}
.voice-role {
  font-family: var(--font-body); font-size: 13px; color: var(--c-ink-3);
  margin-top: 2px;
}

/* ---------- About ---------- */
.about { background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image {
  aspect-ratio: 4 / 5; border-radius: 20px; overflow: hidden;
  background-image: linear-gradient(180deg, rgba(0,42,60,0.05), rgba(0,42,60,0.25)), url('photo-workspace.png');
  background-size: cover; background-position: center;
}
.about-badge {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--c-navy); color: #fff;
  padding: 24px; border-radius: 16px;
  max-width: 280px;
  box-shadow: 0 16px 40px rgba(0,42,60,0.2);
}
.about-badge-k {
  font-family: var(--font-display); font-weight: 800; font-size: 36px;
  color: var(--c-orange); letter-spacing: -0.02em; line-height: 1;
}
.about-badge-v {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.85); margin-top: 8px; line-height: 1.5;
}
.about h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 52px;
  line-height: 1.02; letter-spacing: -0.025em;
  color: var(--c-navy); margin: 24px 0 24px; text-wrap: balance;
}
.about p {
  font-family: var(--font-body); line-height: 1.6;
}
.about-lead { font-size: 18px; color: var(--c-ink-2); margin-bottom: 20px; }
.about-sub { font-size: 16px; color: var(--c-ink-3); margin-bottom: 32px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 24px; border-top: 1px solid var(--c-line-2);
}
.about-stat-k {
  font-family: var(--font-display); font-weight: 800; font-size: 32px;
  color: var(--c-navy); letter-spacing: -0.02em;
}
.about-stat-v {
  font-family: var(--font-body); font-size: 13px;
  color: var(--c-ink-3); margin-top: 4px;
}

/* ---------- FAQ ---------- */
.faq { background: var(--c-surface-2); }
.faq-inner { max-width: 920px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-head .eyebrow { justify-content: center; }
.faq-head h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 48px;
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--c-navy); margin: 24px 0 0; text-wrap: balance;
}
.faq-list {
  background: #fff; border-radius: 20px;
  border: 1px solid var(--c-line-2); overflow: hidden;
}
.faq-item + .faq-item { border-top: 1px solid var(--c-line-2); }
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  background: transparent; border: none;
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  color: var(--c-navy);
}
.faq-q span:first-child {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.005em;
}
.faq-toggle {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--c-surface-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 200ms;
}
.faq-toggle svg { width: 14px; height: 14px; }
.faq-toggle svg path { stroke: var(--c-navy); transition: transform 200ms, stroke 200ms; transform-origin: center; }
.faq-item.is-open .faq-toggle { background: var(--c-orange); }
.faq-item.is-open .faq-toggle svg path { stroke: #fff; transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 28px 28px 28px; max-width: 720px;
}
.faq-a p {
  font-family: var(--font-body); font-size: 16px;
  color: var(--c-ink-2); line-height: 1.6; margin: 0;
}
.faq-item.is-open .faq-a { display: block; }

/* ---------- CTA ---------- */
.cta {
  background: var(--c-navy);
  position: relative; overflow: hidden;
  padding: 120px 40px;
}
.cta-orb-1 {
  position: absolute; right: -200px; top: -200px;
  width: 600px; height: 600px; border-radius: 999px;
  background: radial-gradient(circle, rgba(247,149,32,0.4) 0%, transparent 60%);
  filter: blur(40px);
}
.cta-orb-2 {
  position: absolute; left: -200px; bottom: -200px;
  width: 500px; height: 500px; border-radius: 999px;
  background: radial-gradient(circle, rgba(239,65,55,0.3) 0%, transparent 60%);
  filter: blur(40px);
}
.cta-inner { position: relative; z-index: 2; }
.cta-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.cta h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 64px;
  line-height: 1; letter-spacing: -0.03em;
  color: #fff; margin: 24px 0 24px; text-wrap: balance;
}
.cta-lead {
  font-family: var(--font-body); font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.78); max-width: 480px; margin-bottom: 32px;
}
.cta-bullets { display: flex; flex-direction: column; gap: 18px; }
.cta-bullet { display: flex; align-items: center; gap: 12px; }
.cta-bullet-check {
  width: 22px; height: 22px; border-radius: 999px;
  background: rgba(247,149,32,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-bullet-check svg { width: 12px; height: 12px; }
.cta-bullet-text {
  font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,0.92);
}

.cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px; padding: 40px;
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column; gap: 16px;
}
.cta-form .field-label {
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  color: rgba(255,255,255,0.7); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 8px; display: block;
}
.cta-form .field-required { color: var(--c-orange); }
.cta-form input, .cta-form textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 15px; color: #fff;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  transition: border-color 200ms;
  box-sizing: border-box;
}
.cta-form input::placeholder, .cta-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
.cta-form input:focus, .cta-form textarea:focus {
  border-color: var(--c-orange);
}
.cta-form textarea { resize: vertical; min-height: 96px; }
.cta-form-fineprint {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(255,255,255,0.5); text-align: center;
}
.cta-form-success {
  text-align: center; padding: 40px 0;
}
.cta-form-success-icon {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--c-gradient);
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
}
.cta-form-success h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  color: #fff; margin: 0 0 12px; letter-spacing: -0.02em;
}
.cta-form-success p {
  font-family: var(--font-body); font-size: 15px;
  color: rgba(255,255,255,0.7); margin: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: #001A26; color: #fff;
  padding: 64px 40px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 32px; width: auto; }
.footer-brand p {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.6); margin-top: 20px;
  max-width: 360px; line-height: 1.55;
}
.footer-col-h {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-orange); margin-bottom: 16px;
}
.footer-col div, .footer-col a {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.78); margin-bottom: 8px; display: block;
}
.footer-col a:hover { color: var(--c-orange); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  font-family: var(--font-body); font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom .links { display: flex; gap: 24px; }

/* ---------- Legal pages (Impressum, Datenschutz, Cookie-Richtlinie) ---------- */
.legal-hero {
  background: #fff;
  padding: 64px 40px 32px;
  border-bottom: 1px solid var(--c-line-2);
}
.legal-hero .container { max-width: 880px; }
.legal-hero .eyebrow { margin-bottom: 16px; }
.legal-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4.4vw, 48px);
  letter-spacing: -0.025em; line-height: 1.08;
  color: var(--c-navy); margin: 0 0 12px;
}
.legal-hero .lede {
  font-family: var(--font-body); font-size: 16px;
  color: rgba(0, 42, 60, 0.72); max-width: 640px; margin: 0;
  line-height: 1.55;
}

.legal {
  background: #fff;
  padding: 48px 40px 96px;
}
.legal .container { max-width: 760px; }
.legal h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; letter-spacing: -0.015em;
  color: var(--c-navy); margin: 48px 0 16px;
  scroll-margin-top: 96px;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; letter-spacing: -0.005em;
  color: var(--c-navy); margin: 28px 0 10px;
}
.legal p,
.legal li {
  font-family: var(--font-body); font-size: 15.5px;
  color: rgba(0, 42, 60, 0.84);
  line-height: 1.7; margin: 0 0 14px;
}
.legal ul, .legal ol {
  padding-left: 22px; margin: 0 0 14px;
}
.legal li { margin-bottom: 6px; }
.legal a {
  color: var(--c-orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--c-red); }
.legal strong { color: var(--c-navy); font-weight: 700; }

.legal-toc {
  background: #F6F8FA;
  border: 1px solid var(--c-line-2);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 0 0 40px;
}
.legal-toc-h {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-orange); margin: 0 0 12px;
}
.legal-toc ol {
  list-style: decimal; margin: 0; padding-left: 22px;
  columns: 2; column-gap: 32px;
}
.legal-toc li {
  font-size: 14px; margin-bottom: 6px;
  break-inside: avoid;
}
.legal-toc a {
  color: var(--c-navy); text-decoration: none;
}
.legal-toc a:hover { color: var(--c-orange); }

.legal-meta {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line-2);
  font-family: var(--font-body); font-size: 13px;
  color: rgba(0, 42, 60, 0.55);
}

@media (max-width: 720px) {
  .legal-hero { padding: 40px 20px 24px; }
  .legal { padding: 32px 20px 64px; }
  .legal-toc ol { columns: 1; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero h1 { font-size: clamp(36px, 5.4vw, 56px); }
  .demo-pin { right: 8px; top: 200px; }
  .problem-grid, .system-grid, .system-head, .diff-head, .about-grid, .cta-grid {
    grid-template-columns: 1fr; gap: 56px;
  }
  .system-detail { position: static; }
  .proof-card { grid-template-columns: 1fr; gap: 0; }
  .proof-content { padding: 32px; }
  .proof-image { min-height: 320px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .branchen-grid { grid-template-columns: repeat(2, 1fr); }
  .branchen-head { grid-template-columns: 1fr; gap: 32px; }
  .voices-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .process-line { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 80px 20px; }
  .nav { padding: 12px 20px; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; padding: 8px 10px; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--c-line-2);
    padding: 8px 20px 16px;
    z-index: 99;
    box-shadow: 0 16px 32px rgba(0, 42, 60, 0.08);
  }
  .nav-links.is-open a {
    padding: 16px 4px;
    font-size: 18px;
    border-bottom: 1px solid var(--c-line-2);
  }
  .nav-links.is-open a:last-child { border-bottom: none; }
  .nav-toggle[aria-expanded="true"] { background: var(--c-surface-2); }
  .hero { padding: 40px 20px 64px; }
  .hero h1 { font-size: 38px; line-height: 1.08; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .problem h2, .diff-head h2, .voices-head h2, .proof-head h2,
  .process-head h2, .about h2, .system-head h2, .cta h2, .faq-head h2 {
    font-size: 36px;
  }
  .system-step-title { font-size: 20px; }
  .system-detail { padding: 24px; }
  .system-detail h3 { font-size: 32px; }
  .system-detail-sub { font-size: 18px; }
  .diff-grid { grid-template-columns: 1fr; }
  .branchen-grid { grid-template-columns: 1fr; }
  .branchen-head h2 { font-size: 36px; }
  .proof-head { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 360px; }
  .about-badge { left: 0; bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .demo-pin { display: none; }
  .trust-row { gap: 16px; }
  .trust-sep { display: none; }
  .cta { padding: 80px 20px; }
  .cta-form { padding: 24px; }
}

/* ============================================================
   REFERENCES — "Ausgewählte Arbeiten" (Editorial Gallery)
   ============================================================ */
.references {
  position: relative;
  padding: 128px 0;
  background: #0B1C26;
  color: #fff;
  overflow: hidden;
}
.ref-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.ref-glow-1 {
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(247,149,32,0.18) 0%, transparent 60%);
}
.ref-glow-2 {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(239,65,55,0.12) 0%, transparent 60%);
}

.ref-header {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto 72px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.ref-header-intro .eyebrow.ref-eyebrow {
  color: var(--c-orange);
}
.ref-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 24px 0 0;
  max-width: 760px;
  text-wrap: balance;
}
.ref-title-muted {
  color: rgba(255,255,255,0.5);
}
.ref-lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0;
  max-width: 460px;
}
.ref-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.ref-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  color: var(--c-navy);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms var(--ease-out);
}
.ref-arrow:hover { transform: translateY(-1px); }
.ref-arrow:disabled,
.ref-arrow[aria-disabled="true"] {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.25);
  cursor: not-allowed;
  transform: none;
}
.ref-counter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-left: 6px;
  letter-spacing: 0.04em;
}
.ref-counter-sep { opacity: 0.5; margin: 0 4px; }

.ref-gallery-wrap {
  position: relative;
  z-index: 2;
}
.ref-gallery {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 8px max(40px, calc((100vw - 1280px) / 2)) 40px;
}
.ref-gallery::-webkit-scrollbar { display: none; }

.ref-tile {
  flex: 0 0 auto;
  width: 480px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.ref-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #002A3C;
  box-shadow: 0 16px 40px rgba(0,0,0,0.30), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 350ms cubic-bezier(0.22,1,0.36,1),
              box-shadow 350ms cubic-bezier(0.22,1,0.36,1);
}
.ref-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(247,149,32,0.3);
  color: inherit;
}

.ref-browser-bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ref-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}
.ref-url {
  margin-left: 10px;
  padding: 3px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.ref-url svg { flex-shrink: 0; }

.ref-hero {
  position: absolute;
  inset: 34px 0 0 0;
  background-size: cover;
  background-position: top center;
  transition: transform 600ms cubic-bezier(0.22,1,0.36,1);
}
.ref-card:hover .ref-hero {
  transform: scale(1.03);
}

.ref-number {
  position: absolute;
  top: 56px;
  right: 18px;
  z-index: 4;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.1em;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 999px;
}

.ref-hover {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity 250ms;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 28px;
  pointer-events: none;
}
.ref-card:hover .ref-hover { opacity: 1; }
.ref-visit {
  background: #fff;
  color: var(--c-navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(12px);
  transition: transform 250ms cubic-bezier(0.22,1,0.36,1);
}
.ref-card:hover .ref-visit { transform: translateY(0); }

.ref-meta {
  padding: 22px 6px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.ref-meta-info {
  flex: 1;
  min-width: 0;
}
.ref-meta-tags {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ref-meta-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.ref-meta-result {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.ref-meta-result-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-block;
  background-image: linear-gradient(135deg, #F79520 0%, #EF4137 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ref-meta-result-lbl {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11.5px;
  color: rgba(255,255,255,0.60);
  max-width: 140px;
  text-align: right;
  line-height: 1.4;
}

/* ----- Contact-Card am Ende der Galerie ----- */
.ref-card--contact {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #F79520 0%, #EF4137 100%);
  box-shadow: 0 16px 40px rgba(239,65,55,0.30), 0 0 0 1px rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: #fff;
}
.ref-card--contact:hover {
  box-shadow: 0 32px 80px rgba(239,65,55,0.45), 0 0 0 1px rgba(255,255,255,0.15);
}
.ref-card-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.ref-card-shape--lg {
  top: -50px;
  right: -50px;
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.15);
}
.ref-card-shape--sm {
  top: 40px;
  right: 60px;
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.18);
}
.ref-contact-eyebrow {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 14px;
}
.ref-contact-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.025em;
  line-height: 0.98;
  margin: 0 0 22px;
  text-wrap: balance;
  color: #fff;
}
.ref-contact-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--c-navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 250ms;
}
.ref-card--contact:hover .ref-contact-cta { transform: translateX(4px); }

@media (max-width: 900px) {
  .ref-header {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .ref-controls { margin-top: 8px; }
}
@media (max-width: 640px) {
  .references { padding: 88px 0; }
  .ref-header { padding: 0 20px; margin-bottom: 48px; }
  .ref-tile { width: 320px; }
  .ref-contact-title { font-size: 30px; }
  .ref-card--contact { padding: 26px; }
}
