@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-600-italic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-700-italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #0a0e0c;
  --ink-2: #0d1311;
  --panel: #121a16;
  --panel-2: #16201b;
  --sage: #7fa494;
  --sage-light: #a8c4b8;
  --sage-bright: #c9e0d6;
  --sage-deep: #587b70;
  --neg: #d49a8d;

  --light-bg: #f4f7f5;
  --light-bg-2: #ffffff;
  --light-text: #46514c;
  --light-head: #0f1613;
  --light-eyebrow: #587b70;

  --txt-dark: rgba(233, 242, 238, 0.92);
  --txt-dark-soft: rgba(200, 216, 209, 0.62);
  --line-dark: rgba(168, 196, 184, 0.14);
  --glass-dark: rgba(18, 26, 22, 0.55);

  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --shadow-img: 0 40px 80px -30px rgba(0, 0, 0, 0.55), 0 12px 24px -12px rgba(0, 0, 0, 0.4);

  --ff: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-serif: "Cormorant Garamond", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff);
  background: var(--ink);
  color: var(--txt-dark);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

h1, h2, h3 { text-wrap: balance; }

section { position: relative; }

.serif {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 700;
  -webkit-text-stroke: 0.4px currentColor;
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(127, 164, 148, 0.08);
  border: 1px solid rgba(127, 164, 148, 0.22);
  color: var(--sage-light);
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(127, 164, 148, 0.18);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(127, 164, 148, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(127, 164, 148, 0.05); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, background 0.3s ease, color 0.3s ease;
  will-change: transform;
}
.btn .arr { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(180deg, var(--sage-light), var(--sage));
  color: #06120d;
  box-shadow: 0 10px 30px -10px rgba(127, 164, 148, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(127, 164, 148, 0.32), 0 14px 36px -10px rgba(127, 164, 148, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  color: var(--txt-dark);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(127, 164, 148, 0.5);
  background: rgba(127, 164, 148, 0.08);
}

.sec {
  padding: clamp(80px, 12vh, 150px) 0;
}
.sec-head { max-width: 760px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 22px; }
.sec-head h2 {
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  margin-bottom: 20px;
  text-wrap: balance;
}
.sec-head p {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--txt-dark-soft);
  max-width: 620px;
}
.sec-head.center p { margin-inline: auto; }

.grad {
  background: linear-gradient(120deg, var(--sage-bright), var(--sage));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.4s; }

.glass {
  background: var(--glass-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px var(--gutter);
  transition: padding 0.4s ease;
}
.nav-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.scrolled { padding-top: 12px; }
.nav.scrolled .nav-inner {
  background: rgba(10, 14, 12, 0.6);
  border-color: var(--line-dark);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 18px 50px -25px rgba(0, 0, 0, 0.7);
}
.nav-logo img {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--txt-dark-soft);
  padding: 9px 16px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-links a:hover { color: var(--txt-dark); background: rgba(255, 255, 255, 0.05); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.9rem; }
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 12px; right: 12px;
  height: 1.6px;
  background: var(--txt-dark);
  transition: transform 0.35s ease, opacity 0.2s ease;
}
.nav-burger span:nth-child(1) { top: 15px; }
.nav-burger span:nth-child(2) { top: 21.2px; }
.nav-burger span:nth-child(3) { top: 27.4px; }
.nav.open .nav-burger span:nth-child(1) { transform: translateY(6.2px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-6.2px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8, 12, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: var(--gutter);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.show { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--txt-dark);
}
.mobile-menu .btn { margin-top: 28px; justify-content: center; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: clamp(72px, 12vh, 130px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -12% 0 -12% 0;
  z-index: -2;
  will-change: transform;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 11, 9, 0.86) 0%, rgba(7, 11, 9, 0.62) 32%, rgba(7, 11, 9, 0.72) 62%, rgba(7, 11, 9, 0.98) 100%),
    radial-gradient(110% 90% at 50% 50%, rgba(7, 11, 9, 0.45), rgba(7, 11, 9, 0.78) 100%);
}
.hero-content { width: 100%; display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow { font-size: 0.74rem; padding: 7px 15px; letter-spacing: 0.01em; margin-bottom: 34px; }
.hero h1 {
  font-size: clamp(2.05rem, 4.9vw, 3.95rem);
  letter-spacing: -0.035em;
  max-width: none;
  margin: 0 auto 30px;
  text-wrap: balance;
}
@media (min-width: 1000px) { .hero h1 { white-space: nowrap; } }
.hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: rgba(233, 242, 238, 0.84);
  max-width: 54ch;
  margin: 0 auto 44px;
}
.hero-sub--mobile { display: none; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.hero-actions .hint {
  font-size: 0.86rem;
  color: var(--txt-dark-soft);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  align-self: stretch;
  width: 100%;
  margin-top: clamp(58px, 8vh, 96px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}
.hero-stat {
  background: rgba(10, 14, 12, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 28px 24px;
}
.hero-stat .num {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.hero-stat .lbl {
  font-size: 0.84rem;
  color: var(--txt-dark-soft);
  line-height: 1.45;
  min-height: 2.45em;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--txt-dark-soft);
}
.scroll-cue i {
  width: 1px; height: 38px;
  background: linear-gradient(var(--sage), transparent);
  animation: cue 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue {
  0% { transform: scaleY(0); opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(38px); opacity: 0; }
}

/* ============ STATEMENT / POSITIONIERUNG ============ */
.statement { text-align: center; }
.statement .big {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  max-width: 30ch;
  margin: 0 auto;
  font-weight: 500;
}
.statement .big .word {
  display: inline-block;
  opacity: 0.16;
  transition: opacity 0.5s ease;
}
.statement .big .word.lit { opacity: 1; }

/* ============ macOS WINDOW / RECHNUNG ============ */
.macwin {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--panel);
  box-shadow: var(--shadow-img);
}
.macwin-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line-dark);
}
.macwin-bar .dots { display: flex; gap: 7px; }
.macwin-bar .dots i {
  width: 11px; height: 11px; border-radius: 50%;
  display: block;
}
.macwin-bar .dots i:nth-child(1) { background: #ff5f57; }
.macwin-bar .dots i:nth-child(2) { background: #febc2e; }
.macwin-bar .dots i:nth-child(3) { background: #28c840; }
.macwin-bar .addr {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  color: var(--txt-dark-soft);
  letter-spacing: 0.02em;
}
.macwin-body { padding: clamp(22px, 3vw, 36px); }

.ledger { display: flex; flex-direction: column; }
.ledger-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
}
.ledger-row:last-child { border-bottom: none; }
.ledger-row .k { color: var(--txt-dark-soft); font-size: 0.96rem; }
.ledger-row .v {
  font-family: "Inter Tight", monospace;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}
.ledger-row .v.pos { color: var(--sage-bright); }
.ledger-row .v.neg { color: var(--neg); }
.ledger-row.total {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(127, 164, 148, 0.3);
}
.ledger-row.total .k { color: var(--txt-dark); font-weight: 500; font-size: 1.05rem; }
.ledger-row.total .v { font-size: 1.5rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

/* ============ HEBEL / FEATURE GRID ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.card {
  padding: clamp(26px, 3vw, 38px);
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line-dark);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(127, 164, 148, 0.35); }
.card .ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(127, 164, 148, 0.1);
  border: 1px solid rgba(127, 164, 148, 0.2);
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--txt-dark-soft); font-size: 0.98rem; }

/* ============ BENTO (delyx-style animated features) ============ */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.bento-card {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-dark);
  padding: 30px 30px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 196, 184, 0.25), transparent);
  opacity: 0.6;
}
.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 50% -10%, rgba(127, 164, 148, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.bento-card:hover { border-color: rgba(127, 164, 148, 0.32); transform: translateY(-4px); }
.bento-card:hover::after { opacity: 1; }
.bcard-viz {
  position: relative;
  height: 246px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.bcard-txt h3 { font-size: 1.42rem; margin-bottom: 9px; letter-spacing: -0.02em; }
.bcard-txt p { color: var(--txt-dark-soft); font-size: 0.98rem; max-width: 40ch; }

.glass-panel {
  width: 100%;
  max-width: 410px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(28, 39, 34, 0.9), rgba(16, 23, 19, 0.92));
  border: 1px solid var(--line-dark);
  box-shadow: 0 26px 54px -26px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.gp-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border-bottom: 1px solid var(--line-dark);
}
.gp-bar i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.gp-bar i:nth-child(1) { background: #ff5f57; }
.gp-bar i:nth-child(2) { background: #febc2e; }
.gp-bar i:nth-child(3) { background: #28c840; }
.gp-bar span { margin-left: 8px; font-size: 0.72rem; color: var(--txt-dark-soft); letter-spacing: 0.03em; }
.gp-body { padding: 11px 18px 13px; }
.calc-type {
  font-size: 0.82rem;
  color: var(--sage-bright);
  font-variant-numeric: tabular-nums;
  min-height: 1.2em;
  margin-bottom: 9px;
}
.type-caret {
  display: inline-block;
  width: 2px; height: 1em;
  background: var(--sage);
  margin-left: 1px;
  vertical-align: -1px;
  animation: caret 1s step-end infinite;
}
@keyframes caret { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
.crow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  padding: 6px 0;
  border-top: 1px solid var(--line-dark);
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.crow.show { opacity: 1; transform: none; }
.crow:first-of-type { border-top: none; }
.crow span { color: var(--txt-dark-soft); }
.crow b { font-variant-numeric: tabular-nums; font-weight: 600; letter-spacing: -0.01em; }
.crow b.pos { color: var(--sage-bright); }
.crow b.neg { color: var(--neg); }
.crow.total { margin-top: 3px; border-top: 1px solid rgba(127, 164, 148, 0.3); padding-top: 9px; }
.crow.total span { color: var(--txt-dark); font-weight: 500; }
.crow.total b { color: var(--sage-bright); font-size: 1.1rem; }

.orbit { position: relative; width: 100%; height: 100%; display: grid; place-items: center; }
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(127, 164, 148, 0.16);
  animation: orbPulse 3.6s ease-out infinite;
}
.orbit-ring.r1 { width: 116px; height: 116px; }
.orbit-ring.r2 { width: 176px; height: 176px; animation-delay: 1.2s; }
.orbit-ring.r3 { width: 236px; height: 236px; animation-delay: 2.4s; }
@keyframes orbPulse {
  0% { transform: scale(0.72); opacity: 0; }
  40% { opacity: 0.7; }
  100% { transform: scale(1.12); opacity: 0; }
}
.orbit-row { position: relative; display: flex; align-items: center; gap: 16px; z-index: 2; }
.orbit-row::before {
  content: "";
  position: absolute;
  left: 8%; right: 8%; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 164, 148, 0.28), transparent);
  z-index: -1;
}
.orbit-row::after {
  content: "";
  position: absolute;
  top: 50%; left: 8%;
  width: 36px; height: 1px;
  transform: translateY(-0.5px);
  background: linear-gradient(90deg, transparent, var(--sage-bright));
  animation: signal 2.8s linear infinite;
}
@keyframes signal { 0% { left: 8%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 84%; opacity: 0; } }
.orbit-chip {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #1f2b25, #141d18);
  border: 1px solid var(--line-dark);
  color: var(--sage-bright);
  box-shadow: 0 10px 24px -12px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  animation: floaty 4.4s ease-in-out infinite;
}
.orbit-chip svg { width: 23px; height: 23px; }
.orbit-chip:nth-child(1) { animation-delay: 0s; }
.orbit-chip:nth-child(2) { animation-delay: 0.5s; }
.orbit-chip:nth-child(4) { animation-delay: 1s; }
.orbit-chip:nth-child(5) { animation-delay: 1.5s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.orbit-core {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #d5ebe0, var(--sage) 42%, #15241e 80%);
  box-shadow: 0 0 40px rgba(127, 164, 148, 0.55), inset 0 0 14px rgba(0,0,0,0.4);
  position: relative;
}
.orbit-core::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(127, 164, 148, 0.12);
  animation: orbPulse 2.8s ease-out infinite;
}

.folder-scene { position: relative; width: 100%; height: 100%; }
.folder-fan { position: absolute; left: 50%; top: 42px; transform: translateX(-50%); width: 190px; height: 104px; }
.folder {
  position: absolute;
  top: 4px; left: 50%;
  width: 118px; height: 84px;
  transform-origin: bottom center;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.42));
}
.folder.f-mid { transform: translateX(-50%); z-index: 3; }
.folder.f-left { transform: translateX(calc(-50% - 36px)) rotate(-13deg); z-index: 1; }
.folder.f-right { transform: translateX(calc(-50% + 36px)) rotate(13deg); z-index: 2; }
.folder-back { position: absolute; inset: 0; background: linear-gradient(160deg, #2c3a33, #1b2620); border-radius: 7px 15px 12px 12px; }
.folder-tab { position: absolute; top: -8px; left: 7px; width: 46px; height: 15px; background: linear-gradient(160deg, #2c3a33, #1b2620); border-radius: 7px 7px 0 0; }
.folder-paper { position: absolute; left: 9px; right: 9px; top: 6px; height: 56px; background: linear-gradient(180deg, #f3f6f4, #dce6e1); border-radius: 5px; transform: rotate(-3deg); transform-origin: bottom center; }
.folder-paper::before, .folder-paper::after { content: ""; position: absolute; left: 10px; right: 18px; height: 3px; border-radius: 2px; background: #b9c8c1; }
.folder-paper::before { top: 12px; }
.folder-paper::after { top: 21px; right: 32px; }
.folder-front { position: absolute; left: 0; right: 0; bottom: 0; height: 60px; background: linear-gradient(160deg, #3a4d44, #243029); border-radius: 5px 10px 10px 10px; }
.folder.f-mid .folder-front { background: linear-gradient(160deg, #455b50, #2b3a31); }
.float-pill {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  background: rgba(127, 164, 148, 0.16);
  border: 1px solid rgba(127, 164, 148, 0.32);
  color: var(--sage-bright);
  font-size: 0.85rem; font-weight: 500;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: pillPress 3.4s ease-in-out infinite;
}
@keyframes pillPress {
  0%, 60%, 100% { transform: translateX(-50%) scale(1); background: rgba(127,164,148,0.16); }
  68% { transform: translateX(-50%) scale(0.93); background: rgba(127,164,148,0.3); box-shadow: 0 0 26px rgba(127,164,148,0.4); }
  76% { transform: translateX(-50%) scale(1); }
}
.cursor { position: absolute; left: 50%; bottom: 26px; width: 22px; height: 22px; z-index: 4; animation: cursorMove 3.4s ease-in-out infinite; }
.cursor svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.55)); }
@keyframes cursorMove {
  0%, 100% { transform: translate(44px, 20px); }
  52% { transform: translate(9px, -4px); }
  68% { transform: translate(9px, 0); }
  76% { transform: translate(9px, -4px); }
}

.stepper { width: 100%; max-width: 360px; }
.step-readout { text-align: center; margin-bottom: 26px; }
.step-readout .ro-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(120deg, var(--sage-bright), var(--sage));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step-readout span.ro-lbl { font-size: 0.78rem; color: var(--txt-dark-soft); display: block; margin-top: 7px; }
.stepper-track { display: flex; align-items: center; }
.snode {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.88rem; font-weight: 600;
  background: #18211c;
  border: 1px solid var(--line-dark);
  color: var(--txt-dark-soft);
  transition: background 0.45s ease, color 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}
.snode.active {
  background: linear-gradient(180deg, var(--sage-light), var(--sage));
  color: #06120d;
  border-color: transparent;
  box-shadow: 0 0 22px rgba(127, 164, 148, 0.45);
}
.sline { flex: 1; height: 2px; background: var(--line-dark); position: relative; overflow: hidden; }
.sline i { position: absolute; inset: 0; background: linear-gradient(90deg, var(--sage), var(--sage-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.65s ease; }
.sline.fill i { transform: scaleX(1); }
.stepper-labels { display: flex; justify-content: space-between; margin-top: 15px; }
.stepper-labels span { font-size: 0.74rem; color: var(--txt-dark-soft); flex: 1; text-align: center; letter-spacing: 0.02em; transition: color 0.4s ease; }
.stepper-labels span.lit { color: var(--sage-light); }
.stepper-labels span:first-child { text-align: left; }
.stepper-labels span:last-child { text-align: right; }

@media (max-width: 820px) {
  .bento { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
  .orbit-chip { width: 42px; height: 42px; font-size: 1rem; }
  .orbit-row { gap: 11px; }
  .orbit-core { width: 54px; height: 54px; }
  .orbit-ring.r3 { width: 200px; height: 200px; }
}

/* ============ LIGHT SECTIONS ============ */
.light {
  background: var(--light-bg);
  color: var(--light-text);
  border-radius: 40px 40px 0 0;
  margin-top: -1px;
}
.light + .light { border-radius: 0; }
.light .eyebrow {
  background: rgba(88, 123, 112, 0.08);
  border-color: rgba(88, 123, 112, 0.25);
  color: var(--light-eyebrow);
}
.light h2, .light h3 { color: var(--light-head); }
.light .sec-head p { color: var(--light-text); }
.light .grad {
  background: linear-gradient(120deg, var(--sage-deep), var(--sage));
  -webkit-background-clip: text;
  background-clip: text;
}
.light-end {
  border-radius: 0 0 40px 40px;
}

/* ============ FALLSTUDIEN (horizontal scroll) ============ */
.hscroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 0 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hscroll::-webkit-scrollbar { display: none; }
.case {
  flex: 0 0 clamp(280px, 78vw, 380px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-bg-2);
  box-shadow: 0 30px 60px -34px rgba(15, 22, 19, 0.3);
  border: 1px solid rgba(15, 22, 19, 0.06);
}
.case-img { aspect-ratio: 4 / 3; overflow: hidden; }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.case:hover .case-img img { transform: scale(1.05); }
.case-body { padding: 24px; }
.case-body .tag {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-eyebrow);
  font-weight: 600;
}
.case-body h3 { font-size: 1.25rem; margin: 8px 0 16px; }
.case-metrics { display: flex; gap: 22px; }
.case-metrics div .n {
  font-size: 1.4rem; font-weight: 600; color: var(--light-head);
  letter-spacing: -0.02em;
}
.case-metrics div .l { font-size: 0.8rem; color: var(--light-text); }

/* ============ TESTIMONIALS ============ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  background: var(--light-bg-2);
  border: 1px solid rgba(15, 22, 19, 0.07);
  border-radius: var(--radius);
  padding: 30px;
}
.quote .stars { color: #e3b341; letter-spacing: 2px; margin-bottom: 14px; font-size: 0.9rem; }
.quote p { font-size: 1.04rem; color: var(--light-head); line-height: 1.55; margin-bottom: 18px; }
.quote .who { font-size: 0.86rem; color: var(--light-text); font-weight: 500; }

/* ============ PROZESS (vertikale Schritte mit Apple-Animation, adwork-Stil) ============ */
.proc { background: var(--ink); padding: clamp(80px, 12vw, 150px) 0; }
.psteps { display: flex; flex-direction: column; gap: clamp(70px, 11vh, 150px); margin-top: clamp(48px, 6vw, 84px); }
.pstep { display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(40px, 5.5vw, 90px); align-items: center; }
.pstep:nth-child(even) .pstep-text { order: 2; text-align: right; }
.pstep:nth-child(even) .pstep-visual { order: 1; }
.pstep:nth-child(even) .pstep-text p { margin-left: auto; }
.pstep:nth-child(even) .pstep-list { align-items: flex-end; }
.pstep:nth-child(even) .pstep-list li { flex-direction: row-reverse; text-align: right; }
.pstep-num { display: block; font-size: clamp(3.6rem, 6.4vw, 6rem); font-weight: 600; line-height: 1; letter-spacing: -0.045em; background: linear-gradient(125deg, var(--sage-bright), var(--sage)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pstep-sub { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-light); margin: 18px 0 10px; }
.pstep-text h3 { font-size: clamp(1.95rem, 3.6vw, 2.9rem); margin-bottom: 16px; letter-spacing: -0.02em; }
.pstep-text p { color: var(--txt-dark-soft); font-size: 1.12rem; line-height: 1.65; max-width: 46ch; }
.pstep-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.pstep-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.02rem; color: var(--txt-dark); }
.pstep-list li::before { content: "\2713"; flex: none; width: 23px; height: 23px; margin-top: 2px; border-radius: 50%; background: rgba(127, 164, 148, 0.14); border: 1px solid rgba(127, 164, 148, 0.32); color: var(--sage-bright); font-size: 0.72rem; display: grid; place-items: center; }
.pstep-visual { display: flex; justify-content: center; }
.pviz {
  position: relative; width: 100%; max-width: 530px; min-height: 360px;
  border-radius: var(--radius); background: var(--glass-dark); border: 1px solid var(--line-dark);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 36px 70px -34px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 32px; overflow: hidden; display: flex; flex-direction: column;
}
.pviz::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% 0%, rgba(127, 164, 148, 0.08), transparent 70%); pointer-events: none; }
.pviz-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; position: relative; z-index: 1; }
.pviz-head .t { font-size: 0.9rem; color: var(--txt-dark-soft); letter-spacing: 0.03em; }
.pviz-live { font-size: 0.84rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-bright); display: inline-flex; align-items: center; gap: 8px; }
.pviz-live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 3px rgba(127, 164, 148, 0.2); animation: pulse 2.4s ease-in-out infinite; }
.pviz-body { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: center; }

.pv-chat { display: flex; flex-direction: column; gap: 13px; }
.pv-bubble { max-width: 84%; padding: 13px 17px; font-size: 0.98rem; line-height: 1.45; border-radius: 18px; opacity: 0; transform: translateY(8px); animation: pvBubble 7.5s ease-in-out infinite; }
.pv-bubble.in { align-self: flex-start; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-dark); border-bottom-left-radius: 5px; color: var(--txt-dark); }
.pv-bubble.out { align-self: flex-end; background: linear-gradient(180deg, var(--sage-light), var(--sage)); color: #06120d; border-bottom-right-radius: 5px; font-weight: 500; }
.pv-bubble.b1 { animation: pvBub1 4.6s ease-in-out infinite; }
.pv-bubble.b2 { animation: pvBub2 4.6s ease-in-out infinite; }
.pv-bubble.b3 { animation: pvBub3 4.6s ease-in-out infinite; }
@keyframes pvBub1 { 0%, 4% { opacity: 0; transform: translateY(8px); } 11%, 80% { opacity: 1; transform: none; } 90%, 100% { opacity: 0; transform: translateY(-6px); } }
@keyframes pvBub2 { 0%, 27% { opacity: 0; transform: translateY(8px); } 34%, 80% { opacity: 1; transform: none; } 90%, 100% { opacity: 0; transform: translateY(-6px); } }
@keyframes pvBub3 { 0%, 50% { opacity: 0; transform: translateY(8px); } 57%, 80% { opacity: 1; transform: none; } 90%, 100% { opacity: 0; transform: translateY(-6px); } }

.pv-bignum { font-size: clamp(2.1rem, 3.6vw, 2.9rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.pv-bignum small { font-size: 0.44em; color: var(--txt-dark-soft); font-weight: 400; }
.pv-caption { font-size: 0.86rem; color: var(--txt-dark-soft); margin-top: 7px; }
.pv-bars { display: flex; align-items: flex-end; gap: 9px; height: 116px; margin-top: 22px; }
.pv-bars span { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--sage-bright), rgba(127, 164, 148, 0.18)); transform-origin: bottom; transform: scaleY(0.22); animation: pvBar 2.6s ease-in-out infinite; }
.pv-statrow { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid var(--line-dark); font-size: 0.92rem; }
.pv-statrow:first-of-type { margin-top: 22px; }
.pv-statrow .k { color: var(--txt-dark-soft); }
.pv-statrow .v { font-weight: 600; color: var(--sage-bright); font-variant-numeric: tabular-nums; }
.pv-bars span:nth-child(1) { animation-delay: 0s; }
.pv-bars span:nth-child(2) { animation-delay: 0.12s; }
.pv-bars span:nth-child(3) { animation-delay: 0.24s; }
.pv-bars span:nth-child(4) { animation-delay: 0.36s; }
.pv-bars span:nth-child(5) { animation-delay: 0.48s; }
.pv-bars span:nth-child(6) { animation-delay: 0.6s; }
.pv-bars span:nth-child(7) { animation-delay: 0.72s; }
@keyframes pvBar { 0%, 100% { transform: scaleY(0.22); } 35%, 72% { transform: scaleY(var(--h, 1)); } }

.pv-objs { display: flex; flex-direction: column; gap: 11px; }
.pv-obj { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 17px; border-radius: 13px; background: rgba(255, 255, 255, 0.035); border: 1px solid var(--line-dark); font-size: 0.94rem; color: var(--txt-dark-soft); }
.pv-obj .chk { width: 22px; height: 22px; flex: none; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; font-size: 0.72rem; color: transparent; }
.pv-obj.o1 { animation: pvObj1 4.2s ease-in-out infinite; }
.pv-obj.o2 { animation: pvObj2 4.2s ease-in-out infinite; }
.pv-obj.match { animation: pvObjM 4.2s ease-in-out infinite; }
.pv-obj.match .chk { animation: pvChkM 4.2s ease-in-out infinite; }
@keyframes pvObj1 { 0%, 6% { border-color: var(--line-dark); background: rgba(255, 255, 255, 0.035); } 13%, 23% { border-color: rgba(127, 164, 148, 0.45); background: rgba(127, 164, 148, 0.09); } 30%, 100% { border-color: var(--line-dark); background: rgba(255, 255, 255, 0.035); } }
@keyframes pvObj2 { 0%, 29% { border-color: var(--line-dark); background: rgba(255, 255, 255, 0.035); } 36%, 46% { border-color: rgba(127, 164, 148, 0.45); background: rgba(127, 164, 148, 0.09); } 53%, 100% { border-color: var(--line-dark); background: rgba(255, 255, 255, 0.035); } }
@keyframes pvObjM { 0%, 52% { border-color: var(--line-dark); background: rgba(255, 255, 255, 0.035); } 60%, 84% { border-color: rgba(127, 164, 148, 0.55); background: rgba(127, 164, 148, 0.12); } 92%, 100% { border-color: var(--line-dark); background: rgba(255, 255, 255, 0.035); } }
@keyframes pvChkM { 0%, 56% { color: transparent; background: transparent; border-color: var(--line-dark); } 63%, 84% { color: #06120d; background: var(--sage); border-color: transparent; } 92%, 100% { color: transparent; background: transparent; border-color: var(--line-dark); } }

.pv-checks { display: flex; flex-direction: column; gap: 16px; }
.pv-citem { display: flex; align-items: center; gap: 13px; font-size: 1.02rem; color: var(--txt-dark-soft); }
.pv-citem .cc { width: 26px; height: 26px; flex: none; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; font-size: 0.74rem; color: transparent; }
.pv-citem .cc { transition: none; }
.pv-citem.c1 .cc { animation: pvChk1 4.2s ease-in-out infinite; }
.pv-citem.c2 .cc { animation: pvChk2 4.2s ease-in-out infinite; }
.pv-citem.c3 .cc { animation: pvChk3 4.2s ease-in-out infinite; }
@keyframes pvChk1 { 0%, 9% { color: transparent; background: transparent; border-color: var(--line-dark); } 16%, 82% { color: #06120d; background: var(--sage); border-color: transparent; } 90%, 100% { color: transparent; background: transparent; border-color: var(--line-dark); } }
@keyframes pvChk2 { 0%, 30% { color: transparent; background: transparent; border-color: var(--line-dark); } 37%, 82% { color: #06120d; background: var(--sage); border-color: transparent; } 90%, 100% { color: transparent; background: transparent; border-color: var(--line-dark); } }
@keyframes pvChk3 { 0%, 51% { color: transparent; background: transparent; border-color: var(--line-dark); } 58%, 82% { color: #06120d; background: var(--sage); border-color: transparent; } 90%, 100% { color: transparent; background: transparent; border-color: var(--line-dark); } }
.pv-prog { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.06); margin-top: 24px; overflow: hidden; }
.pv-prog i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--sage), var(--sage-light)); width: 0; animation: pvProg 4.2s ease-in-out infinite; }
@keyframes pvProg { 0%, 9% { width: 0; } 23% { width: 34%; } 44% { width: 67%; } 58%, 82% { width: 100%; } 90%, 100% { width: 0; } }

@media (max-width: 880px) {
  .pstep { grid-template-columns: 1fr; gap: 26px; }
  .pstep:nth-child(even) .pstep-text { order: 0; text-align: left; }
  .pstep:nth-child(even) .pstep-visual { order: 0; }
  .pviz { max-width: 100%; }
  .pstep:nth-child(even) .pstep-text p { margin-left: 0; margin-right: 0; }
  .pstep:nth-child(even) .pstep-list { align-items: flex-start; }
  .pstep:nth-child(even) .pstep-list li { flex-direction: row; text-align: left; }
}

/* ============ ZWEI WEGE (große animierte Bild-Karten) ============ */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.duo-card {
  position: relative;
  min-height: clamp(440px, 52vh, 560px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 4vw, 52px);
  box-shadow: var(--shadow-img);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.duo-card:hover { transform: translateY(-7px); border-color: rgba(127, 164, 148, 0.45); box-shadow: 0 54px 96px -40px rgba(0, 0, 0, 0.72), 0 0 64px rgba(127, 164, 148, 0.13); }
.duo-bg { position: absolute; inset: -8%; z-index: 0; will-change: transform; }
.duo-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: kenburns 20s ease-in-out infinite alternate; transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.duo-card:hover .duo-bg img { transform: scale(1.13); }
@keyframes kenburns { 0% { transform: scale(1.06) translate(0, 0); } 100% { transform: scale(1.15) translate(-2.5%, -1.5%); } }
.duo-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(355deg, rgba(7, 11, 9, 0.96) 6%, rgba(7, 11, 9, 0.62) 42%, rgba(7, 11, 9, 0.18) 78%, rgba(7, 11, 9, 0.05) 100%); }
.duo-card::after { content: ""; position: absolute; inset: 0; z-index: 3; background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.09) 50%, transparent 68%); transform: translateX(-110%); pointer-events: none; }
.duo-card:hover::after { animation: duoSweep 0.95s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes duoSweep { to { transform: translateX(110%); } }
.duo-card > .duo-tag, .duo-card > h3, .duo-card > p, .duo-card > .duo-cta { position: relative; z-index: 2; }
.duo-tag { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-bright); display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.duo-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px rgba(127, 164, 148, 0.18); animation: pulse 2.6s ease-in-out infinite; }
.duo-card h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; letter-spacing: -0.02em; }
.duo-card p { color: rgba(233, 242, 238, 0.84); font-size: 1.05rem; line-height: 1.6; max-width: 42ch; margin-bottom: 28px; }
.duo-cta { display: inline-flex; align-items: center; gap: 9px; align-self: flex-start; padding: 14px 28px; border-radius: 999px; font-weight: 500; font-size: 0.98rem; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.25); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); color: #fff; transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease; }
.duo-card:hover .duo-cta { background: linear-gradient(180deg, var(--sage-light), var(--sage)); color: #06120d; border-color: transparent; box-shadow: 0 0 42px rgba(127, 164, 148, 0.42); }
.duo-cta .arr { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.duo-card:hover .duo-cta .arr { transform: translateX(4px); }
@media (max-width: 760px) {
  .duo { grid-template-columns: 1fr; }
  .duo-card { min-height: 400px; }
}

/* Zwei Wege (nur Titel + Button, Detail im Modal) */
#wege .sec-head { text-align: center; margin-left: auto; margin-right: auto; }
#wege .sec-head p { margin-left: auto; margin-right: auto; }
.ways { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.way { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 26px; padding: clamp(48px, 6vw, 84px) clamp(24px, 3vw, 48px); border-radius: var(--radius); cursor: pointer; outline: none; transition: background 0.4s ease, transform 0.4s ease; }
.way:hover, .way:focus-visible { background: radial-gradient(120% 120% at 50% 0%, rgba(127, 164, 148, 0.1), rgba(127, 164, 148, 0.03) 60%, transparent); transform: translateY(-4px); }
.way + .way { border-left: 1px solid var(--line-dark); }
.way-title { font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -0.02em; color: #fff; transition: color 0.3s ease; }
.way:hover .way-title, .way:focus-visible .way-title { color: var(--sage-bright); }
.way-btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 28px; border-radius: 999px; font-weight: 500; font-size: 0.95rem; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line-dark); color: var(--txt-dark); transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; }
.way:hover .way-btn, .way:focus-visible .way-btn { background: linear-gradient(180deg, var(--sage-light), var(--sage)); color: #06120d; border-color: transparent; box-shadow: 0 0 42px rgba(127, 164, 148, 0.4); }
.way-btn .arr { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.way:hover .way-btn .arr { transform: translateX(4px); }

.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: var(--gutter); }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(6, 10, 8, 0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); animation: modalFade 0.3s ease; }
.modal { padding: clamp(18px, 3vw, 44px); }
.modal-card { position: relative; z-index: 1; width: min(1460px, 100%); max-height: 92svh; overflow: hidden; display: grid; grid-template-columns: 1.08fr 1fr; background: linear-gradient(180deg, var(--panel-2), var(--panel)); border: 1px solid var(--line-dark); border-radius: var(--radius); box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.82); animation: modalUp 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.modal-media { position: relative; min-height: min(600px, 74svh); }
.modal-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(13, 19, 17, 0.55)); }
.modal-body { padding: clamp(40px, 5vw, 84px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.modal-body .eyebrow { align-self: flex-start; }
.modal-body h3, .modal-body p { align-self: stretch; }
.modal-body h3 { font-size: clamp(2.1rem, 3.6vw, 3.2rem); margin: 18px 0 20px; letter-spacing: -0.025em; }
.modal-body p { color: var(--txt-dark-soft); font-size: clamp(1.06rem, 1.4vw, 1.22rem); line-height: 1.65; margin-bottom: 36px; max-width: 44ch; }
.modal-body .btn { align-self: flex-start; }
.modal-x { position: absolute; top: 18px; right: 18px; z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-dark); color: #fff; font-size: 0.9rem; display: grid; place-items: center; background: rgba(10, 14, 12, 0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: background 0.3s ease; }
.modal-x:hover { background: rgba(10, 14, 12, 0.85); }
@media (max-width: 720px) {
  .modal-card { grid-template-columns: 1fr; overflow-y: auto; }
  .modal-media { min-height: 0; height: 34vh; }
  .modal-body { padding: clamp(26px, 7vw, 40px); }
  .modal-body .btn { width: 100%; justify-content: center; align-self: stretch; }
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalUp { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (max-width: 640px) {
  .ways { grid-template-columns: 1fr; gap: 0; }
  .way + .way { border-left: none; border-top: 1px solid var(--line-dark); padding-top: clamp(30px, 8vw, 44px); margin-top: clamp(10px, 3vw, 20px); }
}

/* ============ RECHNER-TEASER + MOCKUPS ============ */
.device-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.mac {
  width: min(620px, 100%);
  position: relative;
  z-index: 1;
}
.mac-screen {
  border-radius: 16px 16px 0 0;
  border: 2px solid #2a322e;
  border-bottom: none;
  background: var(--ink-2);
  overflow: hidden;
  box-shadow: var(--shadow-img);
}
.mac-cam {
  height: 22px;
  background: #16201b;
  display: grid; place-items: center;
}
.mac-cam::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #2a322e; }
.mac-ui { padding: 22px; }
.mac-base {
  height: 14px;
  background: linear-gradient(180deg, #20282449, #10161300);
  border-radius: 0 0 8px 8px;
}
.mac-foot {
  width: min(680px, 108%);
  height: 12px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1c2420, #0d1311);
  border-radius: 0 0 12px 12px;
  position: relative;
  z-index: 0;
}
.mac-foot::before {
  content: ""; position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 90px; height: 5px; border-radius: 0 0 8px 8px;
  background: #050807;
}
.iphone {
  position: absolute;
  right: -7%;
  bottom: -15%;
  width: clamp(118px, 19%, 150px);
  z-index: 2;
  border-radius: 30px;
  border: 6px solid #14110f00;
  background: #05080a;
  padding: 8px;
  box-shadow: 0 40px 70px -28px rgba(0,0,0,0.7);
  border: 2px solid #242b27;
}
.iphone-screen {
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink-2);
}
.iphone-notch {
  height: 18px;
  position: relative;
}
.iphone-notch::after {
  content: ""; position: absolute; left: 50%; top: 5px;
  transform: translateX(-50%);
  width: 38%; height: 8px; border-radius: 999px;
  background: #05080a;
}
.iphone-ui { padding: 12px; }

.ui-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.ui-head .t { font-size: 0.78rem; color: var(--txt-dark-soft); letter-spacing: 0.04em; }
.ui-head .dot-live {
  font-size: 0.68rem; color: var(--sage-bright);
  display: inline-flex; align-items: center; gap: 6px;
}
.ui-head .dot-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sage);
  box-shadow: 0 0 0 3px rgba(127,164,148,0.2);
}
.ui-big {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1;
}
.ui-big small { font-size: 0.5em; color: var(--txt-dark-soft); font-weight: 400; }
.ui-sub { font-size: 0.82rem; color: var(--txt-dark-soft); margin-top: 6px; }
.ui-bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; margin-top: 22px; }
.ui-bars span {
  flex: 1; border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--sage-light), rgba(127,164,148,0.15));
  transform-origin: bottom;
}
.ui-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-top: 1px solid var(--line-dark); font-size: 0.84rem;
}
.ui-row .k { color: var(--txt-dark-soft); }
.ui-row .v { font-weight: 600; font-variant-numeric: tabular-nums; }
.iphone-ui .ui-big { font-size: 1.45rem; white-space: nowrap; }
.iphone-ui .ui-big small { font-size: 0.42em; }
.iphone-ui .ui-bars { height: 50px; margin-top: 16px; }

/* ============ FAQ ============ */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid rgba(15, 22, 19, 0.1);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left;
  padding: 24px 0;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 500;
  color: var(--light-head);
}
.faq-q .pm {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  position: relative;
}
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 14px; height: 1.8px; background: var(--sage-deep);
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease;
}
.faq-q .pm::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .faq-q .pm::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a-inner { padding: 0 0 26px; color: var(--light-text); font-size: 1rem; max-width: 64ch; }

/* ============ FINAL CTA ============ */
.final {
  text-align: center;
}
.final-box {
  position: relative;
  border-radius: 36px;
  padding: clamp(48px, 7vw, 90px) var(--gutter);
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(127, 164, 148, 0.16), transparent 60%),
    var(--panel);
  border: 1px solid var(--line-dark);
}
.final-box h2 { font-size: clamp(2rem, 5.5vw, 3.6rem); margin-bottom: 20px; }
.final-box p { color: var(--txt-dark-soft); font-size: 1.1rem; max-width: 52ch; margin: 0 auto 34px; }
.final-box .hero-actions { justify-content: center; }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink-2);
  padding: clamp(56px, 8vh, 90px) 0 40px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-logo img { height: 28px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { color: var(--txt-dark-soft); font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--txt-dark-soft); font-size: 0.94rem; padding: 6px 0; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--txt-dark); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding-top: 26px;
  font-size: 0.84rem; color: var(--txt-dark-soft);
}
.footer-bottom .disc { max-width: 60ch; font-size: 0.78rem; opacity: 0.7; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta .btn { display: none; }
  .split { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .routes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { align-items: flex-end; }
  .iphone { right: 0; bottom: -4%; width: 38%; }
  .device-stage { min-height: 420px; }
  .light, .light-end { border-radius: 28px 28px 0 0; }
}
@media (max-width: 640px) {
  .nav-logo img { height: 20px; }
  .hero .eyebrow { font-size: 0.6rem; padding: 6px 12px; letter-spacing: 0.02em; margin-bottom: 22px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 3.7rem); margin-bottom: 24px; }
  .hero-sub--desktop { display: none; }
  .hero-sub--mobile { display: block; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; gap: 11px; }
  .hero-actions .btn { width: auto; justify-content: center; padding: 12px 24px; font-size: 0.9rem; }
  .hero-actions .hint { width: 100%; text-align: center; margin-top: 6px; }
}
@media (max-width: 760px) {
  .sec-head { text-align: center; margin-left: auto; margin-right: auto; }
  .sec-head p { margin-left: auto; margin-right: auto; }
  .rch-note { text-align: center; margin-left: auto; margin-right: auto; }
  #leistung .wrap > p { text-align: center; margin-left: auto; margin-right: auto; }

  /* Die Rechnung: kompakt, damit die gepinnte Story komplett in den Screen passt */
  .rch-pin { padding: 66px 0 18px; min-height: 100svh; }
  .rch .sec-head { margin-bottom: 14px !important; }
  .rch .sec-head p { display: none; }
  .rch .sec-head h2 { font-size: clamp(1.5rem, 6.4vw, 2rem); }
  .rch-stage { gap: 14px; }
  .rch-media { width: 100%; margin: 0 auto; aspect-ratio: auto; height: 17svh; min-height: 118px; }
  .rch-tag { font-size: 0.66rem; padding: 5px 11px; }
  .rch-ledger { padding: 15px 16px; }
  .rch-lhead { padding-bottom: 9px; }
  .rch-lhead .t { font-size: 0.86rem; }
  .lrow { padding: 8px 0; }
  .lrow .k { font-size: 0.9rem; }
  .lrow .k small { font-size: 0.7rem; margin-top: 1px; }
  .lrow .v { font-size: 1rem; }
  .lrow.total { padding-top: 11px; margin-top: 3px; }
  .lrow.total .v { font-size: clamp(1.2rem, 5.4vw, 1.55rem); }
  .rch-note { font-size: 0.66rem; margin-top: 8px; }

  /* Fallstudien: Kopf schlank + Karten kürzer, gepinnte Galerie komplett sichtbar */
  #fallstudien.sec { padding-top: 0; padding-bottom: 40px; }
  #cases-pin { padding-top: 66px; }
  .cases-head { margin-bottom: 16px; }
  .cases-head .sec-head h2 { font-size: clamp(1.55rem, 6.2vw, 2rem); }
  .cases-head .sec-head p { display: none; }
  .ccard { width: 78vw; }
  .ccard-media, .ccard.dark .ccard-num { aspect-ratio: 16 / 10; }
  .ccard-body { padding: 16px 20px 20px; gap: 6px; }
  .ccard h3 { font-size: 1.12rem; }
  .ccard p { font-size: 0.9rem; }
  .ccard-kpi { padding-top: 12px; gap: 20px; }
  .ccard-kpi b { font-size: 1.15rem; }
  .ccard.cta { padding: 28px 24px; }

  /* Ablauf: alles linksbündig */
  .proc .sec-head { text-align: left; margin-left: 0; margin-right: 0; }
  .proc .sec-head p { margin-left: 0; margin-right: 0; }
  .pstep-text { text-align: left; }
  .pstep-text p { margin-left: 0; margin-right: 0; }
  .pstep-list { align-items: flex-start; }

  /* Unterseiten-Heroes + Split-Statements zentriert */
  .au-hero-grid > div:first-child { text-align: center; }
  .au-hero .lead { margin-left: auto; margin-right: auto; }
  .au-hero .hero-actions { justify-content: center !important; }
  .es-copy { text-align: center; }
  .es-copy p { margin-left: auto; margin-right: auto; }
  .es-copy .btn { align-self: center; }
}

/* ============ DIE RECHNUNG (pinned build + Bildwechsel) ============ */
.rch { background: var(--ink); overflow: clip; padding: 0; }
.rch-pin { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 92px 0 50px; }
.rch .sec-head { margin-bottom: clamp(16px, 2.4vh, 26px); max-width: 760px; }
.rch .sec-head h2 { font-size: clamp(1.6rem, 3.1vw, 2.5rem); }
.rch .sec-head p { font-size: 0.97rem; max-width: 56ch; }
.rch-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.rch-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-img);
  background: var(--panel);
}
.rch-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 1.4s ease;
}
.rch-media img.on { opacity: 1; transform: scale(1); }
.rch-tag {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--txt-dark);
  background: rgba(10, 14, 12, 0.6);
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 7px 13px; border-radius: 999px;
}
.rch-ledger {
  background: var(--glass-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: clamp(22px, 3vw, 34px);
}
.rch-lhead { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 13px; border-bottom: 1px solid var(--line-dark); }
.rch-lhead .t { font-weight: 500; font-size: 0.94rem; }
.rch-lhead .c { font-size: 0.76rem; color: var(--txt-dark-soft); }
.lrow { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-dark); }
.lrow .k { font-size: 0.96rem; font-weight: 500; color: var(--txt-dark); }
.lrow .k small { display: block; font-weight: 400; font-size: 0.78rem; color: var(--txt-dark-soft); margin-top: 2px; }
.lrow .v { font-variant-numeric: tabular-nums; font-weight: 600; font-size: 1.2rem; white-space: nowrap; letter-spacing: -0.01em; }
.lrow .v.pos { color: var(--sage-bright); }
.lrow .v.neg { color: var(--neg); }
.lrow.total { border-bottom: none; padding-top: 17px; margin-top: 5px; border-top: 1px solid rgba(127, 164, 148, 0.3); }
.lrow.total .k { font-size: 1.02rem; font-weight: 600; color: #fff; }
.lrow.total .v { font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--sage-bright); }
.lrow.total .v small { font-size: 0.48em; color: var(--txt-dark-soft); font-weight: 400; margin-left: 3px; }
.rch-note { font-size: 0.76rem; color: var(--txt-dark-soft); margin-top: 12px; opacity: 0.8; }
@media (max-width: 1080px) { .rch-stage { grid-template-columns: 1fr; } }

/* ============ FALLSTUDIEN (horizontal, v2-Stil) ============ */
.cases-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 4vw, 50px); }
.cases-head .sec-head { margin-bottom: 0; }
.cases-rail { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.cases-rail::-webkit-scrollbar { display: none; }
.cases-track {
  display: flex; gap: 22px; width: max-content;
  padding: 6px 0 24px;
  padding-left: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  padding-right: 8vw;
}
.ccard {
  width: clamp(290px, 30vw, 410px); flex: none;
  scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden;
  background: #fff; border: 1px solid rgba(15, 22, 19, 0.07);
  box-shadow: 0 30px 60px -34px rgba(15, 22, 19, 0.28);
  display: flex; flex-direction: column;
}
.ccard-media { aspect-ratio: 4 / 3.1; overflow: hidden; }
.ccard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.ccard:hover .ccard-media img { transform: scale(1.05); }
.ccard-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.ccard .tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-eyebrow); }
.ccard h3 { font-size: 1.22rem; color: var(--light-head); letter-spacing: -0.01em; }
.ccard p { font-size: 0.95rem; color: var(--light-text); }
.ccard-kpi { margin-top: auto; padding-top: 16px; display: flex; gap: 26px; }
.ccard-kpi b { font-size: 1.3rem; font-weight: 600; color: var(--light-head); display: block; letter-spacing: -0.02em; }
.ccard-kpi span { font-size: 0.78rem; color: var(--light-text); }
.ccard.dark { background: var(--panel); border-color: transparent; }
.ccard.dark .ccard-num { aspect-ratio: 4 / 3.1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; background: radial-gradient(420px 260px at 50% 120%, rgba(127, 164, 148, 0.3), transparent 70%); }
.ccard.dark .ccard-num .big { font-size: clamp(2.6rem, 4vw, 3.3rem); line-height: 1; }
.ccard.dark .ccard-num small { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt-dark-soft); }
.ccard.dark h3 { color: #fff; }
.ccard.dark p, .ccard.dark .ccard-kpi span { color: var(--txt-dark-soft); }
.ccard.dark .ccard-kpi b { color: #fff; }
.ccard.cta { background: rgba(127, 164, 148, 0.12); border: 1px solid rgba(127, 164, 148, 0.32); justify-content: center; padding: 36px 30px; gap: 16px; }
.ccard.cta .tag { color: var(--light-eyebrow); }
.ccard.cta h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); }
.ccard.cta p { font-size: 0.96rem; }
.grad-bright { background: linear-gradient(120deg, var(--sage-bright), var(--sage)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cases-hint { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light-text); opacity: 0.7; }
.cases-hint i { width: 42px; height: 1.5px; background: var(--sage-deep); display: block; }
@media (max-width: 1080px) { .cases-rail { scroll-snap-type: x mandatory; } .ccard { width: clamp(280px, 80vw, 360px); } .cases-track { padding-left: var(--gutter); } .cases-hint { display: none; } }

/* ============ ÜBER UNS (eigenes Seitendesign) ============ */
.au-hero { position: relative; background: var(--ink); min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: clamp(108px, 14vh, 150px) 0 clamp(48px, 6vh, 84px); overflow: clip; }
.au-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(56% 50% at 82% 6%, rgba(127, 164, 148, 0.14), transparent 62%); }
.au-hero-grid { position: relative; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.au-hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); letter-spacing: -0.035em; margin: 24px 0 24px; }
.au-hero .lead { font-size: clamp(1.04rem, 1.8vw, 1.2rem); color: var(--txt-dark-soft); line-height: 1.66; max-width: 52ch; }
.au-facts { padding: clamp(26px, 3vw, 36px); }
.au-facts h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 6px; }
.au-facts .row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.au-facts .row:last-child { border-bottom: none; padding-bottom: 0; }
.au-facts .k { color: var(--txt-dark-soft); font-size: 0.96rem; }
.au-facts .v { font-weight: 600; font-size: 1.18rem; letter-spacing: -0.02em; color: var(--sage-bright); font-variant-numeric: tabular-nums; white-space: nowrap; }

.au-stance { background: var(--light-bg); color: var(--light-text); border-radius: 40px 40px 0 0; }
.au-stance .sec-head { max-width: none; margin: 0 auto clamp(28px, 4vw, 40px); text-align: center; }
.au-stance h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: var(--light-head); letter-spacing: -0.02em; }
.au-stance .eyebrow { background: rgba(88, 123, 112, 0.08); border-color: rgba(88, 123, 112, 0.25); color: var(--light-eyebrow); margin-bottom: 22px; }
.au-stance-body { max-width: 860px; margin: 0 auto; text-align: center; }
.au-stance-body p { font-size: clamp(1.05rem, 1.7vw, 1.2rem); line-height: 1.66; color: var(--light-text); }
.au-stance-body p + p { margin-top: 18px; }
.au-proof { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 60px); margin: clamp(40px, 5vw, 58px) auto 0; max-width: 720px; }
.au-proof .stat { text-align: center; }
.au-proof .stat + .stat { border-left: 1px solid rgba(15, 22, 19, 0.12); }
.au-proof .stat-n { font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; background: linear-gradient(120deg, var(--sage-deep), var(--sage)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.au-proof .stat-l { font-size: 0.95rem; color: var(--light-text); margin: 14px auto 0; max-width: 26ch; line-height: 1.45; }
.au-stance-note { text-align: center; max-width: 72ch; margin: clamp(30px, 4vw, 48px) auto 0; font-size: 0.8rem; color: var(--light-text); opacity: 0.7; }

.au-team { background: var(--light-bg); color: var(--light-text); border-radius: 0 0 40px 40px; }
.au-team .eyebrow { background: rgba(88, 123, 112, 0.08); border-color: rgba(88, 123, 112, 0.25); color: var(--light-eyebrow); }
.au-team .sec-head h2 { color: var(--light-head); }
.au-team .sec-head p { color: var(--light-text); }
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard { background: var(--light-bg-2); border: 1px solid rgba(15, 22, 19, 0.08); border-radius: var(--radius); padding: 34px 30px 36px; box-shadow: 0 30px 60px -38px rgba(15, 22, 19, 0.28); transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease; }
.tcard:hover { transform: translateY(-6px); box-shadow: 0 44px 80px -38px rgba(15, 22, 19, 0.36); }
.tcard .avatar { width: 66px; height: 66px; border-radius: 20px; display: grid; place-items: center; font-size: 1.4rem; font-weight: 600; letter-spacing: 0.02em; color: #06120d; background: linear-gradient(150deg, var(--sage-light), var(--sage-deep)); box-shadow: 0 14px 30px -10px rgba(88, 123, 112, 0.5); margin-bottom: 22px; }
.tcard .role { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--light-eyebrow); }
.tcard h3 { font-size: 1.4rem; color: var(--light-head); margin: 7px 0 14px; letter-spacing: -0.02em; }
.tcard p { font-size: 0.97rem; line-height: 1.62; color: var(--light-text); }

.au-cta { background: var(--ink); }
.au-cta-box { position: relative; overflow: hidden; border-radius: 36px; padding: clamp(48px, 7vw, 92px) var(--gutter); text-align: center; border: 1px solid var(--line-dark); background: radial-gradient(120% 150% at 50% 0%, rgba(127, 164, 148, 0.16), transparent 58%), var(--panel); }
.au-cta-box h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); margin-bottom: 18px; max-width: 22ch; margin-inline: auto; }
.au-cta-box p { color: var(--txt-dark-soft); font-size: 1.08rem; max-width: 56ch; margin: 0 auto 32px; }

@media (max-width: 900px) {
  .au-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .au-stance-grid { grid-template-columns: 1fr; gap: 24px; }
  .tcards { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .au-proof { grid-template-columns: 1fr; gap: 0; }
  .au-proof .stat { padding: 26px 0; }
  .au-proof .stat + .stat { border-left: none; border-top: 1px solid rgba(15, 22, 19, 0.12); }
  .au-stance, .au-team { border-radius: 28px 28px 0 0; }
  .au-team { border-radius: 0 0 28px 28px; }
}

/* Gründer (2 Karten mit Foto) */
.au-founders { background: var(--light-bg); color: var(--light-text); border-radius: 0 0 40px 40px; }
.au-founders .eyebrow { background: rgba(88, 123, 112, 0.08); border-color: rgba(88, 123, 112, 0.25); color: var(--light-eyebrow); }
.au-founders .sec-head { max-width: none; margin-left: auto; margin-right: auto; text-align: center; }
.au-founders .sec-head h2 { color: var(--light-head); }
.au-founders .sec-head p { color: var(--light-text); max-width: 820px; margin-left: auto; margin-right: auto; }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.founder { background: var(--light-bg-2); border: 1px solid rgba(15, 22, 19, 0.08); border-radius: var(--radius); overflow: hidden; box-shadow: 0 34px 66px -40px rgba(15, 22, 19, 0.3); display: flex; flex-direction: column; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease; }
.founder:hover { transform: translateY(-6px); box-shadow: 0 48px 86px -40px rgba(15, 22, 19, 0.4); }
.founder-photo { position: relative; aspect-ratio: 5 / 4; overflow: hidden; background: linear-gradient(150deg, var(--sage-light), var(--sage-deep)); display: grid; place-items: center; }
.founder-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.founder-photo .ph { position: relative; text-align: center; color: #07140e; }
.founder-photo .ph .ini { font-size: clamp(2.6rem, 4vw, 3.4rem); font-weight: 600; letter-spacing: 0.02em; line-height: 1; }
.founder-photo .ph .note { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; margin-top: 10px; }
.founder-body { padding: 28px 30px 32px; display: flex; flex-direction: column; }
.founder-body .role { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-eyebrow); }
.founder-body h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); color: var(--light-head); margin: 7px 0 14px; letter-spacing: -0.02em; }
.founder-body p { font-size: 1rem; line-height: 1.62; color: var(--light-text); }
.founder-body p + p { margin-top: 12px; }

/* Case Studies (dunkel) */
.au-cases { background: var(--ink); }
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.case-tile { position: relative; padding: 0; border-radius: var(--radius); background: var(--glass-dark); border: 1px solid var(--line-dark); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease; overflow: hidden; display: flex; flex-direction: column; }
.ct-img { aspect-ratio: 16 / 10; overflow: hidden; }
.ct-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.case-tile:hover .ct-img img { transform: scale(1.05); }
.ct-body { position: relative; z-index: 1; padding: clamp(24px, 2.6vw, 32px); }
.case-tile::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% 120%, rgba(127, 164, 148, 0.12), transparent 70%); opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.case-tile:hover { transform: translateY(-5px); border-color: rgba(127, 164, 148, 0.34); }
.case-tile:hover::after { opacity: 1; }
.case-tile .tag { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-light); }
.case-tile .big { display: block; font-size: clamp(2.3rem, 4vw, 3.1rem); line-height: 1; letter-spacing: -0.01em; margin: 16px 0 8px; }
.case-tile .lbl { color: var(--txt-dark-soft); font-size: 0.96rem; }
@media (max-width: 760px) {
  .founders { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
}

/* ============ LEISTUNGEN ============ */
.lp-flow { padding: clamp(26px, 3vw, 34px); }
.lp-flow h4 { font-size: 0.78rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 6px; }
.lp-flow .step { display: flex; align-items: flex-start; gap: 15px; padding: 15px 0; border-bottom: 1px solid var(--line-dark); }
.lp-flow .step:last-child { border-bottom: none; padding-bottom: 0; }
.lp-flow .step .n { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 0.84rem; font-weight: 600; color: #06120d; background: linear-gradient(180deg, var(--sage-light), var(--sage)); }
.lp-flow .step .tx b { display: block; font-size: 1rem; font-weight: 500; color: var(--txt-dark); }
.lp-flow .step .tx span { font-size: 0.88rem; color: var(--txt-dark-soft); }

.lp-hebel { background: var(--light-bg); color: var(--light-text); border-radius: 40px 40px 0 0; }
.lp-hebel .eyebrow, .lp-honest .eyebrow { background: rgba(88, 123, 112, 0.08); border-color: rgba(88, 123, 112, 0.25); color: var(--light-eyebrow); }
.lp-hebel .sec-head h2, .lp-honest h2 { color: var(--light-head); }
.lp-hebel .sec-head p, .lp-honest p { color: var(--light-text); }
.lp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lp-card { background: var(--light-bg-2); border: 1px solid rgba(15, 22, 19, 0.08); border-radius: var(--radius); padding: clamp(30px, 3vw, 40px); box-shadow: 0 30px 60px -40px rgba(15, 22, 19, 0.26); transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease; }
.lp-card:hover { transform: translateY(-5px); box-shadow: 0 44px 80px -40px rgba(15, 22, 19, 0.34); }
.lp-card .num { font-family: var(--ff-serif); font-style: italic; font-weight: 700; font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; letter-spacing: 0; background: linear-gradient(125deg, var(--sage-deep), var(--sage)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-card h3 { font-size: 1.3rem; color: var(--light-head); margin: 14px 0 10px; letter-spacing: -0.02em; line-height: 1.25; }
.lp-card p { font-size: 0.98rem; line-height: 1.6; color: var(--light-text); }

.lp-honest { background: var(--light-bg); color: var(--light-text); border-radius: 40px 40px 0 0; }
.lp-honest h2 { font-size: clamp(2rem, 4.2vw, 3rem); letter-spacing: -0.025em; line-height: 1.12; }
.lp-honest .sec-head { max-width: none; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.lp-honest .sec-head .eyebrow { margin-bottom: 22px; }
.lp-honest .sec-head p { font-size: clamp(1.04rem, 1.7vw, 1.18rem); line-height: 1.6; margin: 20px auto 0; max-width: 680px; }
.nogo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.nogo { background: var(--light-bg-2); border: 1px solid rgba(15, 22, 19, 0.08); border-top: 3px solid var(--sage); border-radius: var(--radius-sm); padding: clamp(24px, 2.4vw, 30px); display: flex; flex-direction: column; gap: 8px; box-shadow: 0 30px 60px -44px rgba(15, 22, 19, 0.26); transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease; }
.nogo:hover { transform: translateY(-5px); box-shadow: 0 44px 80px -44px rgba(15, 22, 19, 0.34); }
.nogo-hero { font-size: clamp(2rem, 3vw, 2.5rem); font-weight: 600; letter-spacing: -0.03em; color: var(--light-head); line-height: 1; font-variant-numeric: tabular-nums; margin-bottom: 6px; }
.nogo-hero i { display: block; font-style: normal; font-size: 0.32em; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 5px; }
.nogo-x { color: var(--sage-deep); font-weight: 400; }
.nogo b { font-size: 1.04rem; color: var(--light-head); font-weight: 600; letter-spacing: -0.01em; }
.nogo .d { font-size: 0.9rem; line-height: 1.5; color: var(--light-text); }
@media (max-width: 980px) { .nogo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .nogo-grid { grid-template-columns: 1fr; } }

.lp-partner { background: var(--ink); }
.lp-partner-box { position: relative; overflow: hidden; border-radius: 32px; border: 1px solid var(--line-dark); padding: clamp(38px, 5vw, 64px); display: grid; grid-template-columns: 1.5fr auto; gap: clamp(28px, 4vw, 56px); align-items: center; background: radial-gradient(90% 130% at 12% 0%, rgba(127, 164, 148, 0.14), transparent 56%), var(--panel); }
.lp-partner-box h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 14px 0 14px; letter-spacing: -0.02em; }
.lp-partner-box p { color: var(--txt-dark-soft); font-size: 1.04rem; max-width: 54ch; }
.lp-partner-box .btn { white-space: nowrap; }

/* Dual-CTA (zwei Zielgruppen in einer Sektion) */
.dual-cta { position: relative; overflow: clip; background: var(--ink); min-height: 80svh; display: flex; align-items: center; padding: clamp(56px, 8vw, 96px) 0; }
.dual-cta > .wrap { width: 100%; }
.dual-cta-bg { position: absolute; inset: 0; z-index: 0; }
.dual-cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.dual-cta-veil { position: absolute; inset: 0; z-index: 1; background: radial-gradient(120% 100% at 50% 0%, rgba(127, 164, 148, 0.1), transparent 55%), linear-gradient(180deg, rgba(8, 12, 10, 0.82) 0%, rgba(8, 12, 10, 0.9) 100%); }
.dual-cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.dcta { display: flex; flex-direction: column; align-items: flex-start; }
.dcta:first-child { padding-right: clamp(28px, 4vw, 60px); }
.dcta + .dcta { padding-left: clamp(28px, 4vw, 60px); border-left: 1px solid var(--line-dark); }
.dcta h2 { font-size: clamp(1.65rem, 2.7vw, 2.35rem); margin: 16px 0 14px; letter-spacing: -0.02em; line-height: 1.16; }
.dcta p { color: var(--txt-dark-soft); font-size: 1.02rem; line-height: 1.6; margin-bottom: 28px; max-width: 44ch; }
.dcta .btn { margin-top: auto; }
@media (max-width: 820px) {
  .dual-cta-grid { grid-template-columns: 1fr; }
  .dcta:first-child { padding-right: 0; }
  .dcta + .dcta { padding-left: 0; border-left: none; border-top: 1px solid var(--line-dark); padding-top: clamp(34px, 8vw, 48px); margin-top: clamp(34px, 8vw, 48px); }
}

@media (max-width: 880px) {
  .lp-cards { grid-template-columns: 1fr; }
  .lp-honest-grid { grid-template-columns: 1fr; gap: 26px; }
  .lp-partner-box { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 680px) {
  .lp-hebel, .lp-honest { border-radius: 28px 28px 0 0; }
  .lp-honest { border-radius: 0 0 28px 28px; }
}

/* ============ FOTO-BAND (cinematic, Unterseiten) ============ */
.photo-band { position: relative; min-height: 65svh; overflow: clip; display: flex; align-items: flex-end; background: var(--ink); }
.photo-band-bg { position: absolute; inset: -10% 0; z-index: 0; will-change: transform; }
.photo-band-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: kenburns 26s ease-in-out infinite alternate; }
.photo-band-veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(92deg, rgba(7, 11, 9, 0.92) 6%, rgba(7, 11, 9, 0.58) 50%, rgba(7, 11, 9, 0.2) 100%), linear-gradient(0deg, rgba(7, 11, 9, 0.72), transparent 46%); }
.photo-band--plain .photo-band-veil { background: linear-gradient(180deg, rgba(7, 11, 9, 0.62) 0%, rgba(7, 11, 9, 0.12) 16%, transparent 34%); }
.photo-band .wrap { position: relative; z-index: 2; width: 100%; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(58px, 7vw, 90px); }
.photo-band + section { margin-top: -44px; position: relative; z-index: 2; }
.photo-band h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); letter-spacing: -0.025em; margin: 18px 0 14px; max-width: 18ch; }
.photo-band p { color: rgba(233, 242, 238, 0.82); font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.6; max-width: 50ch; }

/* Partner-Band mit Hintergrundbild */
.lp-partner-box .pb-img { position: absolute; inset: 0; z-index: 0; }
.lp-partner-box .pb-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.lp-partner-box::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(92deg, rgba(8, 12, 10, 0.96) 34%, rgba(8, 12, 10, 0.66) 78%, rgba(8, 12, 10, 0.5) 100%); }
.lp-partner-box > div:not(.pb-img), .lp-partner-box > .btn { position: relative; z-index: 2; }

/* ============ FALLSTUDIEN-SEITE ============ */
.fs-cases { background: var(--light-bg); color: var(--light-text); border-radius: 40px; }
.fs-cases .eyebrow { background: rgba(88, 123, 112, 0.08); border-color: rgba(88, 123, 112, 0.25); color: var(--light-eyebrow); }
.fs-cases .sec-head h2 { color: var(--light-head); }
.fs-cases .sec-head p { color: var(--light-text); }
.fs-list { display: flex; flex-direction: column; gap: clamp(60px, 9vh, 120px); }
.fs-case { display: grid; grid-template-columns: 1fr 1.04fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.fs-case:nth-child(even) .fs-media { order: 2; }
.fs-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3.2; box-shadow: 0 44px 84px -42px rgba(15, 22, 19, 0.42); }
.fs-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.fs-case:hover .fs-media img { transform: scale(1.04); }
.fs-badge { position: absolute; top: 16px; left: 16px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #07140e; background: rgba(243, 247, 245, 0.92); padding: 7px 14px; border-radius: 999px; }
.fs-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.fs-tag { font-size: 0.78rem; font-weight: 500; padding: 6px 14px; border-radius: 999px; background: rgba(88, 123, 112, 0.1); border: 1px solid rgba(88, 123, 112, 0.22); color: var(--sage-deep); }
.fs-content h3 { font-size: clamp(1.5rem, 2.5vw, 2.05rem); color: var(--light-head); letter-spacing: -0.02em; line-height: 1.18; margin-bottom: 12px; }
.fs-content > p { color: var(--light-text); font-size: 1rem; line-height: 1.62; margin-bottom: 24px; max-width: 54ch; }
.fs-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(15, 22, 19, 0.08); border: 1px solid rgba(15, 22, 19, 0.08); border-radius: var(--radius-sm); overflow: hidden; }
.fs-num { background: var(--light-bg-2); padding: 17px 20px; }
.fs-num .v { font-size: 1.28rem; font-weight: 600; color: var(--light-head); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; line-height: 1.1; }
.fs-num .v.pos { color: var(--sage-deep); }
.fs-num .l { font-size: 0.82rem; color: var(--light-text); margin-top: 5px; line-height: 1.35; }
.fs-feedback { margin-top: 14px; }
.fs-feedback summary { cursor: pointer; list-style: none; font-size: 0.9rem; font-weight: 500; color: var(--sage-deep); display: inline-flex; align-items: center; gap: 9px; }
.fs-feedback summary::-webkit-details-marker { display: none; }
.fs-feedback summary::before { content: "+"; font-size: 1.15rem; line-height: 1; width: 18px; text-align: center; }
.fs-feedback[open] summary::before { content: "\2212"; }
.fs-feedback img { margin-top: 14px; max-width: 360px; width: 100%; border-radius: var(--radius-sm); border: 1px solid rgba(15, 22, 19, 0.1); }
.fs-disclaimer { margin-top: clamp(44px, 6vw, 72px); font-size: 0.82rem; line-height: 1.6; color: var(--light-text); opacity: 0.7; max-width: 80ch; }
@media (max-width: 880px) {
  .fs-case { grid-template-columns: 1fr; gap: 26px; }
  .fs-case:nth-child(even) .fs-media { order: 0; }
}
@media (max-width: 540px) {
  .fs-numbers { grid-template-columns: 1fr; }
  .fs-cases { border-radius: 28px; }
}

/* ============ BLOG ============ */
.blog-sec { background: var(--light-bg); color: var(--light-text); border-radius: 40px; }
.blog-sec .eyebrow { background: rgba(88, 123, 112, 0.08); border-color: rgba(88, 123, 112, 0.25); color: var(--light-eyebrow); }
.blog-sec .sec-head h2 { color: var(--light-head); }
.blog-sec .sec-head p { color: var(--light-text); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card { display: flex; flex-direction: column; background: var(--light-bg-2); border: 1px solid rgba(15, 22, 19, 0.08); border-radius: var(--radius); padding: 34px 30px 30px; box-shadow: 0 30px 60px -40px rgba(15, 22, 19, 0.26); transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease; min-height: 330px; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 46px 84px -40px rgba(15, 22, 19, 0.36); border-color: rgba(88, 123, 112, 0.3); }
.blog-card .num { font-family: var(--ff-serif); font-style: italic; font-weight: 700; font-size: clamp(2.3rem, 3.2vw, 2.9rem); line-height: 1; background: linear-gradient(125deg, var(--sage-deep), var(--sage)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 18px; }
.blog-card .meta { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--light-text); opacity: 0.8; margin-bottom: 12px; }
.blog-card .meta .d { width: 4px; height: 4px; border-radius: 50%; background: var(--sage); }
.blog-card h3 { font-size: 1.24rem; color: var(--light-head); line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 12px; }
.blog-card p { font-size: 0.95rem; line-height: 1.6; color: var(--light-text); flex: 1; }
.blog-card .more { margin-top: 22px; font-weight: 500; font-size: 0.95rem; color: var(--sage-deep); display: inline-flex; align-items: center; gap: 7px; }
.blog-card .more .arr { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.blog-card:hover .more .arr { transform: translateX(4px); }
.au-facts .row.topic { justify-content: flex-start; gap: 12px; }
.au-facts .row.topic::before { content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(160deg, var(--sage-light), var(--sage-deep)); }
.au-hero-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 4.5; border: 1px solid var(--line-dark); box-shadow: 0 52px 92px -40px rgba(0, 0, 0, 0.72), 0 18px 42px -22px rgba(0, 0, 0, 0.5); }
.au-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7, 11, 9, 0.35) 100%); pointer-events: none; }
.au-hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: kenburns 24s ease-in-out infinite alternate; }
@media (max-width: 900px) { .au-hero-media { aspect-ratio: 16 / 11; } }
.au-hero-bgimg { position: absolute; inset: -10% 0; z-index: 0; will-change: transform; }
.au-hero-bgimg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: kenburns 28s ease-in-out infinite alternate; }
.au-hero-bgveil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(96deg, rgba(7, 11, 9, 0.95) 2%, rgba(7, 11, 9, 0.8) 34%, rgba(7, 11, 9, 0.52) 72%, rgba(7, 11, 9, 0.42) 100%), linear-gradient(180deg, rgba(7, 11, 9, 0.62) 0%, transparent 22%, transparent 68%, rgba(7, 11, 9, 0.66) 100%); }
.au-hero--bg .wrap { position: relative; z-index: 2; }
.au-hero-copy { max-width: 640px; }
.au-hero--bg + section { margin-top: -44px; position: relative; z-index: 2; }
@media (max-width: 880px) { .blog-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) { .blog-sec { border-radius: 28px; } }

/* ============ ARTIKEL (Blog-Detail) ============ */
.article-hero { position: relative; background: var(--ink); padding: clamp(122px, 16vh, 186px) 0 clamp(44px, 6vw, 76px); overflow: clip; }
.article-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 60% at 78% 0%, rgba(127, 164, 148, 0.12), transparent 62%); }
.article-hero .wrap { position: relative; max-width: 840px; }
.article-back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 22px; }
.article-back:hover { color: var(--sage-bright); }
.article-hero h1 { font-size: clamp(2rem, 4.3vw, 3.1rem); letter-spacing: -0.03em; line-height: 1.1; max-width: 20ch; margin-bottom: 22px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; font-size: 0.88rem; color: var(--txt-dark-soft); }
.article-meta .d { width: 4px; height: 4px; border-radius: 50%; background: var(--sage); }
.article-body { background: var(--light-bg); color: var(--light-text); border-radius: 40px 40px 0 0; }
.prose { max-width: 720px; margin-inline: auto; }
.prose .lead { font-size: clamp(1.1rem, 1.9vw, 1.3rem); color: var(--light-head); line-height: 1.6; margin-bottom: 36px; font-weight: 400; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--light-head); letter-spacing: -0.02em; line-height: 1.2; margin: 42px 0 14px; }
.prose p { font-size: 1.08rem; line-height: 1.75; color: var(--light-text); margin-bottom: 18px; }
.prose a { color: var(--sage-deep); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(88, 123, 112, 0.4); transition: text-decoration-color 0.25s ease; }
.prose a:hover { text-decoration-color: var(--sage-deep); }
.prose strong { color: var(--light-head); font-weight: 600; }
.prose blockquote { margin: 38px 0; padding: 28px 32px; border-left: 3px solid var(--sage); background: var(--light-bg-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-family: var(--ff-serif); font-style: italic; font-weight: 600; font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.42; color: var(--light-head); box-shadow: 0 24px 50px -36px rgba(15, 22, 19, 0.3); }
.prose ul { margin: 0 0 20px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.prose li { position: relative; padding-left: 28px; font-size: 1.06rem; line-height: 1.7; color: var(--light-text); }
.prose li::before { content: "\2713"; position: absolute; left: 0; top: 2px; width: 19px; height: 19px; border-radius: 50%; background: rgba(127, 164, 148, 0.14); border: 1px solid rgba(127, 164, 148, 0.3); color: var(--sage-deep); font-size: 0.66rem; display: grid; place-items: center; }
.prose-note { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(15, 22, 19, 0.1); font-size: 0.82rem; line-height: 1.6; color: var(--light-text); opacity: 0.7; }
@media (max-width: 540px) { .article-body { border-radius: 28px 28px 0 0; } }

/* ============ EDITORIAL SPLIT (Statement + gerahmtes Bild) ============ */
.es { background: var(--ink); padding: clamp(72px, 10vw, 128px) 0; overflow: clip; }
.es-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 78px); align-items: center; }
.es-copy h2 { font-size: clamp(1.95rem, 3.6vw, 3rem); letter-spacing: -0.028em; margin: 16px 0 18px; }
.es-copy p { color: var(--txt-dark-soft); font-size: clamp(1rem, 1.5vw, 1.12rem); line-height: 1.62; max-width: 48ch; }
.es-copy .btn { margin-top: 28px; }
.es-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3.3; border: 1px solid var(--line-dark); box-shadow: var(--shadow-img); }
.es-media img { width: 100%; height: 100%; object-fit: cover; }
.es-grid.media-left .es-media { order: -1; }
.es.light { background: var(--light-bg); }
.es.light .es-copy h2 { color: var(--light-head); }
.es.light .es-copy p { color: var(--light-text); }
.es.light .es-media { border-color: rgba(15, 22, 19, 0.08); box-shadow: 0 44px 80px -34px rgba(15, 22, 19, 0.38), 0 14px 26px -14px rgba(15, 22, 19, 0.26); }
@media (max-width: 820px) {
  .es-grid { grid-template-columns: 1fr; gap: 28px; }
  .es-grid .es-media, .es-grid.media-left .es-media { order: -1; aspect-ratio: 16 / 10; }
}

/* ============ FEATURE-REIHEN (Leistungen, alternierend editorial) ============ */
.feat { background: var(--ink); padding: clamp(80px, 11vw, 132px) 0; overflow: clip; }
.feat .sec-head { max-width: none; margin-left: auto; margin-right: auto; text-align: center; }
.feat .sec-head p { max-width: 720px; margin-left: auto; margin-right: auto; }
.feat-rows { display: flex; flex-direction: column; gap: clamp(56px, 8vw, 104px); margin-top: clamp(48px, 6vw, 78px); }
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 80px); align-items: center; }
.feat-row.media-left .feat-viz { order: -1; }
.feat-num { font-family: var(--ff-serif); font-style: italic; font-weight: 700; font-size: clamp(2rem, 3.2vw, 2.7rem); line-height: 1; background: linear-gradient(125deg, var(--sage-bright), var(--sage)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.feat-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: #fff; letter-spacing: -0.028em; margin: 12px 0 14px; line-height: 1.18; }
.feat-copy p { font-size: clamp(1rem, 1.4vw, 1.1rem); line-height: 1.62; color: var(--txt-dark-soft); max-width: 46ch; }
.feat-copy ul { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.feat-copy li { position: relative; padding-left: 26px; font-size: 0.96rem; line-height: 1.5; color: var(--txt-dark); }
.feat-copy li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--sage-bright); font-weight: 700; }

.spec { background: var(--glass-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: clamp(26px, 3vw, 36px); box-shadow: var(--shadow-img); }
.spec-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.spec-head .t { font-weight: 500; color: #fff; font-size: 0.95rem; }
.spec-badge { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-bright); background: rgba(127, 164, 148, 0.12); border: 1px solid rgba(127, 164, 148, 0.28); padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.spec-big { font-size: clamp(2.1rem, 3.8vw, 2.9rem); font-weight: 600; letter-spacing: -0.03em; color: var(--sage-bright); font-variant-numeric: tabular-nums; line-height: 1; }
.spec-big small { font-size: 0.32em; font-weight: 400; color: var(--txt-dark-soft); margin-left: 5px; letter-spacing: 0; }
.spec-sub { font-size: 0.86rem; color: var(--txt-dark-soft); margin-top: 7px; }
.spec-rows { margin-top: 20px; display: flex; flex-direction: column; gap: 11px; }
.spec-r { display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 0.92rem; color: var(--txt-dark); padding-bottom: 11px; border-bottom: 1px solid var(--line-dark); }
.spec-r:last-child { border-bottom: none; padding-bottom: 0; }
.spec-r span:last-child { color: var(--txt-dark-soft); text-align: right; }
.spec-r .chk { color: var(--sage-bright); font-weight: 700; }
.spec-bars { display: flex; align-items: flex-end; gap: 8px; height: 96px; margin-top: 18px; }
.spec-bars span { flex: 1; background: linear-gradient(180deg, var(--sage-bright), var(--sage-deep)); border-radius: 6px 6px 0 0; min-height: 6px; }
.spec-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; align-items: end; }
.spec-duo .bar { border-radius: 10px 10px 0 0; background: linear-gradient(180deg, rgba(127,164,148,0.35), rgba(127,164,148,0.12)); border: 1px solid var(--line-dark); }
.spec-duo .bar.lo { height: 66px; }
.spec-duo .bar.hi { height: 108px; background: linear-gradient(180deg, var(--sage-bright), var(--sage-deep)); border-color: transparent; }
.spec-duo .cap { grid-column: 1 / -1; display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--txt-dark-soft); margin-top: 2px; }
@media (max-width: 860px) {
  .feat-row, .feat-row.media-left { grid-template-columns: 1fr; gap: 26px; }
  .feat-row .feat-viz, .feat-row.media-left .feat-viz { order: 0; }
}

@media (max-width: 640px) {
  .sec { padding: 64px 0; }
  .proc { padding: 64px 0; }
  .hero .eyebrow { font-size: 0.72rem; padding: 7px 14px; }
  .hero-actions .btn { font-size: 0.95rem; padding: 13px 26px; }
  .hero-stat .lbl { font-size: 0.86rem; }
  .sec-head .eyebrow { margin-bottom: 18px; }
  .sec-head h2 { margin-bottom: 16px; }
  .statement .big { max-width: 24ch; }
  .way { padding: 40px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { inset: 0; }
  .rch-media img { transition: none; }
}

/* Mobil: Fallstudien als natives Swipe-Karussell (Pinning aus) */
@media (max-width: 767px){
  #cases-rail{overflow-x:auto;-webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory;scrollbar-width:none}
  #cases-rail::-webkit-scrollbar{display:none}
  #cases-track{transform:none !important}
  #cases-track > *{scroll-snap-align:center}
}

/* Feinschliff: Micro-Interactions (17.07.) */
.founder, .way, .ccard, .bcard, .tile {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.founder:hover, .bcard:hover, .tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(25, 25, 25, 0.12);
}
.way:hover { transform: translateY(-4px); }
.founder-photo img, .bcard img { transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.founder:hover .founder-photo img, .bcard:hover img { transform: scale(1.04); }
a:focus-visible, button:focus-visible { outline: 2px solid #7fa494; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .founder, .way, .ccard, .bcard, .tile, .founder-photo img, .bcard img { transition: none; }
  .founder:hover, .way:hover, .bcard:hover, .tile:hover { transform: none; }
}
