/* TEST12345 */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --color-primary: #000000;
  --color-on-primary: #FFFFFF;
  --color-secondary: #9A9A9A;
  --color-accent: #7DD3FC;
  --color-accent-hover: #BAE6FD;
  --color-accent-solid: #0369A1;
  --color-accent-solid-hover: #0284C7;
  --color-background: #050505;
  --color-foreground: #F5F5F5;
  --color-muted: #0A0A0A;
  --color-border: rgba(255,255,255,0.08);
  --color-ring: #7DD3FC;
  --color-surface: #0A0A0A;
  --color-page: #000000;

  --font-heading: "Lexend", sans-serif;
  --font-body: "Source Sans 3", sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-foreground);
  background: var(--color-page);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-weight: 600;
  line-height: 1.25;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

a { color: inherit; }

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent-solid);
  color: #fff;
  padding: var(--space-2) var(--space-3);
  z-index: 1000;
}
.skip-link:focus { left: var(--space-3); top: var(--space-3); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-3) var(--space-3) 0;
}
.header-pill {
  max-width: 1180px;
  margin: 0 auto;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease, max-width 300ms ease, backdrop-filter 300ms ease;
  padding: 0 var(--space-3);
}
.site-header.is-scrolled .header-pill {
  max-width: 760px;
  background: rgba(0,0,0,0.7);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: 64px;
}
.logo {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
}
.nav { display: flex; align-items: center; gap: var(--space-4); flex: 1; justify-content: center; }
.nav a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 200ms ease;
}
.nav a:hover { color: #fff; }
.nav-cta {
  background: var(--color-accent-solid);
  color: #fff !important;
  padding: 9px var(--space-4);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  transition: background 200ms ease;
}
.nav-cta:hover { background: var(--color-accent-solid-hover); }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  border-radius: 8px;
}
.menu-toggle:hover { background: rgba(255,255,255,0.08); }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  margin: var(--space-2) var(--space-3) 0;
  background: rgba(0,0,0,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: max-height 300ms ease;
}
.mobile-menu.is-open { max-height: 320px; }
.mobile-menu a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu-cta {
  color: var(--color-accent) !important;
  font-weight: 600;
  border-bottom: none !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 var(--space-5);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 200ms ease, transform 150ms ease, box-shadow 200ms ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--color-accent-solid);
  color: #fff;
  padding: 2px;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-primary span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 var(--space-5);
  border-radius: 999px;
}
.btn-primary:hover { box-shadow: 0 4px 14px rgba(3,105,161,0.35); }
.btn-ghost { background: transparent; color: var(--color-on-primary); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top, #0A0A0A 0%, #000000 70%);
  color: #fff;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  padding: 96px 0 var(--space-7);
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: grayscale(0.1) brightness(0.8);
  will-change: transform, filter;
  transition: filter 200ms linear;
}
.hero-inner {
  transition: transform 200ms linear, opacity 200ms linear;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.9) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.4) 0%, transparent 55%);
}

.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-left { text-align: left; }
.hero-left h1 {
  max-width: 1100px;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 900px) {
  .hero-left h1 { white-space: nowrap; }
}
.hero-left .hero-sub {
  max-width: 700px;
  margin-left: 0;
  margin-right: 0;
}
.hero-left .hero-actions {
  justify-content: flex-start;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-5);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7DD3FC;
  display: inline-block;
}
.hero h1 {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}
.hero-gradient {
  background: linear-gradient(90deg, #7DD3FC, #fff 50%, #38BDF8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: #CBD5E1;
  margin-bottom: var(--space-5);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats strip */
.stats { background: var(--color-muted); border-bottom: 1px solid var(--color-border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: var(--space-5) 0;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  display: block;
  font-size: 14px;
  color: var(--color-secondary);
  margin-top: var(--space-1);
}

/* Sections */
.section { padding: var(--space-8) 0; }
.section-alt { background: var(--color-background); }
.section-dark { background: var(--color-primary); color: #fff; }

.section-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.section-eyebrow-light { color: #7DD3FC; }

.section h2 {
  font-size: 30px;
  margin-bottom: var(--space-3);
}
.section-dark h2 { color: #fff; }

.section-intro {
  color: var(--color-secondary);
  max-width: 680px;
  margin-bottom: var(--space-6);
  font-size: 17px;
}

/* Leistungen grid */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}
@media (max-width: 900px) {
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grid-5 { grid-template-columns: 1fr; }
}

/* Warum Der Profi */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
}
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(125,211,252,0.1);
  border: 1px solid rgba(125,211,252,0.2);
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.benefit h3 { font-size: 17px; margin-bottom: var(--space-2); }
.benefit p { font-size: 14px; color: var(--color-secondary); }

.auszeichnung-grid { align-items: start; }
.auszeichnung-group {
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: var(--space-5);
}
.auszeichnung-cat {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.auszeichnung-item + .auszeichnung-item { margin-top: var(--space-4); }
.auszeichnung-item h3 { font-size: 16px; margin-bottom: var(--space-2); }
.auszeichnung-item p { font-size: 14px; color: var(--color-secondary); line-height: 1.6; }

/* Abwicklung steps */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
}
.step { position: relative; padding-left: var(--space-2); }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent-solid);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: var(--space-3);
}
.step h3 { font-size: 17px; margin-bottom: var(--space-2); }
.step p { font-size: 14px; color: var(--color-secondary); }
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: var(--space-5) var(--space-4);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  overflow: hidden;
}
.card-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: var(--space-5) var(--space-4);
  border: none;
}
.card-photo:hover {
  border-color: transparent;
  box-shadow: none;
}
.card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 65%, rgba(0,0,0,0.97) 100%);
}
.card-photo-content { position: relative; z-index: 1; }
.card-photo .card-icon { background: rgba(255,255,255,0.15); color: #fff; }
.card.card-photo h3 { color: #fff; }
.card.card-photo p { color: #fff; }
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(125,211,252,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.card-premium {
  min-height: 280px;
  background: linear-gradient(160deg, #111111 0%, #000000 100%);
  border: none;
  position: relative;
  overflow: hidden;
}
.card-premium:hover {
  border-color: transparent;
  box-shadow: none;
}
.card-premium-featured {
  border: none;
  box-shadow: none;
  background: linear-gradient(160deg, #161616 0%, #000000 100%);
}
.card-premium-featured:hover {
  box-shadow: none;
}

.premium-stage {
  position: relative;
  padding-top: var(--space-7);
}
.premium-glow {
  display: none;
}
.premium-sparkles {
  display: none;
}
.premium-grid {
  position: relative;
  z-index: 2;
}
.card-premium-title {
  position: relative;
  z-index: 1;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-3);
  line-height: 1.35;
}
.card-premium-text {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: var(--color-secondary);
  line-height: 1.6;
}
.card-premium-img {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: var(--space-5) var(--space-4);
}
.card-premium-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1);
  transition: transform 6s ease-out;
}
.card-premium-img:hover .card-premium-image {
  transform: scale(1.15);
  transition: transform 6s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .card-premium-image { transition: none; }
}
.card-premium-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 45%, rgba(0,0,0,0.95) 100%);
  z-index: 0;
}
.card-premium-img .card-premium-text { color: #CBD5E1; }
.card-premium-cat {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: var(--space-3);
  margin-bottom: var(--space-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.card-premium-feat {
  position: relative;
  z-index: 1;
}
.card-premium-feat + .card-premium-feat { margin-top: var(--space-3); }
.card-premium-feat strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.card-premium-feat span {
  display: block;
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(125,211,252,0.1);
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.card h3 {
  font-size: 17px;
  margin-bottom: var(--space-2);
  color: #fff;
  overflow-wrap: break-word;
}
.card p { font-size: 14px; color: var(--color-secondary); overflow-wrap: break-word; }

/* Über uns */
.ueber-uns-grid {
  display: block;
}
.ueber-uns-grid h2 { font-size: 28px; margin-bottom: var(--space-4); }
.ueber-uns-text p { color: var(--color-secondary); margin-bottom: var(--space-4); max-width: 70ch; }
.ueber-uns-list {
  list-style: none;
  margin-bottom: var(--space-4);
  max-width: 70ch;
}
.ueber-uns-list li {
  position: relative;
  padding-left: var(--space-4);
  margin-bottom: var(--space-3);
  color: var(--color-secondary);
}
.ueber-uns-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}
.ueber-uns-list strong { color: #fff; }
.ueber-uns-mission {
  border-left: 2px solid var(--color-accent);
  padding-left: var(--space-4);
}
.ueber-uns-mission strong { color: #fff; }

.ueber-uns-statement {
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  max-width: none;
}

.ueber-uns-substatement {
  margin-top: var(--space-4);
  font-size: 17px;
  color: var(--color-secondary);
  max-width: none;
}

@media (max-width: 768px) {
  .ueber-uns-statement { font-size: 21px; margin-top: var(--space-6); padding-top: var(--space-4); }
  .ueber-uns-substatement { font-size: 15px; }
}

/* Agilität — Teams */
.team-grid {
  margin-top: var(--space-7);
  display: flex;
  flex-direction: column;
}
.team-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border);
}
.team-row:first-child { border-top: none; }
.team-row-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.team-row-icon {
  flex-shrink: 0;
  color: var(--color-accent);
}
.team-row-label h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
}
.team-row-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.team-col strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-2);
}
.team-col span {
  display: block;
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .team-row { grid-template-columns: 1fr; }
  .team-row-cols { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* Qualität & Sicherheit */
.qs-grid {
  margin-top: var(--space-7);
  display: flex;
  flex-direction: column;
}
.qs-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-5);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border);
}
.qs-row:first-child { border-top: none; }
.qs-row-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.qs-row-icon {
  flex-shrink: 0;
  color: var(--color-accent);
}
.qs-row-label h3 {
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
  margin-bottom: var(--space-2);
}
.qs-row-intro {
  font-size: 14px;
  font-style: italic;
  color: var(--color-accent);
  line-height: 1.5;
}
.qs-row-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.qs-col strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-2);
}
.qs-col span {
  display: block;
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.6;
}
#qualitaet-sicherheit { padding-bottom: var(--space-5); }
.qs-footer {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-secondary);
}
@media (max-width: 900px) {
  .qs-row { grid-template-columns: 1fr; }
  .qs-row-cols { grid-template-columns: 1fr; gap: var(--space-4); }
  .qs-footer { flex-direction: column; gap: var(--space-2); }
}

/* Referenzen — 3D scroll-to-surf stack */
.ref-surf-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
  perspective: 1500px;
}
.ref-surf-heading {
  position: absolute;
  left: 50%;
  top: var(--space-6);
  transform: translateX(-50%);
  z-index: 40;
  max-width: 560px;
  text-align: center;
}
.ref-surf-heading h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.01em;
}
.ref-count {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  vertical-align: super;
}
.ref-surf-heading .section-intro {
  margin-top: var(--space-3);
  max-width: 420px;
  color: #CBD5E1;
}
.ref-surf-caption {
  position: absolute;
  right: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  max-width: 320px;
  text-align: right;
}
.ref-surf-caption p {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}
@media (max-width: 900px) {
  .ref-surf-caption { display: none; }
}
.ref-window {
  position: absolute;
  top: 22%;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  transform-style: preserve-3d;
  width: 94%;
  max-width: 1300px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  transition: border-color 200ms ease, background 200ms ease;
}
.ref-window.is-active {
  border-color: rgba(255,255,255,0.5);
}
.ref-gallery {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  transform-style: preserve-3d;
  will-change: transform;
}
.ref-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 440px;
  margin-left: -160px;
  margin-top: -220px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.ref-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ref-card-label {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  font-family: 'Courier New', monospace;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
}
.ref-card.is-hovered .ref-card-label { opacity: 1; transform: translateY(0); }
.ref-scroll-hint {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  z-index: 40;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 900px) {
  .ref-surf-heading h2 { font-size: 28px; }
  .ref-surf-heading { max-width: 80%; }
  .ref-card { width: 280px; height: 50vh; }
}

/* Kontakt */
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
.kontakt-lead { color: #CBD5E1; margin-bottom: var(--space-4); font-size: 16px; }
.kontakt-details { display: flex; flex-direction: column; gap: var(--space-3); }
.kontakt-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 200ms ease;
}
.kontakt-link:hover { color: #7DD3FC; }
.kontakt-link svg { color: #7DD3FC; flex-shrink: 0; }
.kontakt-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.kontakt-legal strong {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.kontakt-legal span {
  font-size: 15px;
  color: #9A9A9A;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-5);
  border-radius: 10px;
}
.form-field { display: flex; flex-direction: column; margin-bottom: var(--space-4); }
.form-field label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: #fff;
}
.form-field input,
.form-field textarea {
  min-height: 44px;
  padding: 0 var(--space-3);
  background: var(--color-page);
  color: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 200ms ease;
}
.form-field textarea { min-height: 110px; padding: var(--space-3); resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--color-accent); }

/* Footer */
.site-footer {
  background: #000000;
  color: #9A9A9A;
  text-align: center;
  padding: var(--space-4) 0;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: var(--space-7) 0 var(--space-6); }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .shape-1 { width: 240px; height: 64px; }
  .shape-2 { width: 200px; height: 54px; }
  .shape-3, .shape-4, .shape-5 { display: none; }
  .stats-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .section { padding: var(--space-6) 0; }
  .section h2 { font-size: 24px; }
  .kontakt-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}
