/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #cbfd00;
  --black: #000;
  --surface: #070707;
  --surface2: #0d0d0d;
  --border: rgba(255,255,255,0.06);
  --text-muted: rgba(255,255,255,0.45);
  --text-dim: rgba(255,255,255,0.25);
  --nav-h: 76px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── BARRIEREFREIHEIT ─────────────────────────────── */

/* Screen-reader-only (visuell unsichtbar, für Screenreader sichtbar) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-Content Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* Fokus-Stile für Tastaturnavigation */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* Reduzierte Bewegung für Nutzer mit Vestibularis-Störungen */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── SCROLL-REVEAL ────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; transform: scale(1.02); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 30px;
  border: 0.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

.accent { color: var(--accent); }

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(0,0,0,0);
  border-bottom: 0.5px solid rgba(255,255,255,0);
  transition: background 0.4s, border-color 0.4s;
}
.nav.scrolled {
  background: rgba(5,5,5,0.92);
  border-color: rgba(255,255,255,0.07);
}

.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-soon {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--accent);
  background: rgba(203,253,0,0.08);
  border: 0.5px solid rgba(203,253,0,0.25);
  padding: 2px 5px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 5px;
  position: relative;
  top: -1px;
}

.nav-cta {
  background: var(--accent);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  padding: 8px 18px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ──────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0,0,0,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.mobile-link { font-size: 28px; font-weight: 700; letter-spacing: -0.5px; }
.mobile-cta { margin-top: 8px; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203,253,0,0.13) 0%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero load animations */
.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

.hero-tag {
  display: inline-block;
  background: rgba(203,253,0,0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 0.5px solid rgba(203,253,0,0.28);
  margin-bottom: 32px;
}

.hero-headline {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -3px;
  max-width: 860px;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.5;
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── GALAXY CANVAS ────────────────────────────────── */
.galaxy-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── SHOOTING STARS ───────────────────────────────── */
.shooting-star {
  position: absolute;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(203,253,0,0.9) 40%, rgba(255,255,255,0.6) 60%, transparent 100%);
  border-radius: 2px;
  transform: rotate(-38deg);
  transform-origin: left center;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: shootAnim var(--dur, 2s) ease-out forwards;
}
@keyframes shootAnim {
  0%   { opacity: 0; transform: rotate(-38deg) translateX(0px); }
  6%   { opacity: 1; }
  65%  { opacity: 0; }
  100% { opacity: 0; transform: rotate(-38deg) translateX(var(--travel, 260px)); }
}

/* ── SPLIT TEXT ───────────────────────────────────── */
.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
}
.split-inner {
  display: inline-block;
  transform: translateY(108%);
  transition: transform 1s cubic-bezier(0.16,1,0.3,1);
  transition-delay: calc(var(--wi, 0) * 90ms);
}
.split-ready.revealed .split-inner {
  transform: translateY(0);
}

/* ── STICKY FEATURE SECTION ───────────────────────── */
.sticky-wrap {
  position: relative;
  height: 350vh;
  background: var(--surface);
  border-top: 0.5px solid var(--border);
}

.sticky-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  gap: 80px;
}

.sticky-headline {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-top: 16px;
}

.sticky-right { position: relative; height: 320px; }

.feature-block {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.feature-block.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.feature-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.feature-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}

.feature-dots {
  position: sticky;
  bottom: 40px;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding-bottom: 40px;
}
.fdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, transform 0.3s;
}
.fdot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* ── SECTION SHARED ───────────────────────────────── */
.section {
  padding: 130px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 64px;
}

/* ── SERVICES GRID ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.service-card {
  background: var(--surface2);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 0.5px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.service-card:hover { background: #111; }
.service-card:hover .sc-arrow { transform: translate(4px, -4px); }
.service-card:hover::before {
  border-color: rgba(203,253,0,0.18);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(203,253,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

.service-card.featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 1;
  transition: none;
}

.sc-num {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.18);
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.sc-icon {
  width: 48px;
  height: 48px;
  background: rgba(203,253,0,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent);
}
.sc-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.sc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.sc-tag {
  font-size: 11px;
  font-weight: 500;
  color: rgba(203,253,0,0.7);
  border: 0.5px solid rgba(203,253,0,0.2);
  padding: 4px 10px;
  border-radius: 12px;
}
.sc-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.3);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  display: inline-block;
}

/* ── STATS ────────────────────────────────────────── */
.stats-wrap {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  background: var(--black);
  padding: 56px 40px;
  text-align: center;
}
.stat-num {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -3px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── PROCESS ──────────────────────────────────────── */
.process-section {
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 130px 0;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: rgba(255,255,255,0.05);
}
.process-step {
  background: var(--surface);
  padding: 44px 32px;
}
.ps-num {
  font-size: 44px;
  font-weight: 800;
  color: rgba(203,253,0,0.14);
  letter-spacing: -2px;
  margin-bottom: 22px;
  line-height: 1;
}
.ps-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.ps-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}

/* ── CTA ──────────────────────────────────────────── */
.cta-section {
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203,253,0,0.09) 0%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
}
.cta-headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.04;
  margin-bottom: 22px;
}
.cta-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  border-top: 0.5px solid rgba(255,255,255,0.07);
  padding: 28px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-logo-img {
  height: 56px;
  width: auto;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── HERO DEVICES ─────────────────────────────────── */
.hero-devices {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: center;
  margin: 40px 0 36px;
  position: relative;
  z-index: 1;
}

/* Browser Mockup */
.device-browser {
  width: 420px;
  background: #0d0d0d;
  border-radius: 10px;
  border: 0.5px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 0.5px rgba(255,255,255,0.06);
}
.hero .device-browser {
  animation: deviceSlideLeft 0.9s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}
@keyframes deviceSlideLeft {
  from { opacity:0; transform: translateX(-40px) translateY(20px); }
  to   { opacity:1; transform: none; }
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #1a1a1a;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.b-dot { width: 10px; height: 10px; border-radius: 50%; }
.b-red    { background: #ff5f57; }
.b-yellow { background: #febc2e; }
.b-green  { background: #28c840; }
.b-url {
  flex: 1;
  background: #111;
  border-radius: 6px;
  height: 20px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

.browser-screen {
  padding: 12px;
  background: #080808;
  min-height: 240px;
}

/* Nav bar inside browser */
.bs-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
}
.bs-logo {
  font-size: 9px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
}
.bs-nav-links {
  display: flex;
  gap: 8px;
  margin-left: 10px;
}
.bs-nav-links span {
  width: 22px;
  height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}
.bs-btn-pill {
  margin-left: auto;
  width: 40px;
  height: 14px;
  background: var(--accent);
  border-radius: 10px;
  opacity: 0.85;
}

/* Hero content inside browser */
.bs-hero { margin-bottom: 16px; }
.bs-h1 {
  height: 10px;
  width: 70%;
  background: rgba(255,255,255,0.7);
  border-radius: 3px;
  margin-bottom: 6px;
}
.bs-h2 {
  height: 10px;
  width: 55%;
  border-radius: 3px;
  margin-bottom: 10px;
}
.bs-accent { background: var(--accent); opacity: 0.85; }
.bs-sub {
  height: 4px;
  width: 80%;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-bottom: 4px;
}
.bs-sub.short { width: 60%; }
.bs-actions { display: flex; gap: 6px; margin-top: 10px; }
.bs-btn-fill  { width: 50px; height: 14px; background: var(--accent); border-radius: 8px; opacity: 0.9; }
.bs-btn-outline {
  width: 50px;
  height: 14px;
  border: 0.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
}
.bs-h1.wide { width: 85%; height: 12px; margin-bottom: 8px; }
.bs-h2.wide { width: 70%; height: 12px; }
.bs-sub.wide { width: 90%; }

/* Cards row inside browser */
.bs-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.bs-card {
  background: #111;
  border-radius: 6px;
  padding: 8px;
  border: 0.5px solid rgba(255,255,255,0.05);
}
.bs-card-top {
  height: 6px;
  width: 50%;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 6px;
  opacity: 0.7;
}

/* Phone Mockup */
.device-phone { }
.hero .device-phone {
  animation: deviceSlideRight 0.9s cubic-bezier(0.16,1,0.3,1) 0.65s both;
}
@keyframes deviceSlideRight {
  from { opacity:0; transform: translateX(40px) translateY(20px); }
  to   { opacity:1; transform: none; }
}

.phone-shell,
.sm-phone-shell {
  width: 180px;
  background: #0a0a0a;
  border-radius: 32px;
  border: 1.5px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}
.sm-phone-shell {
  width: 240px;
  border-radius: 42px;
}

.phone-notch {
  width: 60px;
  height: 14px;
  background: #0a0a0a;
  border-radius: 0 0 10px 10px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sm-phone-shell .phone-notch { width: 80px; height: 18px; }

.phone-screen {
  background: #050505;
  padding: 8px 8px 4px;
  min-height: 300px;
}
.sm-phone-shell .phone-screen {
  min-height: 440px;
  padding: 10px 10px 6px;
}

.phone-home-bar {
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  margin: 6px auto 8px;
}

/* Instagram inside phone */
.insta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.insta-wordmark {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  letter-spacing: -0.3px;
}
.insta-bar-icons {
  display: flex;
  gap: 8px;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
}

.insta-stories {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.story {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.story-active {
  border-color: var(--accent);
  background: rgba(203,253,0,0.1);
}
.sm-phone-shell .story { width: 42px; height: 42px; }

.insta-post { margin-bottom: 8px; }
.ip-header { display: flex; align-items: center; gap: 5px; margin-bottom: 5px; }
.ip-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(203,253,0,0.2);
  border: 1px solid rgba(203,253,0,0.4);
  flex-shrink: 0;
}
.sm-phone-shell .ip-avatar { width: 28px; height: 28px; }
.ip-meta { flex: 1; }
.ip-name { height: 4px; width: 50%; background: rgba(255,255,255,0.3); border-radius: 2px; margin-bottom: 3px; }
.ip-time { height: 3px; width: 30%; background: rgba(255,255,255,0.12); border-radius: 2px; }

.ip-img {
  height: 100px;
  background: linear-gradient(135deg, #0d1a04 0%, #cbfd00 160%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}
.ip-img.large { height: 130px; }
.ip-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.ip-overlay-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 1;
  letter-spacing: -0.3px;
}
.ip-actions {
  display: flex;
  gap: 8px;
  font-size: 8px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.insta-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.img-cell {
  height: 46px;
  border-radius: 2px;
}
.c1 { background: linear-gradient(135deg, #0a1a03, #cbfd00 200%); }
.c2 { background: linear-gradient(135deg, #060610, #cbfd00 180%); }
.c3 { background: linear-gradient(135deg, #0f1403, #cbfd00 190%); }
.sm-phone-shell .img-cell { height: 62px; }

/* ── PROJECTS SECTION ─────────────────────────────── */
.projects-section {
  padding: 120px 0 80px;
  overflow: hidden;
}
.projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 64px;
  margin-bottom: 56px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.ph-left .section-title { margin-bottom: 0; }
.ph-all { align-self: flex-end; margin-bottom: 4px; }

.projects-track {
  display: flex;
  gap: 20px;
  padding: 0 64px 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
}
.projects-track::-webkit-scrollbar { display: none; }

.project-card {
  flex-shrink: 0;
  width: 340px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface2);
  border: 0.5px solid rgba(255,255,255,0.07);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(203,253,0,0.2);
}

.proj-img {
  height: 240px;
  background: linear-gradient(145deg, var(--c1,#0d1a04) 0%, var(--c2,#cbfd00) 160%);
  position: relative;
  overflow: hidden;
}
.proj-noise {
  display: none;
}
.proj-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 20px;
  border: 0.5px solid rgba(203,253,0,0.3);
}
.proj-num {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(203,253,0,0.12);
  letter-spacing: -2px;
  line-height: 1;
}

.proj-info {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proj-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.proj-tags {
  font-size: 12px;
  color: var(--text-muted);
}
.proj-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.2);
  margin-top: 8px;
  transition: color 0.2s, transform 0.3s;
  display: inline-block;
}
.project-card:hover .proj-arrow {
  color: var(--accent);
  transform: translate(3px,-3px);
}

/* ── FIGHT ACADEMY PROJECT CARD ───────────────────── */
.proj-img--fight-academy {
  background: linear-gradient(155deg, #0a0000 0%, #1a0000 50%, #b91c1c 160%) !important;
}
.proj-logo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proj-fight-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}
.pfl-fight {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 6px;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 30px rgba(185,28,28,0.6);
}
.pfl-academy {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  color: #b91c1c;
  margin-top: 2px;
}
.pfl-hinterland {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  font-style: italic;
}
.proj-img--fight-academy .proj-cat {
  background: rgba(185,28,28,0.25);
  border-color: rgba(185,28,28,0.4);
  color: #ff6b6b;
}

/* ── SOCIAL MEDIA SECTION ─────────────────────────── */
.sm-section {
  padding: 120px 64px;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--surface);
}
.sm-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}

.sm-phone-col {
  position: relative;
  display: inline-flex;
}
.sm-badge {
  position: absolute;
  bottom: 60px;
  right: -60px;
  background: var(--accent);
  color: #000;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(203,253,0,0.3);
}
.sm-badge-num {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 2px;
}
.sm-badge-label {
  font-size: 9px;
  font-weight: 600;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.sm-text-col .section-sub { margin-bottom: 40px; }

.sm-metrics {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}
.sm-metric {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.sm-metric:last-child { border-bottom: none; }
.sm-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent);
  line-height: 1;
  min-width: 100px;
  font-variant-numeric: tabular-nums;
}
.sm-mlabel {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.sm-cta { display: inline-flex; }

/* ── WEBSITE SECTION ──────────────────────────────── */
.wb-section {
  padding: 120px 64px;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--surface);
}
.wb-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 48px;
  align-items: center;     /* MacBook vertikal mittig in der Section */
}
.wb-text-col .section-sub { margin-bottom: 40px; }
.wb-cta { display: inline-flex; }

.wb-mac-col {
  position: relative;
  flex-shrink: 0;
}
.wb-perspective {
  perspective: 1600px;
  perspective-origin: 50% 15%;
  padding-top: 32px;
}
.wb-perspective .macbook {
  width: 500px;
  max-width: 44vw;
}
.wb-badge {
  position: absolute;
  bottom: 60px;                  /* unten links – knapp über dem MacBook-Boden */
  left: 120px;                   /* Badge sitzt klar auf dem MacBook, ~50px vom linken Rand entfernt */
  transform: translateX(-50%);   /* Mitte des Badges sitzt 120px innerhalb des MacBook-Linkrands */
  top: auto;
  right: auto;
  background: var(--accent);
  color: #000;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(203,253,0,0.3);
  z-index: 2;
}

/* ── REAL MOCKUP IMAGES (Phone + MacBook) ─────────── */
.mockup-img {
  display: block;
  height: auto;
  max-width: 100%;
}
.mockup-img--phone {
  width: 280px;
}
.mockup-img--macbook {
  width: 820px;
  max-width: 100%;
}
/* Center mockups inside .service-visual on the Leistungen page */
.service-visual .mockup-img--phone { margin: 0 auto; }
.service-visual .mockup-img--macbook { margin: 0 auto; }

/* ── MACBOOK COMPONENT ─────────────────────────────── */
.macbook {
  width: 100%;
}
.macbook-lid {
  width: 100%;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  overflow: hidden;
  transform-origin: bottom center;
  transform: rotateX(-18deg);
}
.macbook-screen-inner {
  background: #000;
  padding: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  line-height: 0;
}
.macbook-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.mb-site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  margin-bottom: 14px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.mb-site-logo {
  font-size: 6px;
  font-weight: 800;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1.5px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.mb-site-links { display: flex; gap: 6px; margin-left: 8px; }
.mb-site-links span {
  width: 18px; height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}
.mb-site-cta {
  margin-left: auto;
  width: 34px; height: 11px;
  background: #b91c1c;
  border-radius: 6px;
  opacity: 0.9;
}

.mb-site-hero { margin-bottom: 14px; }
.mb-site-tag {
  width: 54px; height: 6px;
  background: rgba(185,28,28,0.35);
  border: 0.5px solid rgba(185,28,28,0.5);
  border-radius: 4px;
  margin-bottom: 10px;
}
.mb-site-h1 {
  height: 10px; width: 66%;
  background: rgba(255,255,255,0.82);
  border-radius: 3px;
  margin-bottom: 5px;
}
.mb-site-h1.accent { width: 50%; background: #b91c1c; opacity: 0.85; }
.mb-site-sub {
  height: 3px; width: 82%;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  margin-bottom: 3px;
}
.mb-site-sub.w60 { width: 60%; }
.mb-site-btns { display: flex; gap: 5px; margin-top: 10px; }
.mb-site-btn { width: 46px; height: 12px; border-radius: 6px; }
.mb-site-btn.fill  { background: #b91c1c; }
.mb-site-btn.ghost { background: transparent; border: 0.5px solid rgba(255,255,255,0.22); }

.mb-site-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.mb-site-card {
  background: #110000;
  border-radius: 4px;
  padding: 8px;
  border: 0.5px solid rgba(185,28,28,0.1);
}
.mb-site-card-bar {
  height: 3px; width: 38%;
  background: #b91c1c; opacity: 0.7;
  border-radius: 2px; margin-bottom: 6px;
}
.mb-site-card-line {
  height: 3px; width: 80%;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; margin-bottom: 4px;
}
.mb-site-card-line.short { width: 52%; }

.macbook-hinge {
  height: 4px;
  background: linear-gradient(to bottom, #2e2e2e, #1c1c1c);
  border-left: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
}

.macbook-base {
  background: linear-gradient(to bottom, #272727, #1e1e1e);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 10px 14px 14px;
}

.macbook-keyboard {
  height: 52px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.055) 0px,
      rgba(255,255,255,0.055) 16px,
      transparent 16px,
      transparent 19px
    );
  border-radius: 2px;
  margin-bottom: 9px;
  position: relative;
  overflow: hidden;
}
.macbook-keyboard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 10px,
    transparent 10px,
    transparent 14px
  );
}

.macbook-trackpad {
  width: 108px; height: 18px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.09);
  border-radius: 4px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .macbook { width: 360px; }
  .macbook-screen-inner { padding: 8px 10px; }
}
.browser-screen.full {
  padding: 16px;
  background: #070707;
  min-height: 400px;
}
.bs-hero-lg {
  margin-bottom: 20px;
}
.bs-h1.wide { width: 85%; }
.bs-h2.wide { width: 65%; }
.bs-sub.wide { width: 95%; margin-bottom: 4px; }
.bs-three-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.bs-big-card {
  background: #111;
  border-radius: 8px;
  padding: 14px;
  border: 0.5px solid rgba(255,255,255,0.05);
}
.bsc-bar {
  height: 3px;
  width: 40%;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 10px;
  opacity: 0.8;
}
.bsc-line {
  height: 5px;
  width: 85%;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-bottom: 5px;
}
.bsc-line.short { width: 60%; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: calc(var(--nav-h) + 32px) 20px 60px; }
  .hero-headline { letter-spacing: -1.5px; }

  .hero-devices { flex-direction: column; align-items: center; gap: 16px; margin: 28px 0 24px; }
  .device-browser { width: 320px; }
  .browser-screen { min-height: 180px; }

  .sticky-pin {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
    align-items: flex-start;
    padding-top: 80px;
  }
  .sticky-right { height: 280px; }
  .sticky-wrap { height: 450vh; }

  .projects-section { padding: 80px 0 60px; }
  .projects-head { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .projects-track { padding: 0 24px 20px; gap: 14px; }
  .project-card { width: 280px; }

  .sm-section { padding: 80px 24px; }
  .sm-inner { grid-template-columns: 1fr; gap: 48px; justify-items: center; }
  .sm-badge { right: -20px; bottom: 40px; }
  .sm-num { font-size: 40px; min-width: 80px; }

  .wb-section { padding: 80px 24px; }
  .wb-inner { grid-template-columns: 1fr; gap: 48px; justify-items: center; }
  .wb-perspective { padding-top: 16px; }
  .wb-perspective .macbook { width: 100%; max-width: 400px; }
  .wb-badge { top: auto; left: auto; right: 8px; bottom: 64px; transform: none; }

  /* Mobile-Reihenfolge: MacBook ÜBER dem Text (gleich wie Phone-Block oben) */
  .wb-mac-col {
    order: -1;
    margin-bottom: 0;   /* Desktop-Trick (-60px) auf Mobile zurücksetzen → kein Overlap mit Webdesign-Überschrift */
  }
  .wb-text-col { order: 0; margin-top: 16px; }
  .mockup-img--macbook { width: 100%; max-width: 420px; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-inner { padding: 0 24px; }
  .process-section { padding: 80px 0; }

  .cta-section { padding: 100px 24px; }
  .cta-headline { letter-spacing: -1.5px; }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
    padding: 32px 24px;
  }
  .footer-logo { display: flex; justify-content: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-scroll-hint {
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content;
    align-items: center;
  }
  .device-browser { width: 280px; }
  .project-card { width: 260px; }
  .sm-inner { gap: 36px; }
  .wb-inner { gap: 32px; }
  .sm-phone-shell { width: 210px; border-radius: 36px; }
  .section-title { letter-spacing: -0.8px; }
  /* Metrics: Zahl oben, Label darunter auf kleinen Screens */
  .sm-metric { flex-direction: column; gap: 4px; padding: 16px 0; }
  .sm-num { font-size: 44px; min-width: unset; }
  .sm-mlabel { font-size: 13px; }
}

@media (max-width: 400px) {
  .hero-headline { letter-spacing: -2px; font-size: 44px; }
  .hero-sub { font-size: 15px; }
  .sm-badge-num { font-size: 15px; }
  .sm-badge-label { font-size: 8px; }
  .sm-phone-shell { width: 190px; border-radius: 32px; }
  .wb-perspective .macbook { max-width: 300px; }
  .wb-badge { transform: scale(0.88); transform-origin: bottom right; }
  .project-card { width: 240px; }
  .projects-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ps-num { font-size: 32px; }
}

/* ── Hide decorative ↗ arrows on tablet & mobile ──── */
@media (max-width: 1024px) {
  .proj-arrow,
  .ext-arrow,
  [class$="-btn-visit-arrow"] { display: none !important; }
}

/* ════════════════════════════════════════════════════
   SUB-PAGES
   ════════════════════════════════════════════════════ */

/* Nav always dark on sub-pages */
body.subpage .nav {
  background: rgba(5,5,5,0.96);
  border-color: rgba(255,255,255,0.07);
}

/* ── PAGE HERO (shared) ───────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 64px 72px;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-hl {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.03;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
}
.page-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0;
}

/* ── LEISTUNGEN ───────────────────────────────────── */
.service-sec {
  padding: 100px 64px;
  border-bottom: 0.5px solid var(--border);
}
.service-sec-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-sec-inner.flip { direction: rtl; }
.service-sec-inner.flip > * { direction: ltr; }
.service-bg-num {
  font-size: 100px;
  font-weight: 800;
  color: rgba(203,253,0,0.07);
  letter-spacing: -5px;
  line-height: 1;
  margin-bottom: -28px;
}
.service-sec-title {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 16px;
}
.service-sec-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.service-tag {
  font-size: 11px;
  font-weight: 600;
  color: rgba(203,253,0,0.75);
  border: 0.5px solid rgba(203,253,0,0.22);
  padding: 5px 12px;
  border-radius: 20px;
}
.service-visual {
  background: var(--surface2);
  border-radius: 16px;
  border: 0.5px solid var(--border);
  overflow: hidden;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
}
.service-visual .device-browser { width: 100%; }
.service-visual .sm-phone-shell { margin: 0 auto; }

/* ── PROJEKTE ─────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 64px 0;
}
.filter-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 20px;
  border: 0.5px solid var(--border);
  background: transparent;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.filter-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #000; }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 64px 100px;
  background: transparent;
}
.proj-grid-card {
  background: var(--surface2);
  overflow: hidden;
  cursor: pointer;
  border: 0.5px solid var(--border);
  transition: border-color 0.3s;
}
.proj-grid-card:hover { border-color: rgba(203,253,0,0.15); }
.proj-grid-card[data-hidden] { display: none; }
.pgc-img {
  height: 240px;
  background: linear-gradient(145deg, var(--c1,#0d1a04) 0%, var(--c2,#cbfd00) 160%);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.proj-grid-card:hover .pgc-img { transform: scale(1.04); }
.pgc-img .proj-noise { display: none; }
.pgc-cat { position: absolute; top:14px; left:14px; font-size:9px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--accent); background:rgba(0,0,0,0.5); padding:3px 8px; border-radius:20px; border:0.5px solid rgba(203,253,0,0.3); }
.pgc-info { padding: 20px 22px 24px; }
.pgc-title { font-size: 16px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 5px; }
.pgc-tags { font-size: 11px; color: var(--text-muted); }

/* Featured project card (full width on grid) */
.proj-grid-card.featured {
  grid-column: span 2;
}
.proj-grid-card.featured .pgc-img { height: 360px; }

/* ── ÜBER UNS ─────────────────────────────────────── */
.team-section {
  padding: 80px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 56px;
}
.team-card {
  background: var(--surface2);
  padding: 48px 40px;
  text-align: center;
  transition: background 0.3s;
}
.team-card:hover { background: #111; }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(203,253,0,0.08);
  border: 1px solid rgba(203,253,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}
.team-name { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 6px; }
.team-role { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

.values-section {
  padding: 80px 64px;
  background: var(--surface);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.values-inner { max-width: 1100px; margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 56px;
}
.value-card {
  background: var(--surface);
  padding: 40px 36px;
}
.value-num { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.value-title { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.mission-section {
  padding: 100px 64px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-quote {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.3;
  color: rgba(255,255,255,0.9);
}
.mission-quote span { color: var(--accent); }
.mission-text { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

/* ── KONTAKT ──────────────────────────────────────── */
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 64px 100px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
}
.contact-info-block { margin-bottom: 36px; }
.cib-label { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 6px; }
.cib-value { font-size: 16px; font-weight: 500; color: #fff; }
.cib-value a { color: var(--accent); transition: opacity 0.2s; }
.cib-value a:hover { opacity: 0.75; }

.calendly-placeholder {
  margin-top: 40px;
  padding: 28px;
  background: var(--surface2);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.cp-label { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; letter-spacing: 0.5px; }
.cp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0.5px solid rgba(203,253,0,0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.cp-btn:hover { background: rgba(203,253,0,0.08); }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 7px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface2);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: inherit;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(203,253,0,0.4);
  background: rgba(203,253,0,0.03);
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-select option { background: #111; }
.form-textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 16px; font-size: 15px; font-weight: 700; border: none; cursor: pointer; margin-top: 6px; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }
#formStatus {
  display: none;
  padding: 13px 18px;
  border-radius: 8px;
  font-size: 13px;
  margin-top: 14px;
  text-align: center;
}
#formStatus.success { display:block; background:rgba(203,253,0,0.08); border:0.5px solid rgba(203,253,0,0.3); color:var(--accent); }
#formStatus.error   { display:block; background:rgba(255,80,80,0.08); border:0.5px solid rgba(255,80,80,0.3); color:#ff7070; }

/* ── KUNDENPORTAL COMING SOON ─────────────────────── */
.cs-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}
.cs-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203,253,0,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cs-tag {
  display: inline-block;
  background: rgba(203,253,0,0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 0.5px solid rgba(203,253,0,0.28);
  margin-bottom: 28px;
}
.cs-hl {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.02;
  margin-bottom: 20px;
}
.cs-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.cs-progress {
  width: 240px;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}
.cs-bar {
  height: 100%;
  width: 100%;
  background: var(--accent);
  border-radius: 2px;
  transform-origin: left center;
  animation: csBar 2s ease-in-out infinite alternate;
}
@keyframes csBar {
  from { transform: scaleX(0.45); opacity: 0.7; }
  to   { transform: scaleX(0.70); opacity: 1; }
}
.cs-pct { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 1px; }

/* ── SUB-PAGE RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .page-hero { padding: calc(var(--nav-h) + 60px) 24px 56px; }
  .page-hero-hl { letter-spacing: -1.5px; }
  .page-hero-sub { font-size: 16px; }
  .service-sec { padding: 64px 24px; }
  .service-sec-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-sec-inner.flip { direction: ltr; }
  .service-visual { min-height: 260px; padding: 24px; }
  .filter-bar { padding: 32px 24px 0; }
  .proj-grid { grid-template-columns: 1fr 1fr; padding: 24px 24px 64px; }
  .proj-grid-card.featured { grid-column: span 2; }
  .team-section { padding: 64px 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .values-section { padding: 64px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .mission-section { grid-template-columns: 1fr; padding: 64px 24px; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; padding: 40px 24px 64px; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .page-hero-hl { letter-spacing: -1px; font-size: clamp(36px, 10vw, 56px); }
  .proj-grid { grid-template-columns: 1fr; }
  .proj-grid-card.featured { grid-column: span 1; }
  .proj-grid-card.featured .pgc-img { height: 220px; }
  .team-grid { gap: 2px; }
  .values-grid { gap: 2px; }
  .kfg-modal { padding: 28px 20px 36px; }
  .kfg-options { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   PRELOADER & PAGE TRANSITIONS
══════════════════════════════════════════════════════ */
#gmbOv {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  pointer-events: none;
}

/* Inner content */
.gov-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Animate in once gov-animate is added */
#gmbOv.gov-animate .gov-inner {
  opacity: 1;
  transform: translateY(0);
}

.gov-logo {
  height: 56px;
  width: auto;
}

.gov-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: -12px;
}

/* Enter button */
.gov-enter-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 40px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
}
.gov-enter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}
.gov-enter-btn svg {
  transition: transform 0.25s;
}
.gov-enter-btn:hover svg {
  transform: translateX(3px);
}

/* ══════════════════════════════════════════════════════
   ANFRAGE-KONFIGURATOR
══════════════════════════════════════════════════════ */
#konfigOverlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#konfigOverlay.active {
  display: flex;
}
.kfg-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}
.kfg-modal {
  position: relative;
  background: #0d0d0d;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 44px 48px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  transform: translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
#konfigOverlay.active .kfg-modal { transform: translateY(0); }
.kfg-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.kfg-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.kfg-progress {
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  margin-bottom: 36px;
  overflow: hidden;
}
.kfg-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.kfg-step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}
.kfg-title {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 8px;
}
.kfg-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.kfg-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.kfg-option {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kfg-option:hover {
  border-color: rgba(203,253,0,0.3);
  background: rgba(203,253,0,0.04);
  transform: translateY(-2px);
}
.kfg-option.selected {
  border-color: var(--accent);
  background: rgba(203,253,0,0.07);
}
.kfg-option-icon { font-size: 20px; margin-bottom: 6px; }
.kfg-option-text {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.kfg-option-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}
.kfg-back {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.kfg-back:hover { color: rgba(255,255,255,0.7); }

/* Result */
.kfg-result { display: flex; flex-direction: column; gap: 16px; }
.kfg-result-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(203,253,0,0.08);
  border: 0.5px solid rgba(203,253,0,0.25);
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
}
.kfg-result-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}
.kfg-urgent {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
}
.kfg-result-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.kfg-btn-primary {
  display: block;
  background: var(--accent);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.kfg-btn-primary:hover { opacity: 0.85; }
.kfg-btn-ghost {
  display: block;
  background: none;
  border: 0.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 12px 24px;
  border-radius: 40px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.kfg-btn-ghost:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); }

/* Floating trigger button */
.kfg-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 8000;
  background: var(--accent);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(203,253,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
}
.kfg-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(203,253,0,0.35);
}
.kfg-float-icon { font-size: 15px; }

.kfg-float--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
  transition: opacity 0.25s, transform 0.25s;
}

/* "Weiter"-Button for multi-select steps */
.kfg-next-wrap {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}
.kfg-next {
  background: var(--accent);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.kfg-next:hover:not(:disabled) { transform: scale(1.03); }
.kfg-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Konfigurator contact form */
.kfg-form { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.kfg-field { display: flex; flex-direction: column; gap: 6px; }
.kfg-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.kfg-field input {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.2s;
}
.kfg-field input:focus {
  outline: none;
  border-color: var(--accent);
}
.kfg-error {
  color: #ff7070;
  font-size: 13px;
  background: rgba(185,28,28,0.1);
  border: 0.5px solid rgba(185,28,28,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .kfg-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 18px;
    z-index: 2;
  }
}

@media (max-width: 600px) {
  .kfg-modal { padding: 44px 22px 32px; }
  .kfg-options { grid-template-columns: 1fr; }
  .kfg-float { bottom: 20px; left: 16px; font-size: 12px; padding: 10px 16px; }
}

