/* ═══════════════════════════
   LOCAL FONTS – Inter 4.1
   Dateien liegen in Inter-4.1/web/
═══════════════════════════ */
@font-face {
  font-family: 'Inter';
  src: url('../Inter-4.1/web/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../Inter-4.1/web/Inter-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../Inter-4.1/web/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../Inter-4.1/web/Inter-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../Inter-4.1/web/Inter-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ═══════════════════════════
   DESIGN TOKENS
═══════════════════════════ */
:root {
  --bg:        #222222;
  --bg2:       #161616;
  --bg3:       #1a1a1a;
  --card:      #1e1e1e;
  --border:    rgba(255,255,255,0.06);
  --text:      #f1f5f9;
  --muted:     #64748b;
  --cyan:      #00b2ff;
  --cyan-glow: rgba(0,178,255,0.25);
  --cyan-dim:  rgba(0,178,255,0.08);
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:    16px;
  --px:        max(24px, calc((100% - 1200px) / 2));
}

/* ═══════════════════════════
   RESET
═══════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

/* ═══════════════════════════
   NAVIGATION
═══════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px);
  background: rgba(28,28,28,0.82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: rgba(255,255,255,0.10);
  box-shadow: 0 1px 20px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem; color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em; white-space: nowrap;
}

.nav-logo img { height: 32px; width: auto; object-fit: contain; }

.nav-logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-icon svg { width: 17px; height: 17px; color: var(--cyan); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--cyan); color: #000 !important;
  font-weight: 600; font-size: 0.875rem;
  padding: 9px 20px; border-radius: 8px;
  box-shadow: 0 0 20px var(--cyan-glow);
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover {
  opacity: 0.9; transform: translateY(-1px);
  box-shadow: 0 0 32px var(--cyan-glow);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 4px;
  background: none; border: none; cursor: pointer;
  padding: 10px; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0; z-index: 99;
  background: rgba(28,28,28,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--px);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.mobile-menu a { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.mobile-menu .nav-cta { display: inline-flex; margin-top: 6px; }

/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px var(--px) 100px;
  overflow: hidden;
}

.hero-inner {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}

/* Hero staggered load animation */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.ha { opacity: 0; animation: heroIn 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.ha-0 { animation-delay:   0ms; }
.ha-1 { animation-delay: 120ms; }
.ha-2 { animation-delay: 240ms; }
.ha-3 { animation-delay: 360ms; }
.ha-4 { animation-delay: 460ms; }
.ha-5 { animation-delay: 580ms; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--cyan-dim); border: 1px solid rgba(0,178,255,0.2);
  color: var(--cyan); font-size: 0.78rem; font-weight: 600;
  padding: 5px 13px; border-radius: 100px; margin-bottom: 28px;
}
.hero-pill-dot {
  width: 5px; height: 5px; background: var(--cyan);
  border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 6px var(--cyan);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.04em; color: var(--text);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--cyan); }

.hero-sub {
  font-size: 1.1rem; color: var(--muted);
  max-width: 480px; line-height: 1.8; margin-bottom: 40px;
}

.hero-buttons {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 48px; align-items: center;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--cyan); color: #000;
  font-weight: 700; font-size: 0.9rem;
  padding: 13px 26px; border-radius: 10px;
  box-shadow: 0 0 24px var(--cyan-glow);
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  opacity: 0.9; transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0,178,255,0.4);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: var(--text);
  font-weight: 500; font-size: 0.9rem;
  padding: 12px 24px; border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.15s, color 0.15s, transform 0.15s;
}
.btn-ghost:hover {
  border-color: var(--cyan); color: var(--cyan);
  transform: translateY(-1px);
}

.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); font-size: 0.78rem; font-weight: 500;
  padding: 6px 13px; border-radius: 100px;
  transition: border-color 0.15s, color 0.15s;
}
.chip:hover { border-color: rgba(0,178,255,0.3); color: var(--cyan); }
.chip svg { width: 12px; height: 12px; color: var(--cyan); flex-shrink: 0; }

/* ═══════════════════════════
   HERO – STATUS CARD
═══════════════════════════ */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(0,178,255,0.06) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(-1deg) scale(0.95);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0px) rotate(-1deg) scale(1);
    filter: blur(0);
  }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px)   rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0   rgba(34,197,94,0.4); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0);   }
}

/* Card */
.status-card {
  width: 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 8px 32px rgba(0,0,0,0.4),
    0 32px 64px rgba(0,0,0,0.3);
  animation:
    cardIn 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s both,
    floatCard 5s ease-in-out 1.4s infinite;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.status-card:hover {
  border-color: rgba(0,178,255,0.2);
  box-shadow:
    0 0 0 1px rgba(0,178,255,0.1),
    0 8px 32px rgba(0,0,0,0.4),
    0 32px 64px rgba(0,178,255,0.08);
}

/* Header */
.card-header {
  display: flex; align-items: center; gap: 0.8rem;
}

.card-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e2333, #252a3a);
  border: 2px solid rgba(0,178,255,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.card-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.card-identity { display: flex; flex-direction: column; gap: 2px; }
.card-name { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.card-role { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* Divider */
.card-divider { border-top: 1px solid rgba(255,255,255,0.06); margin: 1.2rem 0; }

/* Status */
.card-status {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem;
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}

.status-text { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* Tags */
.card-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.card-tag {
  background: rgba(0,178,255,0.08);
  border: 1px solid rgba(0,178,255,0.15);
  color: #00b2ff;
  font-size: 0.72rem; font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* Stats */
.card-stats { display: grid; grid-template-columns: 1fr 1fr; }
.card-stat  { display: flex; flex-direction: column; gap: 3px; }

.stat-value {
  font-size: 1.4rem; font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}

.stat-value.stat-cyan { color: #00b2ff; }

.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* CTA row */
.card-cta {
  background: rgba(0,178,255,0.08);
  border: 1px solid rgba(0,178,255,0.12);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex; justify-content: space-between; align-items: center;
}

.card-cta-text { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.6); transition: color 0.25s ease; }
.card-cta-arrow { color: #00b2ff; font-size: 1rem; transition: transform 0.25s ease; }

.card-cta:hover { background: rgba(0,178,255,0.14); border-color: rgba(0,178,255,0.3); }
.card-cta:hover .card-cta-text { color: rgba(255,255,255,0.9); }
.card-cta:hover .card-cta-arrow { transform: translateX(4px); }

/* ═══════════════════════════
   HINTERGRUND-EFFEKT
═══════════════════════════ */
#bg-light {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #222222;
}

/* ═══════════════════════════
   SEKTIONEN BASIS
═══════════════════════════ */
.section { padding: 100px var(--px); }
.section-bg2 { }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--cyan); margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block; width: 16px; height: 1.5px;
  background: var(--cyan); border-radius: 1px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  font-weight: 800; color: var(--text);
  letter-spacing: -0.035em; line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 540px; line-height: 1.78;
}
.section-header { margin-bottom: 60px; }

/* ═══════════════════════════
   LEISTUNGEN
═══════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}

.service-card {
  position: relative; overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

/* Subtile Linie oben beim Hover */
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,0.12);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.service-card:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.55);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 44px; height: 44px;
  background: var(--cyan-dim); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 22px; height: 22px; color: var(--cyan); }

.service-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ═══════════════════════════
   WARUM ICH?
═══════════════════════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
}

.why-card {
  position: relative; overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

/* Linker Streifen – Cyan bleibt als Akzent */
.why-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--cyan), rgba(0,178,255,0.2));
  border-radius: var(--radius) 0 0 var(--radius);
}

.why-card:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 8px 36px rgba(0,0,0,0.55);
  transform: translateY(-2px);
}

.why-icon {
  width: 38px; height: 38px;
  background: var(--cyan-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-icon svg { width: 19px; height: 19px; color: var(--cyan); }

.why-card h3 {
  font-size: 0.98rem; font-weight: 700; color: var(--text);
  letter-spacing: -0.015em; margin-bottom: 8px;
}
.why-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════
   ÜBER MICH
═══════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 88px; align-items: center;
}

.about-visual-wrap { position: relative; }

.about-visual {
  width: 100%; aspect-ratio: 4/5;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg3), var(--card));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}

.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}

.about-visual-placeholder {
  font-size: 6rem; font-weight: 800; color: var(--cyan);
  opacity: 0.15; letter-spacing: -0.05em; user-select: none;
}

.about-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--cyan); color: #000;
  border-radius: 14px; padding: 16px 22px;
  box-shadow: 0 8px 28px var(--cyan-glow);
  text-align: center;
}
.about-badge-num  { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.about-badge-text { font-size: 0.72rem; font-weight: 600; margin-top: 2px; opacity: 0.8; }

.about-text .section-label { margin-bottom: 18px; }

.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800; color: var(--text);
  letter-spacing: -0.035em; line-height: 1.1;
  margin-bottom: 8px;
}
.about-text h2 .accent { color: var(--cyan); }

.about-intro {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.85; margin-bottom: 32px;
}
.about-intro p + p { margin-top: 14px; }

.about-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.about-check { display: flex; align-items: center; gap: 11px; }
.check-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  background: var(--cyan-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.check-icon svg { width: 10px; height: 10px; color: var(--cyan); }
.about-check span { font-size: 0.875rem; color: var(--muted); }
.about-check strong { color: var(--text); font-weight: 600; }

/* ═══════════════════════════
   KONTAKT
═══════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.65fr;
  gap: 56px; align-items: start;
}

.contact-info-title {
  font-size: 1rem; font-weight: 700; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.contact-cards { display: flex; flex-direction: column; gap: 14px; }

.contact-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: rgba(255,255,255,0.12); }

.contact-icon {
  width: 40px; height: 40px;
  background: var(--cyan-dim); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--cyan); }

.contact-label {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--muted); margin-bottom: 3px;
}
.contact-value { font-size: 0.9rem; font-weight: 500; color: var(--text); line-height: 1.55; }
.contact-value a { color: var(--cyan); transition: opacity 0.15s; }
.contact-value a:hover { opacity: 0.75; }

/* Formular */
.form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
}
.form-card-title {
  font-size: 1rem; font-weight: 700; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }

.form-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.5); margin-bottom: 7px;
}

.form-input, .form-textarea {
  width: 100%; font-family: var(--font);
  font-size: 0.875rem; color: var(--text);
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; padding: 11px 14px; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-dim);
}
.form-textarea { resize: vertical; min-height: 128px; }

.form-submit {
  width: 100%; display: flex; align-items: center; justify-content: center;
  gap: 7px; background: var(--cyan); color: #000;
  font-family: var(--font); font-size: 0.9rem; font-weight: 700;
  padding: 13px 28px; border-radius: 10px; border: none; cursor: pointer;
  box-shadow: 0 0 24px var(--cyan-glow); min-height: 48px;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
}
.form-submit:hover {
  opacity: 0.9; transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(0,178,255,0.4);
}
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

@keyframes spin { to { transform: rotate(360deg); } }
.form-submit .spinner {
  display: none;
  width: 15px; height: 15px;
  border: 2px solid rgba(0,0,0,0.25);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
.form-submit.loading .spinner  { display: block; }
.form-submit.loading .btn-icon,
.form-submit.loading .btn-label { display: none; }

.form-success {
  display: none; margin-top: 14px;
  background: rgba(0,178,100,0.1); border: 1px solid rgba(0,178,100,0.25);
  border-radius: 10px; padding: 14px; text-align: center;
  color: #4ade80; font-size: 0.875rem; font-weight: 500;
}
.form-success.visible { display: block; }
.form-error {
  display: none; margin-top: 14px;
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25);
  border-radius: 10px; padding: 14px; text-align: center;
  color: #f87171; font-size: 0.875rem; font-weight: 500;
}
.form-error.visible { display: block; }

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.footer {
  background: transparent;
  padding: 36px var(--px);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 600; font-size: 0.875rem;
}
.footer-logo img { height: 28px; width: auto; object-fit: contain; }
.footer-logo-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-logo-icon svg { width: 15px; height: 15px; color: var(--cyan); }

.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 0.82rem; color: var(--muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 0.78rem; color: var(--muted); }

/* ═══════════════════════════
   SCROLL-ANIMATIONEN
═══════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(64px) scale(0.91);
  filter: blur(6px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.reveal:nth-child(1) { transition-delay: 0ms; }
.reveal:nth-child(2) { transition-delay: 130ms; }
.reveal:nth-child(3) { transition-delay: 260ms; }
.reveal:nth-child(4) { transition-delay: 390ms; }

/* Slide-in für About-Sektion */
.slide-l.reveal { transform: translateX(-56px) translateY(40px) scale(0.92); }
.slide-r.reveal { transform: translateX(56px)  translateY(40px) scale(0.92); }
.slide-l.reveal.visible,
.slide-r.reveal.visible { transform: translateX(0) translateY(0) scale(1); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .ha { opacity: 1; transform: none; filter: none; animation: none; transition: none; }
  .hero-visual::before { animation: none; opacity: 1; }
  .status-card { animation: none; transform: none; filter: none; opacity: 1; }
}

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { gap: 56px; }
  .hero-inner  { gap: 32px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: 72px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }

  .section { padding-top: 80px; padding-bottom: 80px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { aspect-ratio: 3/2; max-height: 300px; }
  .about-badge { bottom: -14px; right: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-card { padding: 28px 22px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 520px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
}
