/* ============================================================
   LAKESIDE AIGENTS — Brand Design System
   "Vom See aus digital." — Wörthersee-Tiefe, Türkis-Licht,
   editoriale Typografie (Clash Display + Satoshi)
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Clash Display';
  src: url('../../fonts/ClashDisplay-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../../fonts/ClashDisplay-Semibold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../../fonts/ClashDisplay-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Seegrund — deep water darks */
  --deep: #060a0e;
  --deep-2: #0a1117;
  --deep-3: #0e1820;
  --panel: #101c25;
  --line: rgba(151, 211, 211, .14);
  --line-strong: rgba(151, 211, 211, .28);

  /* Wörthersee-Türkis */
  --tuerkis: #34d8c3;
  --tuerkis-soft: #7fe8da;
  --tuerkis-dim: rgba(52, 216, 195, .14);

  /* Abendlicht — warm accent */
  --gold: #f0b35e;
  --gold-dim: rgba(240, 179, 94, .14);

  /* Text */
  --ink: #eef6f4;
  --ink-soft: #aebfbe;
  --ink-faint: #76898a;

  --font-display: 'Clash Display', 'Satoshi', sans-serif;
  --font-body: 'Satoshi', -apple-system, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4.5rem, 10vw, 8.5rem);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--deep);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--tuerkis); color: var(--deep); }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0;
}
h4, h5 { font-family: var(--font-display); font-weight: 500; margin: 0; line-height: 1.25; }
p { margin: 0; }

.h1 { font-size: clamp(2.6rem, 6.5vw, 4.9rem); overflow-wrap: break-word; }
.h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
@media (max-width: 480px) {
  .h1 { font-size: 2.3rem; }
  .h2 { font-size: 1.75rem; }
}

.text-soft { color: var(--ink-soft); }
.text-faint { color: var(--ink-faint); }
.accent { color: var(--tuerkis); }
.accent-gold { color: var(--gold); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Grain overlay — subtle analog texture over everything */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ---------- Eyebrow / Kicker ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tuerkis);
  margin-bottom: 1.1rem;
}
.kicker--gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.7rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .98rem;
  border: 1px solid transparent;
  transition: transform .25s var(--ease-out), box-shadow .25s, background .25s, border-color .25s, color .25s;
  white-space: nowrap;
}
.btn svg { transition: transform .25s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--tuerkis);
  color: #04211c;
  box-shadow: 0 0 0 0 rgba(52, 216, 195, .35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px -8px rgba(52, 216, 195, .55);
}
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--tuerkis);
  color: var(--tuerkis);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--gold);
  color: #2b1a04;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px -8px rgba(240, 179, 94, .55);
}
.btn--lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6, 10, 14, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
/* Offenes Mobilmenü: backdrop-filter entfernen — er macht die Navbar zum
   containing block und bricht das position:fixed des Overlays */
.nav.is-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: .6rem;
  z-index: 102;
}
.nav__brand-mark {
  width: 34px; height: 34px; flex: none;
}
.nav__brand-img { height: 40px; width: auto; display: block; }
.footer__brand .nav__brand-img { height: 46px; }
.nav__brand span { color: var(--tuerkis); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  font-weight: 500;
  font-size: .98rem;
}
.nav__link { color: var(--ink-soft); transition: color .2s; position: relative; padding: .4rem 0; }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; border-radius: 2px;
  background: var(--tuerkis);
}
.nav__cta { display: flex; align-items: center; gap: .7rem; }
.nav__phone {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
}
.nav__phone:hover { color: var(--tuerkis); }

/* Dropdown (Branchen) */
.dropdown { position: relative; }
.dropdown__toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  background: none; border: 0; color: var(--ink-soft);
  font-weight: 500; font-size: .98rem; padding: .4rem 0;
  transition: color .2s;
}
.dropdown__toggle:hover, .dropdown.is-open .dropdown__toggle { color: var(--ink); }
.dropdown__toggle svg { transition: transform .25s var(--ease-out); }
.dropdown.is-open .dropdown__toggle svg { transform: rotate(180deg); }
.dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 560px;
  max-width: calc(100vw - 2rem);
  background: var(--deep-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .15rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, transform .25s var(--ease-out), visibility .25s;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .7);
}
.dropdown.is-open .dropdown__menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown__item {
  padding: .55rem .7rem;
  border-radius: var(--radius-sm);
  transition: background .2s;
  display: flex;
  gap: .7rem;
  align-items: center;
}
.dropdown__item:hover { background: var(--tuerkis-dim); }
.dropdown__ico {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--tuerkis-dim);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.dropdown__item strong {
  display: block; font-weight: 700; font-size: .95rem; color: var(--ink);
}
.dropdown__item small { color: var(--ink-faint); font-size: .82rem; }

/* Mobile nav */
.nav__burger {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  z-index: 102;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 10px; right: 10px;
  height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease-out), opacity .2s, top .3s;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 22px; }
.nav__burger span:nth-child(3) { top: 28px; }
.nav.is-open .nav__burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav__burger { display: block; }
  .nav__phone { display: none; }
  .nav__menu {
    position: fixed;
    inset: 0;
    background: var(--deep);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 5.5rem var(--gutter) 3rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: 101;
    overflow-y: auto;
  }
  .nav.is-open .nav__menu { opacity: 1; visibility: visible; }
  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: .9rem;
    font-size: 1.1rem;
    font-weight: 500;
  }
  .dropdown__toggle { font-size: 1.1rem; font-weight: 500; }
  .dropdown__menu {
    position: static;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    box-shadow: none;
    display: none;
    margin-top: .6rem;
  }
  .dropdown.is-open .dropdown__menu { display: grid; transform: none; }
  .nav__menu .nav__cta {
    margin-top: 2rem;
    flex-direction: column;
    align-items: stretch;
  }
  .nav__menu .nav__cta .btn { justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(8rem, 16vh, 11rem);
  padding-bottom: var(--section-pad);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: -1;
}
/* aurora over water */
.hero__bg::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  width: 1400px; height: 900px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 38% 42% at 32% 38%, rgba(52, 216, 195, .17), transparent 70%),
    radial-gradient(ellipse 30% 36% at 68% 30%, rgba(49, 92, 255, .13), transparent 70%),
    radial-gradient(ellipse 26% 30% at 56% 64%, rgba(240, 179, 94, .07), transparent 70%);
  filter: blur(10px);
}
/* waterline */
.hero__bg::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(to bottom, transparent, rgba(10, 22, 28, .75));
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem 1rem .45rem .6rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: rgba(16, 28, 37, .6);
  margin-bottom: 1.6rem;
}
.hero__badge .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--tuerkis-dim);
  display: grid; place-items: center;
  color: var(--tuerkis);
  font-size: .7rem;
}
.hero h1 { max-width: 16ch; }
.hero__sub {
  max-width: 52ch;
  margin-top: 1.6rem;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.4rem;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.6rem;
  margin-top: 3.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero__meta-item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.hero__meta-item span { color: var(--ink-faint); font-size: .9rem; }

/* ---------- Hero-Visual: schwebende Produkt-Karten ---------- */
.hero--visual { position: relative; }
.hero__visual {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  right: max(var(--gutter), calc((100vw - var(--container)) / 2));
  width: 420px;
  height: 580px;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1240px) { .hero__visual { display: none; } }
.hero--visual .hero__sub, .hero--visual h1 { position: relative; z-index: 2; }
.hero--visual .hero__meta { max-width: 620px; }

.float-card {
  position: absolute;
  background: linear-gradient(165deg, rgba(20, 34, 44, .96), rgba(12, 20, 27, .96));
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .75);
  animation: floaty 7s ease-in-out infinite alternate;
}
.float-card--chat { top: 14%; left: 0; width: 62%; z-index: 4; }
.float-card--rating { top: 0; right: 0; width: 36%; animation-delay: 2.2s; z-index: 5; }
.float-card--booking { top: 48%; right: 0; width: 54%; animation-delay: 1.6s; z-index: 3; }
.float-card--news { bottom: 4%; right: 0; width: 40%; animation-delay: 4s; z-index: 1; }
.float-card--chart { bottom: 2%; left: 0; width: 44%; animation-delay: 3.1s; z-index: 2; }
.float-pill {
  position: absolute;
  top: 2%; left: 0;
  z-index: 5;
  background: linear-gradient(165deg, rgba(20, 34, 44, .97), rgba(12, 20, 27, .97));
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: .55rem .95rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 20px 45px -16px rgba(0, 0, 0, .7);
  animation: floaty 7s ease-in-out infinite alternate;
  animation-delay: 5s;
}
.float-card__sub { font-size: .75rem; color: var(--ink-faint); margin-top: .3rem; }
.float-card--rating .float-card__line { color: var(--gold); letter-spacing: .12em; }
@keyframes floaty {
  from { transform: translateY(-9px); }
  to { transform: translateY(11px); }
}
@media (prefers-reduced-motion: reduce) { .float-card { animation: none; } }

.float-card__head {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: .7rem;
}
.float-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tuerkis);
  box-shadow: 0 0 0 3px rgba(52, 216, 195, .2);
}
.chat-bubble {
  font-size: .86rem;
  line-height: 1.45;
  padding: .55rem .8rem;
  border-radius: 12px;
  margin-top: .45rem;
  max-width: 95%;
}
.chat-bubble--in {
  background: rgba(151, 211, 211, .1);
  color: var(--ink-soft);
  border-bottom-left-radius: 4px;
}
.chat-bubble--out {
  background: var(--tuerkis);
  color: #04211c;
  font-weight: 500;
  border-bottom-right-radius: 4px;
  margin-left: auto;
}
.float-card__line {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
}
.float-badge {
  display: inline-block;
  margin-top: .6rem;
  font-size: .75rem;
  font-weight: 700;
  color: #7ee2a8;
  background: rgba(60, 180, 110, .14);
  border-radius: 100px;
  padding: .25rem .65rem;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 58px;
}
.chart-bars i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(52, 216, 195, .25), var(--tuerkis));
}
.chart-bars i:last-child { background: linear-gradient(to top, rgba(240, 179, 94, .3), var(--gold)); }

/* Ripple rings — concentric circles, the brand signature */
.ripples {
  position: absolute;
  pointer-events: none;
}
.ripples circle {
  fill: none;
  stroke: var(--tuerkis);
  opacity: .12;
}
.ripples--animated circle {
  transform-origin: center;
  animation: ripple-pulse 7s var(--ease-out) infinite;
}
.ripples--animated circle:nth-child(2) { animation-delay: 1.4s; }
.ripples--animated circle:nth-child(3) { animation-delay: 2.8s; }
.ripples--animated circle:nth-child(4) { animation-delay: 4.2s; }
@keyframes ripple-pulse {
  0% { transform: scale(.6); opacity: .3; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* ---------- Marquee (Leistungs-Laufband) ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
  background: var(--deep-2);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee__item::after {
  content: '◆';
  color: var(--tuerkis);
  font-size: .55rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: var(--section-pad) 0; position: relative; }
.section--compact { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--panel {
  background: var(--deep-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .kicker { justify-content: center; }
.section__head .h2 + p, .section__head .h1 + p {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* ---------- Cards: Leistungen / Bausteine ---------- */
.grid {
  display: grid;
  gap: 1.1rem;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ---------- Einstiegspfade & Produktbeweise ---------- */
.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.path-card,
.case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(16, 28, 37, .94), rgba(10, 17, 23, .98));
  transition: transform .28s var(--ease-out), border-color .28s, box-shadow .28s;
}
.path-card:hover,
.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 54px -34px rgba(52, 216, 195, .55);
}
.path-card__media,
.case-card > img,
.product-showcase figure,
.proof-panel__media {
  background: radial-gradient(circle at 22% 0%, rgba(52, 216, 195, .18), transparent 38%), var(--deep-3);
}
.path-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.path-card__media img,
.case-card > img,
.proof-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.path-card__body,
.case-card__body { padding: 1.35rem; }
.path-card__eyebrow,
.case-card__body > span {
  display: block;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.path-card h3,
.case-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0;
}
.path-card p,
.case-card p {
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.55;
  margin-top: .75rem;
}
.path-card__link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--tuerkis);
  font-weight: 700;
  font-size: .94rem;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.case-card > img {
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
}
.case-card dl {
  display: grid;
  gap: .7rem;
  margin: 1.1rem 0 0;
}
.case-card dt {
  color: var(--tuerkis);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.case-card dd {
  color: var(--ink-soft);
  margin: .15rem 0 0;
  font-size: .92rem;
  line-height: 1.45;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.trust-strip div {
  padding: 1.25rem;
  background: rgba(10, 17, 23, .88);
}
.trust-strip strong,
.trust-strip span { display: block; }
.trust-strip strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.trust-strip span {
  color: var(--ink-soft);
  margin-top: .35rem;
  font-size: .94rem;
  line-height: 1.45;
}
.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  max-width: 820px;
  margin-top: 2.2rem;
}
.product-showcase figure {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.product-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-showcase figcaption {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(6, 10, 14, .76);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
}
.section--proof {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background: linear-gradient(180deg, rgba(6, 10, 14, .08), rgba(16, 28, 37, .42));
}
.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(16, 28, 37, .92), rgba(10, 17, 23, .98));
}
.proof-panel__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid var(--line);
}
.proof-panel__body p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: 1rem;
}
.proof-panel__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin: 1.4rem 0;
}
.proof-panel__facts span {
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: rgba(52, 216, 195, .07);
  font-weight: 700;
  line-height: 1.35;
}
@media (max-width: 980px) {
  .path-grid,
  .case-grid,
  .trust-strip,
  .product-showcase,
  .proof-panel,
  .proof-panel__facts {
    grid-template-columns: 1fr;
  }
  .product-showcase { max-width: 560px; }
}

.card {
  background: linear-gradient(160deg, var(--panel), var(--deep-2) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .8);
}
.card__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--tuerkis-dim);
  color: var(--tuerkis);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
}
.card__icon--gold { background: var(--gold-dim); color: var(--gold); }
.card h3, .card h4 { font-size: 1.18rem; font-weight: 600; margin-bottom: .55rem; }
.card p { color: var(--ink-soft); font-size: .96rem; }
.card__price {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--tuerkis);
  font-size: 1.02rem;
}
.card__price small { color: var(--ink-faint); font-family: var(--font-body); font-weight: 400; }

/* ---------- Pakete ---------- */
.pakete {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}
@media (max-width: 980px) { .pakete { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.paket {
  position: relative;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 2.2rem 1.9rem;
  background: linear-gradient(170deg, var(--panel), var(--deep-2) 75%);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.paket:hover { transform: translateY(-6px); }
.paket--featured {
  border-color: rgba(52, 216, 195, .45);
  background:
    linear-gradient(170deg, rgba(52, 216, 195, .09), transparent 45%),
    linear-gradient(170deg, var(--panel), var(--deep-2) 75%);
  box-shadow: 0 30px 80px -30px rgba(52, 216, 195, .25);
}
.paket__num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  margin-bottom: 1.2rem;
}
.paket--featured .paket__num { -webkit-text-stroke: 1px rgba(52, 216, 195, .55); }
.paket__flag {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--tuerkis);
  padding: .32rem .75rem;
  border-radius: 100px;
}
.paket h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.paket__tagline { color: var(--ink-soft); font-size: .95rem; min-height: 3em; }
.paket__price {
  margin: 1.4rem 0 .2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--ink);
}
.paket__price small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .88rem;
  color: var(--ink-faint);
  margin-top: .25rem;
}
.paket__list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .7rem;
  flex: 1;
}
.paket__list li {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--ink-soft);
}
.paket__list li.is-plus { color: var(--ink); font-weight: 500; }
.paket__list .tick {
  flex: none;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--tuerkis-dim);
  color: var(--tuerkis);
  display: grid;
  place-items: center;
  margin-top: .15rem;
}
.paket__list .tick svg { width: 10px; height: 10px; }
.paket .btn { justify-content: center; }

/* ---------- Branchen-Grid ---------- */
.branchen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
@media (max-width: 980px) { .branchen { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .branchen { grid-template-columns: 1fr; } }

.branche {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  background: var(--deep-2);
  overflow: hidden;
  transition: transform .3s var(--ease-out), border-color .3s;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  min-height: 168px;
}
.branche::before {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  right: -80px; bottom: -80px;
  border-radius: 50%;
  border: 1px solid var(--tuerkis);
  opacity: .12;
  transition: transform .5s var(--ease-out), opacity .4s;
}
.branche::after {
  content: '';
  position: absolute;
  width: 130px; height: 130px;
  right: -35px; bottom: -35px;
  border-radius: 50%;
  border: 1px solid var(--tuerkis);
  opacity: .16;
  transition: transform .5s var(--ease-out) .06s, opacity .4s;
}
.branche:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.branche:hover::before { transform: scale(1.22); opacity: .3; }
.branche:hover::after { transform: scale(1.32); opacity: .35; }
.branche__emoji { font-size: 1.6rem; line-height: 1; }
.branche h3 { font-size: 1.15rem; font-weight: 600; }
.branche p { color: var(--ink-faint); font-size: .88rem; flex: 1; }
.branche__link {
  font-weight: 700;
  font-size: .9rem;
  color: var(--tuerkis);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .4rem;
}
.branche__link svg { transition: transform .25s var(--ease-out); }
.branche:hover .branche__link svg { transform: translateX(4px); }

/* ---------- Schritte (Ablauf) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }
.step {
  position: relative;
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--panel), var(--deep-2) 80%);
}
.step__num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--tuerkis);
  opacity: .8;
  margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.step p { color: var(--ink-soft); font-size: .96rem; }
.step__tag {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Splits (Text + Visual) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.split__visual img { width: 100%; height: 100%; object-fit: cover; }

/* checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: .85rem;
}
.checklist li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: var(--ink-soft);
}
.checklist .tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--tuerkis-dim);
  color: var(--tuerkis);
  display: grid;
  place-items: center;
  margin-top: .12rem;
}
.checklist .tick svg { width: 11px; height: 11px; }
.checklist strong { color: var(--ink); }

/* ---------- FAQ Accordion ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.13rem;
  text-align: left;
  padding: 1.35rem 2.6rem 1.35rem .2rem;
  position: relative;
  transition: color .2s;
}
.faq__q:hover { color: var(--tuerkis); }
.faq__q::after {
  content: '+';
  position: absolute;
  right: .4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--tuerkis);
  transition: transform .3s var(--ease-out);
}
.faq__item.is-open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.faq__a-inner {
  padding: 0 .2rem 1.5rem;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* ---------- CTA Band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--line-strong);
  padding: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center;
  background:
    radial-gradient(ellipse 60% 90% at 50% 110%, rgba(52, 216, 195, .18), transparent 70%),
    linear-gradient(170deg, var(--panel), var(--deep-2));
}
.cta-band .h2 { max-width: 22ch; margin: 0 auto; }
.cta-band p { color: var(--ink-soft); margin: 1.1rem auto 0; max-width: 50ch; }
.cta-band .btn { margin-top: 2rem; }
.cta-band__ripples {
  position: absolute;
  left: 50%; bottom: -340px;
  transform: translateX(-50%);
  width: 680px; height: 680px;
  opacity: .55;
  pointer-events: none;
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 1rem;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.form label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-soft);
  display: block;
  margin-bottom: .4rem;
}
.form input, .form textarea, .form select {
  width: 100%;
  background: var(--deep-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
  padding: .85rem 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--tuerkis);
  box-shadow: 0 0 0 3px rgba(52, 216, 195, .15);
}
.form textarea { resize: vertical; min-height: 130px; }
.form__consent {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--ink-faint);
}
.form__consent input { width: auto; margin-top: .25rem; }
.form__consent a { color: var(--tuerkis); text-decoration: underline; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--deep-2);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand p { color: var(--ink-faint); font-size: .92rem; max-width: 34ch; margin-top: .9rem; }
.footer h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-family: var(--font-body);
  margin-bottom: 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer ul a { color: var(--ink-soft); font-size: .95rem; transition: color .2s; }
.footer ul a:hover { color: var(--tuerkis); }
.footer__social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: color .2s, border-color .2s, transform .25s var(--ease-out);
}
.footer__social a:hover {
  color: var(--tuerkis);
  border-color: var(--tuerkis);
  transform: translateY(-3px);
}
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: var(--ink-faint);
}
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a { transition: color .2s; }
.footer__legal a:hover { color: var(--ink); }

/* ---------- Legal prose ---------- */
.prose {
  max-width: 800px;
  margin: 0 auto;
}
.prose h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-bottom: 2rem; }
.prose h2 {
  font-size: 1.45rem;
  margin: 2.6rem 0 .8rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}
.prose h3 { font-size: 1.15rem; margin: 1.8rem 0 .6rem; }
.prose p, .prose li { color: var(--ink-soft); margin: .55rem 0; }
.prose strong { color: var(--ink); }
.prose a { color: var(--tuerkis); text-decoration: underline; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose em { color: var(--ink-faint); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .4s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .56s; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: .64s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .marquee__track, .ripples--animated circle { animation: none; }
  html { scroll-behavior: auto; }
}

/* Hero load-in */
.hero .load-in { opacity: 0; animation: load-in .9s var(--ease-out) forwards; }
.hero .load-in:nth-child(2) { animation-delay: .12s; }
.hero .load-in:nth-child(3) { animation-delay: .24s; }
.hero .load-in:nth-child(4) { animation-delay: .36s; }
.hero .load-in:nth-child(5) { animation-delay: .48s; }
@keyframes load-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero .load-in { animation: none; opacity: 1; }
}

/* ---------- Mobil: kompaktere Sektionen + "Mehr anzeigen" ---------- */
@media (max-width: 760px) {
  :root { --section-pad: 3.2rem; }
  [data-collapsed] > *:nth-child(n+4) { display: none !important; }
}
.show-more {
  display: flex;
  width: fit-content;
  margin: 1.3rem auto 0;
}
@media (min-width: 761px) { .show-more { display: none; } }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.note {
  font-size: .88rem;
  color: var(--ink-faint);
  max-width: 62ch;
}
.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
.badge {
  font-size: .8rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
}
.badge--accent { border-color: rgba(52,216,195,.4); color: var(--tuerkis); }

/* ---------- Orbital-Field (Referenzprojekte, "Warum Lakeside") ---------- */
.orbital {
  position: relative;
  width: min(86vw, 470px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  z-index: 4;
}
.orbital-field { position: absolute; inset: 0; }
.orbital-guide {
  position: absolute; top: 50%; left: 50%;
  width: 68%; height: 68%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--line);
  pointer-events: none;
}
.orbital-guide.g2 { width: 96%; height: 96%; opacity: .55; }
.orbital-core {
  position: absolute; top: 50%; left: 50%;
  width: 64px; height: 64px;
  transform: translate(-50%, -50%);
  display: grid; place-items: center;
  z-index: 6; pointer-events: none;
}
.orbital-core .core-dot {
  width: 22px; height: 22px; border-radius: 50%;
  position: relative; z-index: 2;
  background: var(--tuerkis);
  box-shadow: 0 0 28px rgba(52, 216, 195, .65), 0 0 0 5px var(--tuerkis-dim);
}
.orbital-core .ping {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1px solid rgba(52,216,195,.5);
  transform: translate(-50%, -50%);
  animation: orbPing 3.2s ease-out infinite;
}
.orbital-core .ping.p2 { animation-delay: 1.6s; }
@keyframes orbPing {
  0%   { width: 30px; height: 30px; opacity: .7; }
  100% { width: 110px; height: 110px; opacity: 0; }
}
.orbital-node {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  cursor: pointer;
}
.orbital-field.snap .orbital-node {
  transition: transform .7s var(--ease-out), opacity .5s ease;
}
.orbital-node .nd-dot {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--panel); color: var(--ink);
  border: 1.5px solid var(--line-strong);
  transition: transform .3s, background .3s, color .3s, border-color .3s, box-shadow .3s;
  position: relative; z-index: 2;
}
.orbital-node .nd-dot svg { width: 19px; height: 19px; }
.orbital-node.is-project .nd-dot { border-color: transparent; background: var(--deep); }
.orbital-node .nd-ring {
  position: absolute; inset: -4px;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 140deg, var(--ring-a, #7fe8da), var(--ring-b, #34d8c3), var(--ring-c, #f0b35e), var(--ring-b, #34d8c3), var(--ring-a, #7fe8da));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  box-shadow: 0 0 12px var(--ring-glow, rgba(52,216,195,.45));
}
.orbital-node.is-project .nd-dot { color: var(--ring-b, var(--tuerkis)); }
.orbital-node.is-project.active .nd-dot { color: var(--deep); background: var(--ring-b, var(--tuerkis)); border-color: var(--ring-b, var(--tuerkis)); }
.orbital-node .nd-glow {
  position: absolute; top: 50%; left: 50%;
  width: 78px; height: 78px;
  transform: translate(-50%, -50%);
  border-radius: 50%; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(52,216,195,.3) 0%, rgba(52,216,195,0) 70%);
}
.orbital-node.pulsing .nd-glow { animation: ndPulse 1.6s ease-in-out infinite; }
@keyframes ndPulse { 0%,100% { opacity: .25; } 50% { opacity: .9; } }
.orbital-node .nd-label {
  position: absolute; top: 52px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-size: 11px; font-weight: 600; letter-spacing: .01em;
  color: var(--ink-faint); pointer-events: none;
  transition: color .3s, transform .3s;
}
.orbital-node:hover .nd-dot { border-color: var(--tuerkis); box-shadow: 0 6px 20px rgba(52,216,195,.3); }
.orbital-node:hover .nd-label { color: var(--ink); }
.orbital-node.related .nd-dot {
  background: var(--tuerkis-dim); border-color: var(--tuerkis); color: var(--ink);
  animation: relBlink 1.5s ease-in-out infinite;
}
@keyframes relBlink {
  0%,100% { box-shadow: 0 0 0 0 rgba(52,216,195,.45); }
  50%     { box-shadow: 0 0 0 7px rgba(52,216,195,0); }
}
.orbital-node.active .nd-dot {
  background: var(--tuerkis); color: var(--deep); border-color: var(--tuerkis);
  transform: scale(1.32); box-shadow: 0 10px 32px rgba(52,216,195,.5);
}
.orbital-node.active .nd-label {
  color: var(--ink); font-weight: 700;
  transform: translateX(-50%) translateY(8px) scale(1.08);
}
.orbital-card {
  position: absolute; top: 76px; left: 50%; transform: translateX(-50%);
  width: 252px;
  background: rgba(16, 28, 37, .92);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-top: 2px solid var(--ring-b, var(--tuerkis)); border-radius: 16px;
  padding: 16px; text-align: left; z-index: 70;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  animation: cardIn .3s ease;
  cursor: default;
}
@keyframes cardIn { from { opacity: 0; transform: translateX(-50%) translateY(-6px); } to { opacity: 1; } }
.orbital-card::before {
  content: ''; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); width: 1px; height: 12px; background: var(--ring-b, var(--tuerkis));
}
.oc-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.oc-badge { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 8px; border-radius: 999px; border: 1px solid; white-space: nowrap; }
.oc-badge.completed { background: var(--ring-b, var(--tuerkis)); color: var(--deep); border-color: var(--ring-b, var(--tuerkis)); }
.oc-badge.progress { background: transparent; color: var(--ring-b, var(--tuerkis)); border-color: var(--ring-b, var(--tuerkis)); }
.oc-badge.pending { background: transparent; color: var(--ink-faint); border-color: var(--line); }
.oc-date { font-size: 10px; color: var(--ink-faint); }
.oc-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -.02em; margin-top: 11px; display: flex; align-items: center; gap: 7px; }
.oc-tip { display: inline-flex; color: var(--ring-b, var(--tuerkis)); }
.oc-thumb { position: relative; margin-top: 12px; border-radius: 11px; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid var(--line); background: var(--deep); }
.oc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.oc-thumb:hover img { transform: scale(1.05); }
.oc-kind { position: absolute; top: 8px; left: 8px; font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; padding: 4px 8px; border-radius: 999px; background: var(--ring-b, var(--tuerkis)); color: var(--deep); font-weight: 700; }
.oc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 11px; }
.oc-tags span { font-size: 10.5px; padding: 4px 9px; border-radius: 999px; background: var(--tuerkis-dim); border: 1px solid var(--line); color: var(--ink); white-space: nowrap; }
.oc-content { font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; margin-top: 8px; }
.oc-rel { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.oc-rel .rels { display: flex; flex-wrap: wrap; gap: 6px; }
.orbital-hint {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-faint); pointer-events: none;
  transition: opacity .3s; white-space: nowrap;
}
@media (max-width: 600px) {
  .orbital { width: 92vw; margin: 0 auto; }
  .orbital-card { width: 220px; }
  .orbital-node .nd-dot { width: 40px; height: 40px; }
  .orbital-hint { display: none; }
}

/* ============================================================
   Heller Modus — Token-Overrides + gezielte Komponenten-Fixes
   ============================================================ */
:root[data-theme="light"] {
  --deep: #f2f6f5;
  --deep-2: #e9efee;
  --deep-3: #ffffff;
  --panel: #ffffff;
  --line: rgba(14, 42, 40, .12);
  --line-strong: rgba(14, 42, 40, .26);
  --tuerkis: #0ca893;
  --tuerkis-soft: #087568;
  --tuerkis-dim: rgba(12, 168, 147, .12);
  --gold: #8f5a08;
  --gold-dim: rgba(143, 90, 8, .12);
  --ink: #0f211f;
  --ink-soft: #43605c;
  --ink-faint: #6d8682;
}
:root[data-theme="light"] body::after { opacity: .03; }
:root[data-theme="light"] .nav.is-scrolled {
  background: rgba(242, 246, 245, .85);
}
:root[data-theme="light"] .hero__bg::before { opacity: .7; }
:root[data-theme="light"] .hero__badge {
  background: rgba(255, 255, 255, .65);
  color: var(--ink-soft);
}
:root[data-theme="light"] .hero__bg::after {
  background: linear-gradient(to bottom, transparent, rgba(222, 234, 232, .8));
}
:root[data-theme="light"] .float-card,
:root[data-theme="light"] .float-pill {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 50px -22px rgba(14, 42, 40, .35);
}
:root[data-theme="light"] .chat-bubble--in { background: rgba(14, 42, 40, .07); }
:root[data-theme="light"] .chat-bubble--out { color: #ffffff; }
:root[data-theme="light"] .btn--primary { color: #ffffff; }
:root[data-theme="light"] .btn--primary:hover { box-shadow: 0 10px 30px -8px rgba(12, 168, 147, .5); }
:root[data-theme="light"] .card:hover,
:root[data-theme="light"] .paket:hover { box-shadow: 0 20px 44px -24px rgba(14, 42, 40, .3); }
:root[data-theme="light"] .paket--featured { box-shadow: 0 26px 60px -30px rgba(12, 168, 147, .35); }
:root[data-theme="light"] .path-card,
:root[data-theme="light"] .case-card,
:root[data-theme="light"] .proof-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(233, 239, 238, .98));
  box-shadow: 0 18px 46px -34px rgba(14, 42, 40, .45);
}
:root[data-theme="light"] .path-card:hover,
:root[data-theme="light"] .case-card:hover {
  box-shadow: 0 24px 54px -30px rgba(12, 168, 147, .36);
}
:root[data-theme="light"] .path-card__media,
:root[data-theme="light"] .case-card > img,
:root[data-theme="light"] .product-showcase figure,
:root[data-theme="light"] .proof-panel__media {
  background: radial-gradient(circle at 22% 0%, rgba(12, 168, 147, .16), transparent 38%), #ffffff;
}
:root[data-theme="light"] .path-card h3,
:root[data-theme="light"] .case-card h3,
:root[data-theme="light"] .proof-panel .h2,
:root[data-theme="light"] .trust-strip strong {
  color: var(--ink);
}
:root[data-theme="light"] .path-card p,
:root[data-theme="light"] .case-card p,
:root[data-theme="light"] .case-card dd,
:root[data-theme="light"] .proof-panel__body p,
:root[data-theme="light"] .trust-strip span {
  color: var(--ink-soft);
}
:root[data-theme="light"] .case-card dt,
:root[data-theme="light"] .path-card__link {
  color: var(--tuerkis-soft);
}
:root[data-theme="light"] .trust-strip {
  background: rgba(14, 42, 40, .14);
  box-shadow: 0 18px 46px -34px rgba(14, 42, 40, .42);
}
:root[data-theme="light"] .trust-strip div {
  background: rgba(255, 255, 255, .96);
}
:root[data-theme="light"] .proof-panel__facts span {
  color: var(--ink);
  background: rgba(12, 168, 147, .08);
}
:root[data-theme="light"] .section--proof {
  background: linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(222, 234, 232, .72));
}
:root[data-theme="light"] .product-showcase figcaption {
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  box-shadow: 0 8px 24px -16px rgba(14, 42, 40, .55);
}
:root[data-theme="light"] .orbital-card {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 60px rgba(14, 42, 40, .25);
}
:root[data-theme="light"] .orbital-node.is-project .nd-dot { background: #ffffff; }
:root[data-theme="light"] .orbital-node.active .nd-dot { color: #ffffff; }
:root[data-theme="light"] .oc-badge.completed,
:root[data-theme="light"] .oc-kind { color: #ffffff; }
:root[data-theme="light"] .dropdown__menu,
:root[data-theme="light"] .cta-band { box-shadow: 0 24px 60px -24px rgba(14, 42, 40, .25); }
:root[data-theme="light"] ::selection { color: #ffffff; }

/* Theme-Umschalter */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  flex: none;
  transition: color .2s, border-color .2s, transform .25s var(--ease-out);
  z-index: 102;
}
.theme-toggle:hover { color: var(--tuerkis); border-color: var(--tuerkis); transform: rotate(15deg); }
@media (max-width: 980px) {
  /* Mobil: Umschalter rechts, direkt links neben dem Menü-Button */
  .theme-toggle { margin-left: auto; }
}
.theme-toggle .ico-sun { display: none; }
.theme-toggle .ico-moon { display: block; }
:root[data-theme="light"] .theme-toggle .ico-sun { display: block; }
:root[data-theme="light"] .theme-toggle .ico-moon { display: none; }

/* ---------- Cookie-Banner (nach frink-mode-Muster) ---------- */
.ck {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 240;
  width: min(420px, calc(100vw - 36px));
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  padding: 24px 24px 18px;
  transform: translateY(calc(100% + 40px));
  pointer-events: none;
  transition: transform .75s cubic-bezier(.19, 1, .22, 1);
}
.ck.show { transform: none; pointer-events: auto; }
.ck-title { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 8px; }
.ck .ck-txt { font-size: .85rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 14px; }
.ck-opts {
  display: flex; flex-direction: column; gap: 12px;
  max-height: 0; opacity: 0; overflow: hidden;
  margin-bottom: 0; padding: 0;
  border-top: 1px solid transparent; border-bottom: 1px solid transparent;
  transition: max-height .55s cubic-bezier(.76, 0, .24, 1), opacity .4s ease, padding .45s ease, margin .45s ease, border-color .45s ease;
}
.ck.open .ck-opts { max-height: 280px; opacity: 1; margin-bottom: 14px; padding: 13px 0; border-color: var(--line); }
.ck-opt { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; }
.ck-opt input { margin-top: 3px; accent-color: var(--tuerkis); flex: none; }
.ck-opt span { display: flex; flex-direction: column; gap: 2px; }
.ck-opt b { font-size: .82rem; font-weight: 700; }
.ck-opt small { font-size: .73rem; line-height: 1.5; color: var(--ink-faint); }
.ck-act { display: flex; flex-wrap: nowrap; gap: 8px; align-items: center; }
.ck-act button {
  border: 0; cursor: pointer;
  font: inherit; font-weight: 700; font-size: .82rem;
  padding: .75rem .5rem;
  flex: 1 1 0; min-width: 0; white-space: nowrap;
  border-radius: 100px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s, color .2s;
}
.ck-act .ck-all { background: var(--tuerkis); color: #04211c; }
:root[data-theme="light"] .ck-act .ck-all { color: #ffffff; }
.ck-act .ck-all:hover { transform: translateY(-1px); box-shadow: 0 8px 22px -8px rgba(52, 216, 195, .5); }
.ck-act .ck-set { background: transparent; border: 1px solid var(--line-strong); color: var(--ink); }
.ck-act .ck-set:hover { border-color: var(--tuerkis); color: var(--tuerkis); }
.ck-links { font-size: .73rem; color: var(--ink-faint); margin-top: 11px; text-align: center; }
.ck-links a { color: var(--ink-faint); text-decoration: underline; text-underline-offset: 2px; }
.ck-links a:hover { color: var(--tuerkis); }
@media (max-width: 520px) { .ck { left: 10px; right: 10px; width: auto; padding: 20px 18px 14px; } }
