/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --bg:           #060A10;
  --lime:         #C8FF00;
  --teal:         #00C8D4;
  --white:        #FFFFFF;
  --dim:          rgba(255,255,255,0.55);
  --dimmer:       rgba(255,255,255,0.28);
  --glass-bg:     rgba(12,26,58,0.52);
  --glass-border: rgba(0,200,220,0.22);
  --glass-shine:  rgba(255,255,255,0.07);
  --glass-glow:   rgba(0,160,190,0.12);
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --max: 1200px;
}

/* ══════════════════════════════════════════
   BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%,  rgba(120,40,230,0.18) 0%, transparent 52%),
    radial-gradient(ellipse at 10% 85%,  rgba(0,150,180,0.14) 0%, transparent 52%),
    radial-gradient(ellipse at 55% 50%,  rgba(0,60,120,0.10)  0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
body > * { position: relative; z-index: 1; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ══════════════════════════════════════════
   GLASS
══════════════════════════════════════════ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 32px 72px rgba(0,0,0,0.55),
    inset 0 1px 0 var(--glass-shine),
    0 0 50px var(--glass-glow);
  position: relative;
}
.glass--marks::before, .glass--marks::after {
  content: ''; position: absolute;
  width: 14px; height: 14px;
  border-color: rgba(0,200,220,0.45); border-style: solid;
  pointer-events: none;
}
.glass--marks::before { top:-1px; left:-1px; border-width:1.5px 0 0 1.5px; border-radius:var(--r-lg) 0 0 0; }
.glass--marks::after  { bottom:-1px; right:-1px; border-width:0 1.5px 1.5px 0; border-radius:0 0 var(--r-lg) 0; }

/* ══════════════════════════════════════════
   PILLS
══════════════════════════════════════════ */
.pill {
  display: inline-flex; align-items: center; gap: 0.45em;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.35em 0.85em;
  border-radius: 100px; white-space: nowrap;
}
.pill--lime    { background: var(--lime); color: #0A1400; }
.pill--outline { border: 1px solid var(--teal); color: var(--teal); }
.pill--glass   { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: var(--dim); }

/* ══════════════════════════════════════════
   EYEBROW
══════════════════════════════════════════ */
.eyebrow {
  font-size: 0.8rem; font-weight: 500; color: var(--lime);
  letter-spacing: 0.04em; margin-bottom: 0.75rem; display: block;
}

/* ══════════════════════════════════════════
   HERO BRAND LOGO
══════════════════════════════════════════ */
.hero__brand-logo {
  margin-bottom: 0.75rem;
}
.hero__brand-img {
  height: 48px;
  width: auto;
  background: #fff;
  padding: 7px 16px;
  border-radius: 8px;
  display: block;
}
@media (max-width: 480px) {
  .hero__brand-img { height: 38px; padding: 5px 12px; }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-lime {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #0A1400; background: var(--lime);
  padding: 0.85em 1.8em; border-radius: 100px; border: none;
  cursor: pointer; transition: opacity 0.2s, transform 0.15s;
}
.btn-lime:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); background: transparent;
  padding: 0.85em 1.8em; border-radius: 100px;
  border: 1px solid rgba(0,200,220,0.35); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--teal); background: rgba(0,200,220,0.07); }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 0.8rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.solid {
  background: rgba(6,10,16,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,200,220,0.10);
}
.nav__logo { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.nav__logo-img {
  height: 30px;
  width: auto;
  background: white;
  padding: 3px 8px;
  border-radius: 7px;
  display: block;
}
.nav__logo-name {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--dim);
}
.nav__links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav__links a {
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__cta {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--lime);
  border: 1px solid rgba(200,255,0,0.35); border-radius: 100px;
  padding: 0.5em 1.3em; transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.nav__cta:hover { background: var(--lime); color: #0A1400; }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none; position: fixed;
  inset: 58px 0 0 0; z-index: 99;
  background: rgba(4,8,16,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem var(--pad) 2rem;
  flex-direction: column;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--white); }
.nav__mobile .btn-lime { margin-top: 1.5rem; justify-content: center; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(5rem,10vh,7rem) var(--pad) clamp(3rem,6vh,5rem);
}
.hero__card {
  width: 100%; max-width: var(--max);
  padding: clamp(2.5rem,5vw,4rem) clamp(2rem,5vw,3.5rem);
  overflow: hidden;
}
.hero__top {
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap; margin-bottom: clamp(1.5rem,3vh,2.5rem);
}
.hero__title {
  font-size: clamp(3.2rem,9vw,7.5rem);
  font-weight: 900; line-height: 0.93;
  letter-spacing: -0.03em; color: var(--white); margin-bottom: 0.6em;
}
.hero__title .accent { color: var(--lime); }
.hero__sub {
  font-size: clamp(0.92rem,1.7vw,1.1rem);
  font-weight: 300; line-height: 1.7;
  color: var(--dim); max-width: 54ch; margin-bottom: 2.5rem;
}
.hero__bottom { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.stat__num {
  font-size: 2rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--white); line-height: 1;
}
.stat__num em { font-style: normal; color: var(--lime); }
.stat__label {
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 0.3em;
}
/* Hero deco */
.hero-deco {
  position: absolute; top: 50%; right: clamp(-1rem,-2vw,-2rem);
  transform: translateY(-50%);
  width: clamp(180px,28%,320px);
  pointer-events: none; opacity: 0.055;
  animation: hero-spin 60s linear infinite;
}
@keyframes hero-spin { to { transform: translateY(-50%) rotate(360deg); } }
.dot-grid { position: absolute; pointer-events: none; opacity: 0.18; }
.dot-grid circle { fill: var(--teal); }

/* ══════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════ */
.section { padding: clamp(4rem,8vw,7rem) var(--pad); }
.section__head { margin-bottom: clamp(2.5rem,5vw,4rem); }
.section__title {
  font-size: clamp(2rem,4.5vw,3.2rem);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.05; color: var(--white);
}
.section__sub {
  font-size: clamp(0.9rem,1.5vw,1rem);
  font-weight: 300; color: var(--dim);
  margin-top: 0.75rem; max-width: 60ch; line-height: 1.65;
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px,1fr));
  gap: 1rem;
}
.svc-card {
  padding: 1.75rem; border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  cursor: default;
}
.svc-card:hover {
  border-color: rgba(0,200,220,0.45);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04),0 32px 72px rgba(0,0,0,0.55),inset 0 1px 0 var(--glass-shine),0 0 60px rgba(0,180,200,0.2);
  transform: translateY(-3px);
}
.svc-card__top { display: flex; align-items: center; justify-content: space-between; }
.svc-card__num { font-family: 'Space Grotesk',monospace; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; color: rgba(255,255,255,0.42); }
.svc-card__name { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; color: var(--white); line-height: 1.2; }
.svc-card__text { font-size: 0.87rem; font-weight: 300; line-height: 1.65; color: var(--dim); flex: 1; }
.svc-card__footer { display: flex; gap: 0.5rem; flex-wrap: wrap; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.06); }

.svc-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,200,220,0.08); border: 1px solid rgba(0,200,220,0.16);
  border-radius: 12px; color: var(--teal); margin-bottom: 0.5rem;
  flex-shrink: 0; transition: background 0.25s, border-color 0.25s;
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-card:hover .svc-icon { background: rgba(0,200,220,0.15); border-color: rgba(0,200,220,0.35); }
.svc-icon--lime { background: rgba(200,255,0,0.08); border-color: rgba(200,255,0,0.2); color: var(--lime); }
.svc-card:hover .svc-icon--lime { background: rgba(200,255,0,0.14); border-color: rgba(200,255,0,0.4); }

/* ══════════════════════════════════════════
   PROJECTS
══════════════════════════════════════════ */
.proj-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.5em 1.15em;
  border-radius: 100px; border: 1px solid rgba(255,255,255,0.14);
  background: transparent; color: rgba(255,255,255,0.45);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--lime); border-color: var(--lime); color: #0A1400; }

.proj-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px,1fr));
  gap: 1rem;
}
.proj-card {
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: default;
}
.proj-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,200,220,0.42);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0,180,200,0.15);
}
.proj-card.hidden { display: none; }

.proj-card__img-wrap {
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(0,200,220,0.12) 0%, transparent 62%),
    radial-gradient(ellipse at 50% 50%, rgba(12,26,58,0.82) 0%, rgba(6,10,16,0.96) 100%),
    repeating-linear-gradient(0deg,   transparent, transparent 19px, rgba(0,200,220,0.04) 19px, rgba(0,200,220,0.04) 20px),
    repeating-linear-gradient(90deg,  transparent, transparent 19px, rgba(0,200,220,0.04) 19px, rgba(0,200,220,0.04) 20px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 1.25rem;
  position: relative; cursor: zoom-in;
}
.proj-card__img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.55)) drop-shadow(0 0 12px rgba(0,200,220,0.15));
}
.proj-card:hover .proj-card__img-wrap img {
  transform: scale(1.06);
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.65)) drop-shadow(0 0 20px rgba(0,200,220,0.25));
}

/* Zoom-Icon Overlay */
.proj-card__img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,200,220,0.0);
  transition: background 0.25s;
  pointer-events: none;
}
.proj-card__img-wrap:hover::after { background: rgba(0,200,220,0.04); }

.proj-card__zoom-icon {
  position: absolute; top: 0.6rem; right: 0.6rem;
  width: 28px; height: 28px;
  background: rgba(0,0,0,0.45); border: 1px solid rgba(0,200,220,0.3);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  color: var(--teal); opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  pointer-events: none; z-index: 2;
}
.proj-card__zoom-icon svg { width: 14px; height: 14px; }
.proj-card:hover .proj-card__zoom-icon { opacity: 1; }

/* ══════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════ */
.lb-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(3,6,14,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  align-items: center; justify-content: center;
  padding: 1rem;
}
.lb-overlay.open { display: flex; }

.lb-inner {
  position: relative; width: 100%; max-width: 1000px;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}

.lb-img-wrap {
  width: 100%;
  max-height: 75vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.lb-img-wrap img {
  max-width: 100%; max-height: 75vh;
  object-fit: contain;
  border-radius: var(--r-md);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8)) drop-shadow(0 0 30px rgba(0,200,220,0.18));
  animation: lb-fadein 0.25s ease;
}
@keyframes lb-fadein {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lb-footer {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
}
.lb-title {
  font-size: 0.95rem; font-weight: 600; color: var(--white);
  letter-spacing: -0.01em;
}
.lb-cat {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal);
}
.lb-counter {
  font-family: 'Space Grotesk', monospace;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.42);
}

.lb-close {
  position: fixed; top: 1.25rem; right: 1.25rem;
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; cursor: pointer; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background 0.2s; z-index: 10;
}
.lb-close:hover { background: rgba(255,255,255,0.15); }

.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; cursor: pointer; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s; z-index: 10;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover {
  background: rgba(0,200,220,0.14); border-color: rgba(0,200,220,0.4);
  color: var(--teal);
}
.lb-prev svg, .lb-next svg { width: 20px; height: 20px; }

.proj-card__body {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(0,200,220,0.1);
}
.proj-card__cat {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.3rem;
}
.proj-card__title { font-size: 0.95rem; font-weight: 600; color: var(--white); line-height: 1.3; }

/* ══════════════════════════════════════════
   BENEFITS (Vorteile)
══════════════════════════════════════════ */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.benefit-card { padding: 2rem 1.75rem; border-radius: var(--r-md); }
.benefit-icon {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 13px; margin-bottom: 1.25rem;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-icon--lime { background: rgba(200,255,0,0.10); border: 1px solid rgba(200,255,0,0.22); color: var(--lime); }
.benefit-icon--teal { background: rgba(0,200,220,0.08); border: 1px solid rgba(0,200,220,0.18); color: var(--teal); }
.benefit-icon--purple { background: rgba(140,60,220,0.10); border: 1px solid rgba(140,60,220,0.22); color: #b06dff; }
.benefit-card__title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.85rem; line-height: 1.25; }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.benefit-list li {
  font-size: 0.87rem; font-weight: 300; color: var(--dim);
  line-height: 1.55; padding-left: 1.1rem; position: relative;
}
.benefit-list li::before { content: '→'; position: absolute; left: 0; color: var(--lime); font-size: 0.78rem; top: 2px; }
.benefits-conclusion {
  margin-top: 1.5rem; padding: 1.5rem 2rem;
  background: rgba(200,255,0,0.04); border: 1px solid rgba(200,255,0,0.15);
  border-radius: var(--r-md);
  font-size: 0.9rem; font-weight: 300; color: var(--dim); line-height: 1.7;
}
.benefits-conclusion strong { color: var(--white); font-weight: 600; }

/* ══════════════════════════════════════════
   PROCESS (Projektablauf)
══════════════════════════════════════════ */
.process-timeline {
  display: flex; flex-direction: column;
}

.process-phase { margin-bottom: 1.25rem; }

.process-phase__header {
  display: flex; align-items: center; gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.process-phase__badge {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.35em 0.9em;
  border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.process-phase__badge--lime { background: var(--lime); color: #0A1400; }
.process-phase__badge--teal { background: rgba(0,200,220,0.12); color: var(--teal); border: 1px solid rgba(0,200,220,0.35); }
.process-phase__name {
  font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.45); letter-spacing: 0.06em; white-space: nowrap;
}
.process-phase__rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(200,255,0,0.22) 0%, transparent 100%);
}
.process-phase__rule--teal {
  background: linear-gradient(90deg, rgba(0,200,220,0.22) 0%, transparent 100%);
}

.process-phase__steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}

.process-item {
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 0.45rem;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: default;
}
.process-item:hover {
  border-color: rgba(0,200,220,0.38);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 30px rgba(0,180,200,0.1);
}
.process-item__num {
  font-family: 'Space Grotesk', monospace;
  font-size: 2.2rem; font-weight: 800;
  color: rgba(0,200,220,0.16); line-height: 1;
  letter-spacing: -0.04em; margin-bottom: 0.2rem;
}
.process-item__title { font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.process-item__text { font-size: 0.85rem; font-weight: 300; color: var(--dim); line-height: 1.65; }

/* Phase connector */
.process-connector {
  display: flex; align-items: center; justify-content: center;
  height: 2.25rem; position: relative; margin-bottom: 0.5rem;
}
.process-connector::before {
  content: ''; position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 1px; transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(200,255,0,0.22) 0%, rgba(200,255,0,0.06) 100%);
}
.process-connector::after {
  content: '↓'; color: rgba(200,255,0,0.45);
  font-size: 0.85rem; background: var(--bg);
  padding: 0 0.5rem; position: relative; z-index: 1;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-card { padding: clamp(2.5rem,5vw,4rem); }
.about-inner {
  display: grid; grid-template-columns: 260px 1fr;
  gap: clamp(2.5rem,5vw,4rem); align-items: start;
}
.about-photo {
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid rgba(0,200,220,0.2); position: relative;
}
.about-photo img { width: 100%; display: block; object-fit: cover; }
.about-content__title {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.05; color: var(--white); margin-bottom: 1.5rem;
}
.about-content__title em { font-style: normal; color: var(--lime); }
.about-content__text {
  font-size: 0.95rem; font-weight: 300;
  line-height: 1.72; color: var(--dim); margin-bottom: 1rem;
}
.about-quote {
  margin: 1.75rem 0; padding: 1.25rem 1.5rem;
  background: rgba(200,255,0,0.05); border-left: 2px solid var(--lime);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.95rem; font-weight: 400; font-style: italic;
  line-height: 1.65; color: rgba(255,255,255,0.65);
}
.about-sign {
  font-size: 1.05rem; font-weight: 600; color: var(--white);
  display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem;
}
.about-sign::before { content: ''; width: 2rem; height: 1.5px; background: var(--lime); }
.about-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); }

.software-row {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.software-row__label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.42); margin-bottom: 0.75rem;
}
.software-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sw-tag {
  font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 0.3em 0.75em;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg); backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: var(--r-sm); overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(0,200,220,0.38); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; background: none; border: none;
  cursor: pointer; text-align: left; gap: 1rem;
}
.faq-q__text { font-size: 0.95rem; font-weight: 600; color: var(--white); line-height: 1.4; }
.faq-q__icon {
  width: 24px; height: 24px; border: 1px solid rgba(0,200,220,0.28);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal);
  transition: transform 0.3s, background 0.25s;
}
.faq-item.open .faq-q__icon { transform: rotate(45deg); background: rgba(0,200,220,0.12); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 1.5rem 1.25rem; }
.faq-a p { font-size: 0.88rem; font-weight: 300; line-height: 1.72; color: var(--dim); }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-card { padding: clamp(2.5rem,5vw,4rem); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.45fr;
  gap: clamp(2.5rem,5vw,4rem); align-items: start;
}
.contact-info__title {
  font-size: clamp(2rem,4vw,3rem); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.05;
  color: var(--white); margin-bottom: 2rem;
}
.contact-info__title em { font-style: normal; color: var(--lime); }
.contact-item { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.5rem; }
.contact-label-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.2rem; }
.contact-label-row svg { width: 13px; height: 13px; color: var(--teal); flex-shrink: 0; }
.contact-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.contact-val { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.55; }
.contact-val a { transition: color 0.2s; }
.contact-val a:hover { color: var(--white); }
.contact-note { font-size: 0.8rem; color: var(--dimmer); margin-top: 0.5rem; line-height: 1.6; }

/* Form */
.form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 300;
  color: var(--white); background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-sm);
  outline: none; transition: border-color 0.2s, background 0.2s;
  caret-color: var(--lime);
}
.field select option { background: #0d1a2f; color: var(--white); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.2); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: rgba(200,255,0,0.4);
  background: rgba(200,255,0,0.04);
}
.field textarea { min-height: 120px; resize: none; }
.field--honey { display: none !important; }
.form-msg {
  font-size: 0.85rem; padding: 0.8rem 1rem;
  border-radius: var(--r-sm); display: none;
}
.form-msg.success { background: rgba(200,255,0,0.08); border: 1px solid rgba(200,255,0,0.28); color: var(--lime); display: block; }
.form-msg.error   { background: rgba(255,70,70,0.08); border: 1px solid rgba(255,70,70,0.28); color: #ff8585; display: block; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  padding: 2rem var(--pad);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer__left { display: flex; align-items: center; gap: 0.75rem; }
.footer__logo-img { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: 0.5; }
.footer__tagline { font-size: 0.75rem; color: rgba(255,255,255,0.38); letter-spacing: 0.06em; }
.footer__links { list-style: none; display: flex; gap: 1.75rem; flex-wrap: wrap; align-items: center; }
.footer__links a {
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); transition: color 0.2s;
}
.footer__links a:hover { color: rgba(255,255,255,0.7); }
.footer__copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); }

/* ══════════════════════════════════════════
   LEGAL PAGES (Impressum / Datenschutz)
══════════════════════════════════════════ */
.legal-page {
  padding: clamp(6rem,12vh,9rem) var(--pad) clamp(4rem,8vh,6rem);
  min-height: 100vh;
}
.legal-card {
  max-width: 800px; margin: 0 auto;
  background: rgba(7,14,30,0.95);
  border: 1px solid rgba(0,200,220,0.18);
  border-radius: var(--r-lg);
  padding: clamp(2rem,5vw,3.5rem);
}
.legal-card h1 {
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 800; letter-spacing: -0.025em;
  color: var(--white); margin-bottom: 0.5rem;
}
.legal-eyebrow {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1.25rem; display: block;
}
.legal-card h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--white);
  margin: 1.75rem 0 0.5rem;
}
.legal-card p {
  font-size: 0.875rem; font-weight: 300; line-height: 1.72;
  color: var(--dim); margin-bottom: 0.6rem;
}
.legal-card a { color: var(--teal); }
.legal-card a:hover { color: var(--white); }
.legal-card ul { padding-left: 1.2rem; margin-bottom: 0.6rem; }
.legal-card ul li {
  font-size: 0.875rem; font-weight: 300;
  color: var(--dim); line-height: 1.7; margin-bottom: 0.25rem;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--white); }
.legal-back svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.07s; }
.reveal:nth-child(3) { transition-delay: 0.14s; }
.reveal:nth-child(4) { transition-delay: 0.21s; }
.reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal:nth-child(6) { transition-delay: 0.35s; }
.reveal:nth-child(7) { transition-delay: 0.42s; }
.reveal:nth-child(8) { transition-delay: 0.49s; }

/* Scan line decoration */
.proj-scan {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 50%, transparent 100%);
  animation: scan 3s ease-in-out infinite; z-index: 2;
}
@keyframes scan {
  0%   { top: 10%; opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.5; }
  100% { top: 90%; opacity: 0; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ── Tablet breit (≤ 1024px) ── */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .nav__links { gap: 1.4rem; }
}

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .nav__logo-name { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 260px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .process-phase__steps { grid-template-columns: 1fr 1fr; }
  .about-card, .contact-card { padding: 2rem; }
}

/* ── Grosses Smartphone (≤ 700px) ── */
@media (max-width: 700px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .services-grid { grid-template-columns: 1fr; }
  .process-phase__steps { grid-template-columns: 1fr; }
  .process-item { padding: 1.25rem; }
  .process-item__num { font-size: 1.8rem; }
  .benefit-card { padding: 1.5rem; }
}

/* ── Smartphone (≤ 640px) ── */
@media (max-width: 640px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding: clamp(4rem,8vh,5.5rem) var(--pad) 2.5rem; }
  .hero__card { padding: 1.75rem 1.5rem; }
  .hero__title { font-size: clamp(2.6rem, 12vw, 3.8rem); line-height: 0.96; }
  .hero__sub { font-size: 0.9rem; margin-bottom: 1.75rem; }
  .hero__stats {
    gap: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 1.25rem;
    column-gap: 0;
    margin-top: 1.75rem; padding-top: 1.5rem;
  }
  .stat__num { font-size: 1.6rem; }

  .hero__bottom { gap: 0.75rem; }
  .btn-lime, .btn-outline { font-size: 0.78rem; padding: 0.8em 1.4em; }

  .proj-gallery { grid-template-columns: repeat(2,1fr); gap: 0.6rem; }
  .proj-card__body { padding: 0.75rem 1rem 1rem; }
  .proj-filter { gap: 0.4rem; }
  .filter-btn { font-size: 0.72rem; padding: 0.45em 0.9em; }

  .contact-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .about-card { padding: 1.5rem; }
  .about-photo { max-width: 200px; }

  .faq-q { padding: 1rem 1.1rem; }
  .faq-a { padding: 0 1.1rem; }
  .faq-item.open .faq-a { padding: 0 1.1rem 1rem; }

  .footer { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer__links { gap: 0.75rem; flex-wrap: wrap; }

  .lb-img-wrap { max-height: 60vh; }
  .lb-img-wrap img { max-height: 60vh; }
  .lb-prev { left: 0.3rem; width: 40px; height: 40px; }
  .lb-next { right: 0.3rem; width: 40px; height: 40px; }
  .lb-close { top: 0.75rem; right: 0.75rem; width: 36px; height: 36px; }
  .lb-title { font-size: 0.85rem; }

  .legal-card { padding: 1.75rem 1.5rem; }
}

/* ── Kleines Smartphone (≤ 420px) ── */
@media (max-width: 420px) {
  .proj-gallery { grid-template-columns: 1fr; gap: 0.75rem; }
  .hero__title { font-size: clamp(2.3rem, 13vw, 3rem); }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .stat__num { font-size: 1.4rem; }
  .hero__top { gap: 0.5rem; }
  .pill { font-size: 0.7rem; padding: 0.3em 0.7em; }
}

/* ── Sehr kleines Smartphone (≤ 360px) ── */
@media (max-width: 360px) {
  .hero__title { font-size: 2.2rem; }
  .hero__bottom { flex-direction: column; width: 100%; }
  .hero__bottom .btn-lime,
  .hero__bottom .btn-outline { width: 100%; justify-content: center; }
}
