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

:root {
  --bg:       #060818;
  --bg2:      #0d1127;
  --glass:    rgba(255,255,255,0.045);
  --glass-b:  rgba(255,255,255,0.09);
  --primary:  #6366f1;
  --primary-d:#4f46e5;
  --purple:   #7c3aed;
  --gold:     #f59e0b;
  --green:    #10b981;
  --cyan:     #06b6d4;
  --text:     #e2e8f0;
  --muted:    #94a3b8;
  --dim:      #6b7280; /* mindestens 4.5:1 auf dunklem Hintergrund (WCAG AA) */
}

html { scroll-behavior: smooth; }

body {
  /* System-Font-Stack: kein externer Font-Request, DSGVO-konform */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Glass ── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.glass-card:hover {
  border-color: rgba(99,102,241,0.22);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

/* ── Sections ── */
.section { padding: 5.5rem 0; }
.section-dark { background: rgba(255,255,255,0.015); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #818cf8;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.22);
  border-radius: 99px;
  padding: 0.25rem 0.875rem;
  margin-bottom: 0.875rem;
}
.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 900; letter-spacing: -0.035em;
  color: #fff; line-height: 1.15; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--muted);
  max-width: 520px; margin: 0 auto; line-height: 1.75;
}

/* ════════════════ HEADER ════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 1.25rem 0;
  transition: background 0.4s, border-color 0.4s, padding 0.3s;
}
#site-header.scrolled {
  background: rgba(6,8,24,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-b);
  padding: 0.75rem 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; }
.logo-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.625rem;
  background: rgba(99,102,241,0.18);
  border: 1px solid rgba(99,102,241,0.35);
  display: flex; align-items: center; justify-content: center;
}
.logo-icon img { width: 1.4rem; height: 1.4rem; object-fit: contain; }
.logo-text { font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }

.desktop-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .desktop-nav { display: flex; } }
.nav-link {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }

.hamburger {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px;
  width: 2.5rem; height: 2.5rem;
  background: none; border: none; cursor: pointer;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 1.4rem; height: 2px;
  background: rgba(255,255,255,0.75); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s; transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(6,8,24,0.8); backdrop-filter: blur(4px);
  z-index: 150; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#mobile-overlay.open { opacity: 1; pointer-events: auto; }

#mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: 17rem;
  background: rgba(13,17,39,0.98);
  border-left: 1px solid var(--glass-b);
  backdrop-filter: blur(20px);
  z-index: 160; padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
#mobile-menu.open { transform: translateX(0); }
#mobile-menu nav { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-link {
  font-size: 1.1rem; font-weight: 600;
  color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s;
}
.mobile-link:hover { color: #fff; }

/* ════════════════ BUTTONS ════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 1.625rem;
  border-radius: 0.75rem; font-weight: 700; font-size: 0.9375rem;
  text-decoration: none; color: #fff;
  background: var(--primary); border: none; cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-d);
  box-shadow: 0 4px 20px rgba(99,102,241,0.45);
  transform: translateY(-2px);
}
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.625rem; border-radius: 0.75rem;
  font-weight: 700; font-size: 0.9375rem; text-decoration: none;
  color: rgba(255,255,255,0.8); background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, background 0.2s, transform 0.2s; white-space: nowrap;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.btn-ghost.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 0.8rem; border-radius: 0.75rem;
  font-weight: 700; font-size: 0.875rem; text-decoration: none;
  color: var(--muted); background: transparent;
  border: 1px solid var(--glass-b); cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--primary); color: #fff; background: rgba(99,102,241,0.08); }
.btn-outline-gold:hover { border-color: var(--gold); background: rgba(245,158,11,0.08); }

/* ════════════════ HERO ════════════════ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 8rem 1.5rem 5rem;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 75% 55% at 50% -10%, rgba(99,102,241,0.18) 0%, transparent 60%),
    var(--bg);
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}
.hero-content { max-width: 840px; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 0.45rem 1.125rem; border-radius: 99px;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.28);
  font-size: 0.875rem; font-weight: 600; color: #a5b4fc;
  margin-bottom: 1.75rem;
  animation: fadeDown 0.7s ease both;
}
.pulse-dot {
  width: 0.45rem; height: 0.45rem; border-radius: 50%;
  background: #818cf8; flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.4; transform:scale(1.5); } }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 900; line-height: 1.06;
  letter-spacing: -0.04em; color: #fff;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.15s both;
}
.gradient-text {
  background: linear-gradient(135deg, #a5b4fc 0%, #c4b5fd 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem); line-height: 1.8;
  color: var(--muted); max-width: 600px; margin: 0 auto 2.25rem;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 0.875rem;
  justify-content: center; margin-bottom: 1.75rem;
  animation: fadeUp 0.8s ease 0.45s both;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  animation: fadeUp 0.8s ease 0.6s both;
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.2); font-size: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.2em; z-index: 1;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform:scaleY(0); transform-origin:top; opacity:0; }
  40%  { transform:scaleY(1); transform-origin:top; opacity:1; }
  80%  { transform:scaleY(1); transform-origin:bottom; opacity:0; }
  100% { transform:scaleY(0); }
}
@keyframes fadeUp   { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:none; } }

/* ════════════════ TRUST BAR ════════════════ */
.trust-bar {
  border-top: 1px solid var(--glass-b);
  border-bottom: 1px solid var(--glass-b);
  background: rgba(255,255,255,0.018);
  padding: 1.25rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(4,1fr); } }
.trust-item {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
}
.trust-icon { font-size: 1rem; }

/* ════════════════ PROBLEM ════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .problem-grid { grid-template-columns: repeat(4,1fr); } }
.problem-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  transition: border-color 0.25s;
}
.problem-card:hover { border-color: rgba(239,68,68,0.3); }
.problem-icon { font-size: 1.75rem; margin-bottom: 0.875rem; }
.problem-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.problem-card p  { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; }
.problem-cta {
  text-align: center;
  padding: 2rem; border-radius: 1rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(124,58,237,0.08));
  border: 1px solid rgba(99,102,241,0.18);
}
.problem-cta p { color: var(--muted); margin-bottom: 1rem; font-size: 1.05rem; }

/* ════════════════ LEISTUNGEN ════════════════ */
.services-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
  padding: 2rem; position: relative;
  display: flex; flex-direction: column;
}
.service-featured {
  border-color: rgba(139,92,246,0.35) !important;
  box-shadow: 0 0 40px rgba(99,102,241,0.12) !important;
}
.service-badge {
  position: absolute; top: -0.75rem; left: 1.75rem;
  background: var(--primary); color: #fff;
  font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.25rem 0.875rem; border-radius: 99px;
}
.service-icon-wrap {
  width: 3rem; height: 3rem; border-radius: 0.875rem;
  background: var(--c, rgba(99,102,241,0.15));
  border: 1px solid var(--b, rgba(99,102,241,0.25));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon-wrap svg { width: 1.375rem; height: 1.375rem; color: #a5b4fc; }
.service-card h3 { font-size: 1.125rem; font-weight: 800; color: #fff; margin-bottom: 0.625rem; }
.service-card > p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.service-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
  flex: 1; margin-bottom: 1.5rem;
}
.service-list li {
  font-size: 0.8125rem; color: var(--muted);
  padding-left: 1.25rem; position: relative;
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 0.42rem;
  width: 0.375rem; height: 0.375rem;
  border-radius: 50%; background: var(--primary);
}
.service-link {
  font-size: 0.875rem; font-weight: 700; color: #818cf8;
  text-decoration: none; transition: color 0.2s;
}
.service-link:hover { color: #a5b4fc; }

/* ════════════════ PROZESS ════════════════ */
.prozess-grid {
  display: grid; gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .prozess-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .prozess-grid { grid-template-columns: repeat(4,1fr); } }

.prozess-step {
  position: relative;
  padding: 1.75rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  transition: border-color 0.25s, transform 0.25s;
}
.prozess-step:hover { border-color: rgba(99,102,241,0.3); transform: translateY(-3px); }
.step-num {
  font-size: 3rem; font-weight: 900;
  color: rgba(99,102,241,0.2); line-height: 1;
  margin-bottom: 1rem; letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}
.step-body h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.step-body p  { font-size: 0.8125rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.step-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  color: #818cf8; background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.22);
  border-radius: 99px; padding: 0.2rem 0.7rem;
}
.prozess-cta { text-align: center; }

/* ════════════════ STATS ════════════════ */
.stats-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--glass-b);
  border-bottom: 1px solid var(--glass-b);
  background: rgba(255,255,255,0.015);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem 1.5rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-item { text-align: center; }
.stat-num {
  font-size: 2.75rem; font-weight: 900;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.4rem;
  background: linear-gradient(135deg, #a5b4fc, #93c5fd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.8125rem; color: var(--muted); line-height: 1.4; }

/* ════════════════ ÜBER MICH ════════════════ */
.about-wrap {
  display: grid; gap: 0; overflow: hidden;
}
@media (min-width: 900px) { .about-wrap { grid-template-columns: 280px 1fr; } }

.about-left {
  padding: 2.5rem;
  display: flex; flex-direction: column; align-items: flex-start;
  border-bottom: 1px solid var(--glass-b);
  background: linear-gradient(155deg, rgba(99,102,241,0.06), transparent);
}
@media (min-width: 900px) { .about-left { border-bottom: none; border-right: 1px solid var(--glass-b); } }

.portrait-wrap {
  width: 9rem; height: 9rem; border-radius: 1rem;
  overflow: hidden; margin-bottom: 1.25rem;
  box-shadow: 0 0 0 2px rgba(99,102,241,0.35);
}
.portrait-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-left h2 { font-size: 1.375rem; font-weight: 900; color: #fff; margin-bottom: 0.25rem; }
.about-role { font-size: 0.875rem; color: #818cf8; font-weight: 600; margin-bottom: 1.5rem; }
.about-contact { width: 100%; margin-top: auto; padding-top: 1.5rem; }

.about-right { padding: 2.5rem; }
.about-quote {
  font-size: 1.125rem; font-weight: 500; color: var(--text);
  line-height: 1.65; margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--primary);
}
.about-quote strong { color: #fff; }
.about-text { font-size: 0.9375rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; margin-top: 1.5rem; }
.tech-item {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-b);
  border-radius: 0.75rem; font-size: 0.875rem; font-weight: 500; color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.tech-item:hover { border-color: rgba(99,102,241,0.3); background: rgba(99,102,241,0.05); }
.tech-icon { font-size: 1.125rem; }

/* ════════════════ PAKETE ════════════════ */
.packages-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .packages-grid { grid-template-columns: repeat(3,1fr); align-items: start; } }

.package-card {
  padding: 2rem; display: flex; flex-direction: column; border-radius: 1.5rem;
}
.package-featured {
  background: linear-gradient(155deg, #1e1b4b 0%, #2e1065 100%);
  border: 1px solid rgba(139,92,246,0.4);
  box-shadow: 0 8px 48px rgba(99,102,241,0.2);
  position: relative;
}
@media (min-width: 768px) { .package-featured { transform: translateY(-1rem); } }
.package-featured-badge {
  position: absolute; top: -0.875rem; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.3rem 1.1rem; border-radius: 99px; white-space: nowrap;
}
.package-tag { font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.5rem; }
.package-title { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 0.375rem; }
.package-desc  { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }
.package-price { display: flex; align-items: baseline; gap: 0.375rem; margin-bottom: 1.5rem; }
.price-num { font-size: 2.5rem; font-weight: 900; color: #fff; letter-spacing: -0.04em; }
.price-per { font-size: 0.875rem; color: var(--muted); }
.package-features {
  list-style: none; flex: 1; display: flex; flex-direction: column;
  gap: 0.75rem; margin-bottom: 1.5rem;
}
.package-features li {
  font-size: 0.875rem; color: var(--text);
  padding-left: 1.375rem; position: relative;
}
.package-features li::before {
  content: ''; position: absolute; left: 0; top: 0.42rem;
  width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--primary);
}
.package-features-light li { color: rgba(255,255,255,0.9); }
.package-features-light li::before { background: #a5b4fc; }
.packages-note {
  text-align: center; margin-top: 2rem;
  font-size: 0.875rem; color: var(--dim);
}
.text-link {
  color: #818cf8; font-weight: 600; text-decoration: none; transition: color 0.2s;
}
.text-link:hover { color: #a5b4fc; }

/* ════════════════ FAQ ════════════════ */
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem; overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open], .faq-item:hover { border-color: rgba(99,102,241,0.3); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1rem; font-weight: 600; color: #fff;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 300;
  color: var(--muted); flex-shrink: 0; line-height: 1;
  transition: transform 0.3s, color 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--primary); }
.faq-body { padding: 0 1.5rem 1.25rem; }
.faq-body p { font-size: 0.9375rem; color: var(--muted); line-height: 1.75; }

/* ════════════════ KONTAKT ════════════════ */
.contact-wrapper {
  display: grid; gap: 3rem; align-items: start;
}
@media (min-width: 900px) { .contact-wrapper { grid-template-columns: 1fr 1fr; } }

.contact-left { padding-top: 0.5rem; }
.contact-left .section-tag { margin-bottom: 0.875rem; }
.contact-left .section-title { text-align: left; margin-bottom: 1rem; }
.contact-benefits {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin: 1.75rem 0;
}
.contact-benefit {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9375rem; color: var(--text);
}
.benefit-icon {
  width: 1.375rem; height: 1.375rem;
  border-radius: 50%; background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6875rem; color: #6ee7b7;
  flex-shrink: 0;
}
.contact-email {
  font-size: 0.9375rem; color: var(--muted);
  padding-top: 1rem; border-top: 1px solid var(--glass-b);
}

.contact-form-wrap { padding: 2.25rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group label {
  display: block; font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem; color: #fff;
  font-size: 0.9375rem; font-family: inherit;
  outline: none; resize: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.18);
}
.btn-submit { width: 100%; font-size: 1rem; padding: 0.9rem; margin-top: 0.25rem; position: relative; }
.spinner { width: 1.25rem; height: 1.25rem; animation: spin 0.8s linear infinite; position: absolute; }
.hidden { display: none !important; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-success {
  margin-top: 1rem; display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.28);
  border-radius: 0.75rem; color: #6ee7b7; font-size: 0.9375rem;
}
.form-success svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.form-error {
  margin-top: 1rem; padding: 0.875rem 1rem;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3);
  border-radius: 0.75rem; color: #fca5a5; font-size: 0.9375rem;
}

/* ════════════════ FOOTER ════════════════ */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-b);
  background: rgba(6,8,24,0.5);
}
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-logo { margin-bottom: 0.875rem; display: inline-flex; }
.footer-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }
.site-footer h4 {
  color: rgba(255,255,255,0.85); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer ul li, .site-footer ul a {
  font-size: 0.875rem; color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.site-footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--glass-b); padding-top: 1.5rem;
  text-align: center; font-size: 0.8125rem; color: var(--dim);
}

/* ════════════════ STICKY CTA (Mobile) ════════════════ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(6,8,24,0.97);
  border-top: 1px solid var(--glass-b);
  backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
@media (max-width: 767px) { .sticky-cta { display: flex; } }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { font-size: 0.875rem; font-weight: 600; color: var(--text); }

/* ════════════════ DSGVO CHECKBOX ════════════════ */
.checkbox-label {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.8125rem; color: var(--muted); cursor: pointer; line-height: 1.6;
}
.checkbox-label input[type="checkbox"] {
  width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.175rem;
  accent-color: var(--primary); cursor: pointer;
}
.checkbox-label a { color: #a5b4fc; text-decoration: underline; }
.checkbox-label a:hover { color: #c4b5fd; }

/* ════════════════ SCROLL REVEAL ════════════════ */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }
