/* ====================================================================
   NBIC – Nisanthan Sivarajah BI Consulting
   Redesign 2026 · Dark Premium Look
   ==================================================================== */

:root {
  /* Backgrounds */
  --bg:        #070908;
  --bg-elev:   #0b0e0c;
  --bg-card:   #0e1210;
  --bg-card-2: #131815;

  /* Lines */
  --border:        rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-green:  rgba(124, 224, 59, 0.22);

  /* Greens (Logo-Verlauf) */
  --green-dark:  #2f7d1e;
  --green:       #5cb82e;
  --green-light: #7ee03b;
  --green-pale:  #b6f09a;
  --green-grad:  linear-gradient(135deg, #5cb82e 0%, #7ee03b 55%, #b6f09a 100%);

  /* Text */
  --white:   #ffffff;
  --cream:   #f2f4ef;
  --muted:   #9ba39c;
  --muted-2: #6d746e;

  /* Type */
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --maxw: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: rgba(124, 224, 59, .3); color: var(--white); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  padding: 15px 30px; border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease,
              background .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--sm { padding: 12px 24px; font-size: .9rem; }
.btn--primary {
  background: var(--green-grad);
  color: #071008;
  box-shadow: 0 10px 30px rgba(124, 224, 59, 0.22), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(124, 224, 59, 0.35), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary::after {
  content: "→"; font-weight: 700; transition: transform .25s ease;
}
.btn--primary:hover::after { transform: translateX(4px); }
.btn--ghost {
  background: rgba(255,255,255,.03);
  color: var(--cream);
  border-color: var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--green-light); color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 9, 8, 0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo {
  height: 36px; width: 36px; object-fit: contain;
  background: #0c0f0d; border-radius: 10px; padding: 4px;
  border: 1px solid var(--border);
}
.nav__name {
  font-family: var(--font-head); font-weight: 700; letter-spacing: .06em;
  color: var(--white); font-size: 1.2rem;
}
.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  font-size: .92rem; font-weight: 500; color: var(--muted);
  padding: 9px 16px; border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav__link--active:not(.nav__link--cta) { color: var(--green-light); background: rgba(124,224,59,.08); }
.nav__link--cta {
  margin-left: 12px;
  color: #071008; font-weight: 700; font-family: var(--font-head);
  background: var(--green-grad);
  padding: 10px 22px;
  box-shadow: 0 6px 20px rgba(124,224,59,.2);
}
.nav__link--cta:hover { color: #071008; background: var(--green-grad); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(124,224,59,.32); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 10px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; }
.section--alt {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .24em;
  font-size: .72rem; font-weight: 700; color: var(--green-light); margin-bottom: 18px;
}
.section__eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--green-light); opacity: .6;
}
.section__title {
  font-family: var(--font-head); font-weight: 700; color: var(--cream);
  font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.08; letter-spacing: -0.02em;
  text-wrap: balance;
}
.section__text { color: var(--muted); margin-top: 20px; font-size: 1.05rem; }
.section__text--center { max-width: 640px; margin-left: auto; margin-right: auto; }
.section__text strong { color: var(--cream); font-weight: 600; }

.grad-text {
  background: var(--green-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 72px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 30%, transparent 75%);
}
.hero__glow {
  position: absolute; top: -320px; left: 50%; transform: translateX(-58%);
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 184, 46, 0.14), transparent 62%);
  pointer-events: none; filter: blur(30px);
}
.hero__glow--bottom { top: auto; bottom: -320px; transform: translateX(-50%); }
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: 64px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; color: var(--green-pale);
  background: rgba(124,224,59,.07);
  border: 1px solid var(--border-green);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 28px;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 0 rgba(124,224,59,.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(124,224,59,.45); }
  70%  { box-shadow: 0 0 0 9px rgba(124,224,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,224,59,0); }
}
.hero__title {
  font-family: var(--font-head); font-weight: 700; color: var(--white);
  font-size: clamp(2.7rem, 5.6vw, 4.4rem); line-height: 1.04; letter-spacing: -0.03em;
  text-wrap: balance;
}
.hero__lead {
  margin-top: 26px; max-width: 520px; font-size: 1.14rem; line-height: 1.7;
  color: var(--muted);
}
.hero__lead strong { color: var(--cream); font-weight: 600; }
.hero__actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  margin-top: 56px;
  display: flex; gap: 0; flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.hero__stat { flex: 1; min-width: 130px; padding-right: 28px; }
.hero__stat + .hero__stat { padding-left: 28px; border-left: 1px solid var(--border); }
.hero__stat-num {
  font-family: var(--font-head); font-weight: 700; font-size: 1.9rem;
  color: var(--white); letter-spacing: -0.02em; line-height: 1.1;
}
.hero__stat-num em { font-style: normal; color: var(--green-light); }
.hero__stat-label { margin-top: 4px; font-size: .84rem; color: var(--muted-2); }

/* Hero: Dashboard-Visual */
.hero__visual { position: relative; }
.hero__visual::before {
  content: ""; position: absolute; inset: -12%; pointer-events: none;
  background: radial-gradient(circle at 60% 40%, rgba(124,224,59,.14), transparent 60%);
  filter: blur(24px);
}
.window {
  position: relative;
  background: linear-gradient(170deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 60px rgba(124,224,59,.06);
  backdrop-filter: blur(8px);
}
.hero__visual .window {
  transform: perspective(1400px) rotateY(-7deg) rotateX(3deg);
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.hero__visual:hover .window { transform: perspective(1400px) rotateY(0) rotateX(0); }
.window__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.window__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.14); }
.window__dot:first-child { background: rgba(124,224,59,.55); }
.window__url {
  margin-left: 10px; font-size: .72rem; color: var(--muted-2);
  font-family: var(--font-head); letter-spacing: .06em;
}
.window img { width: 100%; height: auto; }
.hero__chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .8rem; font-weight: 700; color: var(--cream);
  background: rgba(14, 18, 16, .88);
  border: 1px solid var(--border-green);
  padding: 10px 16px; border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
  animation: float 5.5s ease-in-out infinite;
}
.hero__chip svg { width: 15px; height: 15px; color: var(--green-light); }
.hero__chip--1 { top: 12%; left: -26px; }
.hero__chip--2 { bottom: 14%; right: -18px; animation-delay: -2.7s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ---------- Logo-Leiste (Stationen) ---------- */
.logostrip { padding: 44px 0 56px; border-top: 1px solid var(--border); }
.logostrip__label {
  text-align: center; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em; color: var(--muted-2);
  margin-bottom: 28px; font-family: var(--font-head);
}
.logostrip__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 16px 18px;
}
.logostrip__item {
  display: grid; place-items: center;
  background: #eceae3;
  border-radius: 14px;
  padding: 14px 26px; min-height: 62px;
  opacity: .82;
  transition: opacity .25s ease, transform .25s ease;
}
.logostrip__item:hover { opacity: 1; transform: translateY(-3px); }
.logostrip__item img { max-height: 30px; max-width: 118px; width: auto; object-fit: contain; }
.logostrip__item img.logostrip__img--mark { max-height: 40px; }

/* Text-Variante, bis die Logo-Freigaben vorliegen */
.logostrip__item--text {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border-strong);
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream); white-space: nowrap;
  opacity: .75;
}
.logostrip__item--text:hover { opacity: 1; border-color: var(--border-green); transform: translateY(-3px); }

/* ---------- About ---------- */
.about__cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.about__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.about__fact {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  transition: border-color .25s ease, transform .25s ease;
}
.about__fact:hover { border-color: var(--border-green); transform: translateY(-3px); }
.about__fact--wide { grid-column: 1 / -1; }
.about__num {
  font-family: var(--font-head); font-weight: 700; font-size: 2rem;
  letter-spacing: -0.02em; line-height: 1.1;
  background: var(--green-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__fact p { margin-top: 8px; font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* ---------- Bento-Cards (Leistungen) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s ease, box-shadow .3s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, -20%),
              rgba(124,224,59,.09), transparent 65%);
  opacity: 0; transition: opacity .35s ease;
}
.card:hover::before { opacity: 1; }
.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-green);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.card--wide { grid-column: span 2; }
.card__icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 14px; margin-bottom: 22px;
  background: rgba(124, 224, 59, 0.09);
  border: 1px solid var(--border-green);
  color: var(--green-light);
}
.card__icon svg { width: 26px; height: 26px; }
.card__title {
  font-family: var(--font-head); font-weight: 700; color: var(--cream);
  font-size: 1.25rem; line-height: 1.3; letter-spacing: -0.01em;
}
.card__text { margin-top: 8px; font-size: .95rem; color: var(--muted); }
.card__list { margin-top: 20px; display: grid; gap: 11px; }
.card--wide .card__list { grid-template-columns: 1fr 1fr; gap: 11px 28px; }
.card__list li {
  position: relative; padding-left: 24px; font-size: .92rem; color: var(--muted); line-height: 1.55;
}
.card__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green-light); font-weight: 700; font-size: .85rem;
}
.card__list strong { color: var(--green-pale); font-weight: 600; }
.card--cta {
  grid-column: span 3;
  flex-direction: row; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  background: linear-gradient(120deg, rgba(124,224,59,.10), var(--bg-card) 55%);
  border-color: var(--border-green);
}
.card--cta .card__text { margin-top: 6px; max-width: 560px; }

/* ---------- Use Cases ---------- */
.usecases { display: grid; gap: 26px; }
.usecase {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s ease, box-shadow .3s ease;
}
.usecase:hover {
  transform: translateY(-4px);
  border-color: var(--border-green);
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.usecase--reverse .usecase__media { order: 2; }
.usecase__media .window img { width: 100%; height: auto; }
.usecase__tag {
  display: inline-block;
  font-family: var(--font-head); font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .16em; color: var(--green-light);
  background: rgba(124,224,59,.08); border: 1px solid var(--border-green);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 16px;
}
.usecase__title {
  font-family: var(--font-head); font-weight: 700; color: var(--cream);
  font-size: 1.55rem; letter-spacing: -0.01em; margin-bottom: 14px;
}
.usecase__body > p { color: var(--muted); font-size: 1rem; }
.usecase__list { margin-top: 20px; display: grid; gap: 11px; }
.usecase__list li { position: relative; padding-left: 24px; font-size: .93rem; color: var(--muted); line-height: 1.55; }
.usecase__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green-light); font-weight: 700; font-size: .85rem;
}

/* ---------- Vorteile ---------- */
.vorteile { gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.vorteil {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease;
  position: relative;
}
.vorteil:hover { background: rgba(124,224,59,.035); }
.vorteil__index {
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  color: var(--green-light); letter-spacing: .1em; display: block; margin-bottom: 18px;
}
.vorteil__title {
  font-family: var(--font-head); font-weight: 700; color: var(--cream);
  font-size: 1.12rem; margin-bottom: 10px; letter-spacing: -0.01em;
}
.vorteil p { font-size: .93rem; }

/* ---------- Branchen ---------- */
.branchen { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 860px; margin: 0 auto; }
.chip {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--cream); background: var(--bg-card); border: 1px solid var(--border-green);
  padding: 13px 26px; border-radius: 999px;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.chip:hover { transform: translateY(-3px); background: rgba(124,224,59,.09); box-shadow: 0 10px 26px rgba(0,0,0,.3); }
.chip--muted { color: var(--muted); border-color: var(--border); }

/* ---------- Kompetenzen / Tech-Stack ---------- */
.skillset { display: grid; gap: 34px; max-width: 940px; margin: 0 auto; }
.skillgroup__title {
  font-family: var(--font-head); font-weight: 600; color: var(--cream);
  font-size: 1.05rem; margin-bottom: 16px;
}
.skillgroup__chips { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Steps (Ablauf) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s ease;
}
.step:hover { transform: translateY(-4px); border-color: var(--border-green); }
.step::after {
  content: attr(data-num);
  position: absolute; right: 14px; top: -12px;
  font-family: var(--font-head); font-weight: 700; font-size: 5.4rem; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(124,224,59,.22);
  pointer-events: none;
}
.step__num {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  background: var(--green-grad); color: #071008; margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(124,224,59,.2);
}
.step--highlight { border-color: var(--border-green); background: linear-gradient(165deg, rgba(124,224,59,.07), var(--bg-card) 60%); }
.step__title { font-family: var(--font-head); font-weight: 700; color: var(--cream); font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .92rem; position: relative; }

/* ---------- Kontakt ---------- */
.section--contact { overflow: hidden; }
.contact-panel {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  padding: 1px;
  background: linear-gradient(160deg, rgba(124,224,59,.5), rgba(124,224,59,.06) 40%, rgba(124,224,59,.28));
}
.contact-panel__inner {
  position: relative;
  border-radius: calc(var(--radius) + 5px);
  background:
    radial-gradient(700px 320px at 50% 120%, rgba(124,224,59,.12), transparent 65%),
    var(--bg-elev);
  padding: 90px 40px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  overflow: hidden;
}
.contact-panel__inner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 100%, black 20%, transparent 75%);
}
.contact-panel__inner > * { position: relative; }
.contact__actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.contact__claim {
  margin-top: 48px; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .2em; font-size: .78rem; color: var(--muted-2);
}

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 56px 0 36px; background: var(--bg); }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer__brand { display: flex; align-items: center; gap: 14px; color: var(--cream); font-weight: 500; font-size: .92rem; }
.footer__logo { height: 34px; width: auto; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__links a {
  font-size: .9rem; color: var(--muted); padding: 8px 14px; border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.footer__links a:hover { color: var(--green-light); background: rgba(124,224,59,.06); }
.footer__copy {
  font-size: .84rem; color: var(--muted-2); width: 100%; text-align: center;
  padding-top: 28px; margin-top: 8px; border-top: 1px solid var(--border);
}

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */
.legal { padding: 150px 0 90px; min-height: 70vh; }
.legal__inner { max-width: 820px; }
.legal h1.section__title { margin-bottom: 10px; }
.legal h2 {
  font-family: var(--font-head); font-weight: 700; color: var(--cream);
  font-size: 1.2rem; margin: 40px 0 12px; letter-spacing: -0.01em;
}
.legal p { color: var(--muted); margin-bottom: 14px; }
.legal a { color: var(--green-light); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--green-pale); }
.legal__list { margin: 0 0 16px; display: grid; gap: 8px; }
.legal__list li { position: relative; padding-left: 24px; color: var(--muted); }
.legal__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green-light); font-weight: 700; font-size: .85rem;
}
.legal__note {
  margin-top: 36px; padding: 20px 22px; border-radius: var(--radius-sm);
  background: rgba(124,224,59,.06); border: 1px solid var(--border-green); font-size: .92rem;
}
.legal__note strong { color: var(--green-pale); }
.legal__inline-note { display: block; margin-top: 8px; font-size: .9rem; color: var(--muted-2); }
.legal__back { margin-top: 44px; }
.legal__back a { font-family: var(--font-head); font-weight: 600; text-decoration: none; }

/* ---------- Über mich: Profil ---------- */
.profile-hero { padding-top: 170px; overflow: hidden; position: relative; }
.profile-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 25%, transparent 75%);
}
.profile { grid-template-columns: .8fr 1.2fr; position: relative; }
.profile__photo-wrap {
  position: relative;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(160deg, rgba(124,224,59,.55), rgba(124,224,59,.08) 45%, rgba(124,224,59,.3));
  box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 60px rgba(124,224,59,.05);
}
.profile__photo {
  width: 100%; border-radius: calc(var(--radius) - 1px);
  aspect-ratio: 1 / 1.06; object-fit: cover; object-position: center top;
}
.profile__role {
  font-family: var(--font-head); font-weight: 600; color: var(--green-light);
  font-size: 1.05rem; margin: 12px 0 6px; letter-spacing: .01em;
}
.profile__actions { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Über mich: Stationen / Logos ---------- */
.logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 18px;
  max-width: 1000px; margin: 0 auto;
}
.logo-card {
  display: grid; place-items: center;
  background: #eceae3;
  border-radius: 14px;
  padding: 18px 34px; min-height: 76px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.logo-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.logo-card img { max-height: 38px; max-width: 140px; width: auto; object-fit: contain; }
.logo-card img.logo-card__img--mark { max-height: 50px; }

/* Text-Variante, bis die Logo-Freigaben vorliegen */
.logo-card--text {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.1rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream); white-space: nowrap;
}
.logo-card--text:hover { border-color: var(--border-green); color: var(--green-pale); box-shadow: 0 16px 40px rgba(0,0,0,.35); }

/* ---------- Über mich: Werdegang / Timeline ---------- */
.timeline { max-width: 900px; margin: 0 auto; position: relative; display: grid; gap: 0; }
.timeline::before {
  content: ""; position: absolute; left: 179px; top: 10px; bottom: 10px; width: 1px;
  background: linear-gradient(180deg, var(--green), rgba(124,224,59,.06));
  transform: scaleY(0); transform-origin: top;
  transition: transform 1.8s cubic-bezier(.16, 1, .3, 1) .2s;
}
.timeline.is-visible::before { transform: scaleY(1); }
.tl {
  display: grid; grid-template-columns: 150px 1fr; gap: 58px;
  position: relative; padding: 0 0 26px;
}
.tl::before {
  content: ""; position: absolute; left: 174px; top: 32px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 5px rgba(124,224,59,.14);
}
.tl__period {
  font-family: var(--font-head); font-weight: 700; color: var(--green-light);
  font-size: .9rem; padding-top: 26px; text-align: right;
}
.tl__body {
  position: relative;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.tl__body:hover { transform: translateY(-3px); border-color: var(--border-green); box-shadow: 0 18px 44px rgba(0,0,0,.4); }
.tl__role { font-family: var(--font-head); font-weight: 700; color: var(--cream); font-size: 1.18rem; letter-spacing: -0.01em; }
.tl__company { color: var(--green-pale); font-size: .95rem; margin-top: 4px; font-weight: 500; }
.tl__list { margin-top: 16px; display: grid; gap: 9px; }
.tl__list li { position: relative; padding-left: 24px; font-size: .93rem; color: var(--muted); line-height: 1.55; }
.tl__list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green-light); font-weight: 700; font-size: .85rem;
}

/* ---------- Über mich: Ausbildung ---------- */
.edu-grid { align-items: stretch; }
.edu {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 28px;
  transition: transform .25s ease, border-color .25s ease;
}
.edu:hover { transform: translateY(-4px); border-color: var(--border-green); }
.edu__period {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  letter-spacing: .06em; color: var(--green-light);
  background: rgba(124,224,59,.09); border: 1px solid var(--border-green);
  padding: 5px 14px; border-radius: 999px; margin-bottom: 16px;
}
.edu__title { font-family: var(--font-head); font-weight: 700; color: var(--cream); font-size: 1.12rem; line-height: 1.3; }
.edu__inst { color: var(--green-pale); font-size: .95rem; margin-top: 6px; font-weight: 500; }
.edu__note { margin-top: 14px; font-size: .92rem; color: var(--muted); }

/* ---------- Über mich: Kompetenzen ---------- */
.skills { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 860px; margin: 0 auto; }

/* ---------- Scroll-Progressbar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200;
  background: var(--green-grad);
  transform: scaleX(0); transform-origin: 0 50%;
  pointer-events: none;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
/* Richtungs-Varianten */
.reveal--left  { transform: translateX(-52px); }
.reveal--right { transform: translateX(52px); }
.reveal--zoom  { transform: translateY(20px) scale(.93); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Gestaffelte Animation für Kachel-Gruppen */
.cards > .reveal:nth-child(2), .vorteile > .reveal:nth-child(2),
.steps > .reveal:nth-child(2), .logos > .reveal:nth-child(2),
.about__facts > .reveal:nth-child(2), .timeline > .reveal:nth-child(2) { transition-delay: .08s; }
.cards > .reveal:nth-child(3), .vorteile > .reveal:nth-child(3),
.steps > .reveal:nth-child(3), .logos > .reveal:nth-child(3),
.about__facts > .reveal:nth-child(3), .timeline > .reveal:nth-child(3) { transition-delay: .16s; }
.cards > .reveal:nth-child(4), .vorteile > .reveal:nth-child(4),
.steps > .reveal:nth-child(4), .logos > .reveal:nth-child(4),
.about__facts > .reveal:nth-child(4), .timeline > .reveal:nth-child(4) { transition-delay: .24s; }
.about__facts > .reveal:nth-child(5) { transition-delay: .32s; }
.cards > .reveal:nth-child(5), .vorteile > .reveal:nth-child(5),
.steps > .reveal:nth-child(5), .logos > .reveal:nth-child(5),
.timeline > .reveal:nth-child(5) { transition-delay: .12s; }
.cards > .reveal:nth-child(6), .vorteile > .reveal:nth-child(6),
.steps > .reveal:nth-child(6) { transition-delay: .2s; }

/* Gestaffelte Logo-Einblendung */
.logostrip__row > .reveal:nth-child(2) { transition-delay: .1s; }
.logostrip__row > .reveal:nth-child(3) { transition-delay: .2s; }
.logostrip__row > .reveal:nth-child(4) { transition-delay: .3s; }
.logostrip__row > .reveal:nth-child(5) { transition-delay: .4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero { min-height: auto; }
  .hero__visual .window { transform: none; max-width: 640px; margin: 0 auto; }
  .hero__chip--1 { left: 4px; }
  .hero__chip--2 { right: 4px; }
}

@media (max-width: 920px) {
  .grid--3, .cards { grid-template-columns: repeat(2, 1fr); }
  .card--wide, .card--cta { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; gap: 44px; }
  .usecase { grid-template-columns: 1fr; gap: 32px; padding: 26px; }
  .usecase--reverse .usecase__media { order: 0; }
  .profile { grid-template-columns: 1fr; gap: 40px; }
  .profile__photo-wrap { max-width: 380px; }
  .timeline::before, .tl::before { display: none; }
  .tl { grid-template-columns: 1fr; gap: 8px; padding-bottom: 22px; }
  .tl__period { padding-top: 0; text-align: left; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav { background: rgba(7, 9, 8, 0.85); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
  .nav__menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #0b0e0c;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0,0,0,.5);
    padding: 16px 24px 24px;
    transform: translateY(-130%); transition: transform .4s cubic-bezier(.16,1,.3,1); z-index: 90;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__link { padding: 14px 16px; border-radius: 12px; }
  .nav__link--cta { margin-left: 0; margin-top: 10px; text-align: center; padding: 14px; }
  .section { padding: 84px 0; }
  .hero { padding: 130px 0 70px; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__stat + .hero__stat { padding-left: 0; border-left: 0; }
  .contact-panel__inner { padding: 64px 24px; }
  .card--cta { flex-direction: column; align-items: flex-start; }
  .card--wide .card__list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid--3, .cards, .steps { grid-template-columns: 1fr; }
  .card--wide, .card--cta { grid-column: span 1; }
  .about__facts { grid-template-columns: 1fr; }
  .vorteile { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; justify-content: center; }
  .footer__links { justify-content: center; }
  .btn { width: 100%; }
  .hero__actions, .contact__actions, .profile__actions { width: 100%; }
  .about__cta .btn { width: auto; max-width: 100%; white-space: normal; text-align: center; }
  .logostrip__item { padding: 12px 20px; min-height: 54px; }
  .logostrip__item img { max-height: 24px; max-width: 100px; }
  .logostrip__item--text { font-size: .85rem; letter-spacing: .09em; }
  .logo-card { padding: 14px 24px; min-height: 62px; }
  .logo-card img { max-height: 30px; max-width: 112px; }
  .logo-card img.logo-card__img--mark { max-height: 40px; }
  .logo-card--text { font-size: .92rem; letter-spacing: .09em; }
  .hero__chip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .step, .vorteil, .chip, .logo-card, .tl__body, .window, .logostrip__item { transition: none; }
  .hero__badge-dot, .hero__chip { animation: none; }
  .hero__visual .window { transform: none; }
  .scroll-progress { display: none; }
  .timeline::before { transform: none; transition: none; }
}
