:root {
  --dark-bg: #080808;
  --darker-bg: #050505;
  --electric-blue: #3b82f6;
  --electric-purple: #8b5cf6;
  --electric-teal: #0ea5e9;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --card-bg: #111111;
  --card-hover: #181818;
  --btn-primary: #3b82f6;
  --btn-primary-hover: #2563eb;
  --btn-secondary: #222222;
  --btn-outline: rgba(59, 130, 246, 0.15);
  --footer-bg: #050505;
  --header-height: 70px;
  --blue-glow: 0 0 20px rgba(59, 130, 246, 0.5);
  --purple-glow: 0 0 20px rgba(139, 92, 246, 0.5);
  --service-icon-size: 50px;
  --glass-bg: rgba(17, 17, 17, 0.8);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --section-spacing: 100px;
  --card-radius: 16px;
  --feature-highlight: #2563eb;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: #0a0614; /* Dunkles Blau-Violett */
  background-image:
    radial-gradient(
      circle at 10% 10%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(139, 92, 246, 0.04) 0%,
      transparent 30%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.9), var(--dark-bg) 20%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--electric-blue);
}

ul {
  list-style: none;
}

/* Header & Navigation */
header {
  background-color: rgba(8, 8, 8, 0.98);
  border-bottom: 1px solid var(--glass-border);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  padding: 10px;
  background: linear-gradient(
    135deg,
    var(--electric-blue),
    var(--electric-purple)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.logo-highlight {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-highlight::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.3),
    rgba(139, 92, 246, 0.3)
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
  filter: blur(2px);
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-menu li a {
  font-weight: 500;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.nav-menu li a:hover {
  color: var(--text-primary);
}

.nav-menu li a.nav-contact {
  color: var(--text-primary);
  background-color: rgba(59, 130, 246, 0.1);
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nav-menu li a.nav-contact:hover {
  background-color: rgba(59, 130, 246, 0.2);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
}

/* DSGVO Badge */
.dsgvo-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background-color: rgba(59, 130, 246, 0.15);
  color: var(--text-primary);
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  font-weight: 500;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
  letter-spacing: 0.5px;
}

.dsgvo-badge::before {
  content: "✓";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--electric-blue);
  border-radius: 50%;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.dsgvo-badge-small {
  display: inline-flex;
  align-items: center;
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--text-primary);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.dsgvo-badge-small::before {
  content: "✓";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--electric-blue);
  border-radius: 50%;
  margin-right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 180px 0 120px;
  /* Hauptgradient */
  background: radial-gradient(
    ellipse at top center,
    rgba(88, 28, 135, 0.15) 0%,
    rgba(15, 23, 42, 0.3) 40%,
    transparent 100%
  );
}

/* Hero Overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 7, 35, 0.8) 0%,
    rgba(25, 15, 50, 0.6) 20%,
    rgba(10, 6, 20, 0.9) 100%
  );
}

/* Saubere Hero-Hintergrund ohne Blur-Effekte */

/* Lila Glow hinter "KI-Lösungen" */
.ki-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle,
    rgba(147, 51, 234, 0.4) 0%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: -1;
}

/* Pulse Animation für Blur-Effekte entfernt */

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(
    to right,
    var(--text-primary) 0%,
    var(--text-secondary) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.one-liner {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(
    135deg,
    var(--electric-blue),
    var(--electric-purple)
  );
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.btn.primary:hover::before {
  left: 100%;
}

.btn.secondary {
  background: rgba(30, 41, 59, 0.6);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn.secondary:hover {
  background: rgba(51, 65, 85, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn.outline {
  background: rgba(59, 130, 246, 0.1);
  color: var(--electric-blue);
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
}

.btn.outline:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
  color: #fff;
}

/* Value Proposition Section */
.value-prop {
  padding: 100px 0;
}

.value-cards {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  flex: 1;
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-blue), #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 0.5rem;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: rgba(15, 23, 42, 0.5);
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background-color: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--electric-blue),
    var(--electric-purple)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(59, 130, 246, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-container {
  margin-bottom: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(139, 92, 246, 0.2)
  );
  position: relative;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.service-icon-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.5),
    rgba(139, 92, 246, 0.5)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.service-icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.workflow-icon::before,
.chat-icon::before,
.voice-icon::before,
.consulting-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--electric-blue),
    var(--electric-purple)
  );
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  opacity: 1;
  filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.5));
}

.workflow-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M3 12h4v9H3v-9zm14-4h4v13h-4V8zm-7-6h4v19h-4V2z' fill='rgba(59,130,246,1)'/%3E%3C/svg%3E");
}

.chat-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M22 12.999V20a1 1 0 0 1-1 1h-8v-8.001h9zm-11 0V21H3a1 1 0 0 1-1-1v-7.001h9zM11 3v7.999H2V4a1 1 0 0 1 1-1h8zm10 0a1 1 0 0 1 1 1v6.999h-9V3h8z' fill='rgba(59,130,246,1)'/%3E%3C/svg%3E");
}

.voice-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 23a7.5 7.5 0 0 0 7.5-7.5c0-.866-.23-1.697-.5-2.47-1.667 1.647-2.933 2.47-3.8 2.47 3.995-7 1.8-10-4.2-14 .5 5-2.796 7.274-4.138 8.537A7.5 7.5 0 0 0 12 23zm.71-17.765c3.241 2.75 3.257 4.887.753 9.274-.761 1.333.202 2.991 1.737 2.991 1.254 0 2.8-.932 4.454-2.796a5.5 5.5 0 1 1-6.944-9.469z' fill='rgba(59,130,246,1)'/%3E%3C/svg%3E");
}

.consulting-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm0-9.414l2.828-2.829 1.415 1.415L13.414 12l2.829 2.828-1.415 1.415L12 13.414l-2.828 2.829-1.415-1.415L10.586 12 7.757 9.172l1.415-1.415L12 10.586z' fill='rgba(59,130,246,1)'/%3E%3C/svg%3E");
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--electric-blue);
  font-weight: 600;
  text-align: center;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.service-visual {
  margin-top: auto;
  height: 160px;
  background-color: rgba(15, 23, 42, 0.3);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.workflow-visual {
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.03) 0%,
    rgba(59, 130, 246, 0.06) 100%
  );
}

.workflow-visual::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='30' stroke='rgba(59, 130, 246, 0.2)' stroke-width='1'/%3E%3Ccircle cx='50' cy='50' r='20' fill='rgba(59, 130, 246, 0.1)'/%3E%3Ccircle cx='50' cy='50' r='10' fill='rgba(59, 130, 246, 0.3)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
}

.chat-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.03) 0%,
    rgba(59, 130, 246, 0.06) 100%
  );
}

.chat-demo {
  width: 80%;
  height: 45px;
  background-color: rgba(30, 41, 59, 0.8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.chat-input {
  flex: 1;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

.chat-button {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.2);
  position: relative;
}

.chat-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent rgba(59, 130, 246, 0.8);
}

.voice-visual {
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.03) 0%,
    rgba(59, 130, 246, 0.06) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.voice-visual::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='60' viewBox='0 0 300 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='10' y='25' width='10' height='10' fill='rgba(59, 130, 246, 0.2)'/%3E%3Crect x='30' y='20' width='10' height='20' fill='rgba(59, 130, 246, 0.3)'/%3E%3Crect x='50' y='15' width='10' height='30' fill='rgba(59, 130, 246, 0.2)'/%3E%3Crect x='70' y='10' width='10' height='40' fill='rgba(59, 130, 246, 0.4)'/%3E%3Crect x='90' y='5' width='10' height='50' fill='rgba(59, 130, 246, 0.3)'/%3E%3Crect x='110' y='15' width='10' height='30' fill='rgba(59, 130, 246, 0.5)'/%3E%3Crect x='130' y='20' width='10' height='20' fill='rgba(59, 130, 246, 0.2)'/%3E%3Crect x='150' y='25' width='10' height='10' fill='rgba(59, 130, 246, 0.3)'/%3E%3Crect x='170' y='15' width='10' height='30' fill='rgba(59, 130, 246, 0.4)'/%3E%3Crect x='190' y='5' width='10' height='50' fill='rgba(59, 130, 246, 0.3)'/%3E%3Crect x='210' y='10' width='10' height='40' fill='rgba(59, 130, 246, 0.2)'/%3E%3Crect x='230' y='20' width='10' height='20' fill='rgba(59, 130, 246, 0.3)'/%3E%3Crect x='250' y='15' width='10' height='30' fill='rgba(59, 130, 246, 0.2)'/%3E%3Crect x='270' y='25' width='10' height='10' fill='rgba(59, 130, 246, 0.3)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.consulting-visual {
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.03) 0%,
    rgba(59, 130, 246, 0.06) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.consulting-visual::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' stroke='rgba(59, 130, 246, 0.2)' stroke-width='8' stroke-dasharray='10 5'/%3E%3Ccircle cx='50' cy='50' r='30' fill='rgba(59, 130, 246, 0.1)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
}

/* Demo Section */
.demo {
  padding: 100px 0;
}

.demo h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.demo-container {
  margin-bottom: 2rem;
  position: relative;
}

.dashboard-preview {
  background-color: rgba(10, 16, 31, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(59, 130, 246, 0.15);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.dashboard-preview::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      circle at bottom right,
      rgba(139, 92, 246, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at top left,
      rgba(59, 130, 246, 0.08),
      transparent 40%
    );
  z-index: -1;
  border-radius: 18px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}

.dashboard-logo {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.dashboard-logo span {
  color: var(--electric-blue);
}

.dashboard-controls {
  width: 80px;
  height: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dashboard-panel {
  background-color: rgba(30, 41, 59, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1.75rem;
  position: relative;
  border: 1px solid rgba(59, 130, 246, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.dashboard-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.25);
}

.main-panel {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
}

.dashboard-panel-title {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.dashboard-chart {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.chart-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(
    var(--electric-purple) 0%,
    var(--electric-blue) 70%,
    rgba(30, 41, 59, 0.3) 70%,
    rgba(30, 41, 59, 0.3) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
  margin: 10px auto;
}

.chart-circle::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(10, 16, 31, 0.7);
  backdrop-filter: blur(5px);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.chart-number {
  background: linear-gradient(135deg, var(--text-primary), #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.revenue-panel {
  display: flex;
  flex-direction: column;
}

.revenue-amount {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), #a5b4fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
}

.revenue-trend {
  color: #10b981; /* Green for positive */
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 3px 10px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.revenue-chart {
  flex-grow: 1;
  position: relative;
  height: 70px;
  overflow: hidden;
  border-radius: 8px;
  background-color: rgba(10, 16, 31, 0.3);
}

.revenue-chart::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100%' height='70' viewBox='0 0 200 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q20,45 40,40 T80,30 T120,40 T160,20 T200,10' stroke='rgba(59, 130, 246, 0.8)' stroke-width='2' fill='none'/%3E%3Cpath d='M0,70 L0,50 Q20,45 40,40 T80,30 T120,40 T160,20 T200,10 L200,70 Z' fill='rgba(59, 130, 246, 0.15)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.3));
}

.revenue-chart::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: chart-shimmer 2s infinite;
}

@keyframes chart-shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.leads-panel {
  display: flex;
  flex-direction: column;
  position: relative;
}

.leads-amount {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    #c4b5fd
  ); /* Slight purple tint */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
}

.leads-trend {
  color: #10b981; /* Green for positive */
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: inline-block;
  padding: 3px 10px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.leads-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  padding-left: 18px;
}

.leads-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: linear-gradient(
    135deg,
    var(--electric-purple),
    var(--electric-blue)
  );
  border-radius: 50%;
  opacity: 0.7;
}

.demo-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 1rem;
  padding: 0.5rem;
  background: rgba(10, 16, 31, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.demo-tab {
  background: linear-gradient(
    145deg,
    rgba(20, 30, 48, 0.6),
    rgba(15, 23, 42, 0.6)
  );
  border: none;
  padding: 12px 22px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow:
    3px 3px 6px rgba(0, 0, 0, 0.2),
    -3px -3px 6px rgba(255, 255, 255, 0.02);
}

.demo-tab:hover {
  color: var(--electric-blue);
  transform: translateY(-2px);
  box-shadow:
    4px 4px 8px rgba(0, 0, 0, 0.25),
    -4px -4px 8px rgba(255, 255, 255, 0.03);
}

.demo-tab.active {
  color: white;
  background: linear-gradient(
    135deg,
    var(--electric-blue),
    var(--electric-purple)
  );
  box-shadow:
    inset 2px 2px 5px rgba(0, 0, 0, 0.2),
    inset -2px -2px 5px rgba(255, 255, 255, 0.1),
    0 0 15px rgba(59, 130, 246, 0.4);
  transform: translateY(-3px);
}

.demo-panel {
  display: none;
}

.demo-panel.active {
  display: block;
}

.demo-preview {
  text-align: center;
}

.demo-preview h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.demo-preview p {
  color: var(--text-secondary);
  margin-top: 1.5rem;
}

.demo-animation {
  margin: 0 auto;
  max-width: 600px;
}

.demo-device {
  background-color: #0a101f;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.demo-screen {
  background-color: #1a2435;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}

.demo-header {
  background-color: #0a101f;
  padding: 10px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.demo-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-circle.red {
  background-color: #ef4444;
}

.demo-circle.yellow {
  background-color: #f59e0b;
}

.demo-circle.green {
  background-color: #10b981;
}

.demo-body {
  padding: 20px;
  min-height: 260px;
  position: relative;
}

.demo-email,
.demo-message,
.demo-lead-card,
.demo-lead-analysis,
.demo-lead-score,
.demo-response,
.demo-calendar-header,
.demo-calendar-grid,
.demo-time-slots {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  height: 30px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.demo-email::before,
.demo-message::before,
.demo-lead-card::before,
.demo-lead-analysis::before,
.demo-lead-score::before,
.demo-response::before,
.demo-calendar-header::before,
.demo-calendar-grid::before,
.demo-time-slots::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.demo-email.active,
.demo-message.active {
  background-color: rgba(59, 130, 246, 0.2);
}

.demo-email {
  height: 40px;
}

.demo-message {
  width: 70%;
  height: 40px;
}

.demo-message.user {
  margin-left: auto;
  background-color: rgba(59, 130, 246, 0.15);
}

.demo-message.bot {
  background-color: rgba(255, 255, 255, 0.05);
}

.demo-response {
  height: 60px;
  margin-top: 20px;
  background-color: rgba(59, 130, 246, 0.1);
  animation: typewriter 2s steps(40) 1s forwards;
  width: 0;
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.demo-calendar {
  position: relative;
}

.demo-calendar-header {
  height: 40px;
  margin-bottom: 15px;
}

.demo-calendar-grid {
  height: 150px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 5px;
}

.demo-time-slots {
  height: 80px;
  margin-top: 20px;
}

.demo-lead-card,
.demo-lead-analysis {
  height: 80px;
  margin-bottom: 15px;
}

.demo-lead-score {
  height: 50px;
  background-color: rgba(59, 130, 246, 0.15);
}

.demo-cta {
  text-align: center;
  margin-top: 3rem;
}

.demo-cta-subtext {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Partners Section */
.partners {
  padding: 5rem 0;
  background: var(--slate-950);
}

.partners h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Partner Container */
.partner-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
  height: 120px;
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 70px;
  padding: 20px 40px;
  background-color: rgba(15, 23, 42, 0.4);
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
  position: absolute;
  min-width: 800px;
  animation: scroll-logos 20s linear infinite;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.glowing-logo {
  height: 40px;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.7));
  animation: logo-glow 3s infinite alternate;
  transition: all 0.3s ease;
}

@keyframes logo-glow {
  0% {
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.9));
  }
}

.glowing-logo:hover {
  filter: drop-shadow(0 0 20px rgba(59, 130, 246, 1));
  transform: scale(1.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .partners h2 {
    font-size: 2rem;
  }

  .partner-container {
    height: auto;
    overflow: visible;
  }

  .logo-box {
    position: static;
    animation: none;
    min-width: auto;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
  }

  .glowing-logo {
    height: 30px;
  }
}

/* CTA Section */
.cta {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 120px 0;
  text-align: center;
  /* Hauptgradient */
  background: radial-gradient(
    ellipse at center,
    rgba(147, 51, 234, 0.1) 0%,
    transparent 50%
  );
}

/* Linker Seitenrand - Pink Glow */
.cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(
    90deg,
    rgba(236, 72, 153, 0.3) 0%,
    rgba(147, 51, 234, 0.2) 30%,
    transparent 100%
  );
  filter: blur(60px);
  z-index: 1;
}

/* Rechter Seitenrand - Pink Glow */
.cta::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(
    -90deg,
    rgba(236, 72, 153, 0.3) 0%,
    rgba(147, 51, 234, 0.2) 30%,
    transparent 100%
  );
  filter: blur(60px);
  z-index: 1;
}

/* Unterer Rand - Pink Glow */
.cta-bottom-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    0deg,
    rgba(236, 72, 153, 0.5) 0%,
    rgba(219, 39, 119, 0.3) 20%,
    rgba(147, 51, 234, 0.2) 50%,
    transparent 100%
  );
  filter: blur(30px);
  z-index: 1;
}

.cta h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--text-primary),
    rgba(165, 180, 252, 0.8)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-conversion {
  margin-bottom: 3.5rem;
  background: rgba(10, 16, 31, 0.4);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
}

.cta-conversion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--electric-blue),
    var(--electric-purple)
  );
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.cta-trust {
  margin-bottom: 2rem;
}

.trust-label {
  display: inline-block;
  color: var(--text-secondary);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 24px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  padding: 100px 0 30px;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 -8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

footer::before,
footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

footer::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
}

footer::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    transparent 70%
  );
  bottom: -250px;
  right: -250px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3.5rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.footer-column h3 {
  font-size: 1.25rem;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-blue), transparent);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.footer-links a::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric-blue);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--electric-blue);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  opacity: 1;
  background: linear-gradient(
    135deg,
    var(--electric-blue),
    var(--electric-purple)
  );
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.footer-section p,
.footer-section li {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-submit {
  width: 100%;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px;
  background: linear-gradient(
    135deg,
    var(--electric-blue),
    var(--electric-purple)
  );
  color: white;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.btn-submit::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition:
    transform 0.5s,
    opacity 1s;
}

.btn-submit:active::after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

.newsletter-form button {
  padding: 0 20px;
  background: linear-gradient(
    135deg,
    var(--electric-blue),
    var(--electric-purple)
  );
  color: white;
  border: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #2563eb, #8b5cf6);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-links,
.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: var(--electric-blue);
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Einfaches Dashboard Styling */
.simple-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  height: 100%;
  background-color: var(--card-bg);
}

.dashboard-row {
  display: flex;
  gap: 20px;
  flex: 1;
}

.dashboard-card {
  flex: 1;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.blue-gradient {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.purple-gradient {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.teal-gradient {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
}

.orange-gradient {
  background: linear-gradient(135deg, #f97316, #c2410c);
}

.dashboard-card-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  margin-right: 20px;
}

.dashboard-card-icon svg {
  color: white;
  opacity: 0.9;
}

.dashboard-card-content {
  flex: 1;
}

.dashboard-card-value {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.dashboard-card-label {
  font-size: 0.85rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hintergrund-Animation */
.dashboard-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.dashboard-card:hover::after {
  opacity: 1;
}

/* Interaktives Dashboard Styling */
.interactive-dashboard {
  width: 100%;
  height: 450px;
  background-color: rgba(8, 8, 8, 0.95);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: box-shadow 0.3s ease;
}

.interactive-dashboard:hover {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(59, 130, 246, 0.2);
}

.dashboard-header {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background-color: rgba(8, 8, 8, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.dashboard-3d-container {
  flex: 1;
  background: linear-gradient(to bottom, #0a0a0a, #141414);
  position: relative;
  overflow: hidden;
  perspective: 800px;
}

/* Neues AI Core Element */
.ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.core-circle {
  width: 80px;
  height: 80px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
  position: relative;
  animation: pulse 2s infinite ease-out;
}

.core-circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.6);
  top: 0;
  left: 0;
  animation: ripple 3s infinite ease-out;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.core-label {
  position: absolute;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.7);
}

/* Knotencontainer */
.node-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/* Knotendefinitionen */
.node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 8;
}

.node-circle {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(30, 30, 30, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.node[data-type="email"] .node-circle {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(59, 130, 246, 0.1)
  );
}

.node[data-type="document"] .node-circle {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.2),
    rgba(139, 92, 246, 0.1)
  );
}

.node[data-type="crm"] .node-circle {
  background: linear-gradient(
    135deg,
    rgba(14, 165, 233, 0.2),
    rgba(14, 165, 233, 0.1)
  );
}

.node[data-type="analytics"] .node-circle {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.2),
    rgba(245, 158, 11, 0.1)
  );
}

.node-circle::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.node[data-type="email"] .node-circle::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-width='2' d='M22,3H2C0.9,3,0,3.9,0,5v14c0,1.1,0.9,2,2,2h20c1.1,0,2-0.9,2-2V5C24,3.9,23.1,3,22,3z M22,5v3.6l-10,6.4L2,8.6V5H22z M2,19V9.7l10,6.4l10-6.4V19H2z'/%3E%3C/svg%3E");
}

.node[data-type="document"] .node-circle::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-width='2' d='M14,2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2V8L14,2z M14,8V2.4L19.6,8H14z M16,13H8v-1h8V13z M16,16H8v-1h8V16z M16,19H8v-1h8V19z'/%3E%3C/svg%3E");
}

.node[data-type="crm"] .node-circle::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-width='2' d='M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,6c1.7,0,3,1.3,3,3s-1.3,3-3,3s-3-1.3-3-3S10.3,6,12,6z M12,20c-2.7,0-5.1-1.4-6.5-3.5c0-2.2,4.3-3.5,6.5-3.5s6.5,1.3,6.5,3.5C17.1,18.6,14.7,20,12,20z'/%3E%3C/svg%3E");
}

.node[data-type="analytics"] .node-circle::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-width='2' d='M4,2h16c1.1,0,2,0.9,2,2v16c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V4C2,2.9,2.9,2,4,2z M6,14l3-3l4,4l8-8 M14,9h3v3'/%3E%3C/svg%3E");
}

.node:hover .node-circle {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.node-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.node:hover .node-label {
  color: var(--text-primary);
  text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(to left, var(--electric-blue), transparent);
  opacity: 0.6;
  z-index: 1;
}

/* Partikel-Animation */
.flow-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--electric-blue);
  box-shadow: 0 0 10px var(--electric-blue);
  filter: blur(2px);
  opacity: 0.6;
}

.p1 {
  top: 30%;
  left: 40%;
  animation: moveParticle1 6s infinite alternate ease-in-out;
}

.p2 {
  top: 60%;
  left: 30%;
  animation: moveParticle2 8s infinite alternate ease-in-out;
}

.p3 {
  top: 40%;
  right: 30%;
  animation: moveParticle3 7s infinite alternate ease-in-out;
}

@keyframes moveParticle1 {
  0% {
    transform: translate(0, 0);
    opacity: 0.8;
  }
  50% {
    transform: translate(60px, 30px);
    opacity: 0.4;
  }
  100% {
    transform: translate(100px, -50px);
    opacity: 0.8;
  }
}

@keyframes moveParticle2 {
  0% {
    transform: translate(0, 0);
    opacity: 0.6;
  }
  50% {
    transform: translate(70px, -40px);
    opacity: 0.3;
  }
  100% {
    transform: translate(30px, -80px);
    opacity: 0.6;
  }
}

@keyframes moveParticle3 {
  0% {
    transform: translate(0, 0);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50px, 30px);
    opacity: 0.4;
  }
  100% {
    transform: translate(-90px, 60px);
    opacity: 0.7;
  }
}

/* Metriken-Bereich */
.dashboard-metrics {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 20px;
  background-color: rgba(8, 8, 8, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.node-label {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.9);
  position: relative;
  z-index: 2;
}

/* Verbindungs-Nodes */
.node-connection {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-left {
  transform: translate(-100px, -100px);
}

.top-right {
  transform: translate(100px, -100px);
}

.bottom-left {
  transform: translate(-100px, 100px);
}

.bottom-right {
  transform: translate(100px, 100px);
}

.node {
  width: 60px;
  height: 60px;
  background: rgba(30, 30, 30, 0.8);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  z-index: 3;
  cursor: pointer;
}

.node:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
  border-color: rgba(59, 130, 246, 0.6);
}

.node-icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) invert(0.7) sepia(1) hue-rotate(190deg) saturate(5);
}

.connection-label {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.connection-line {
  position: absolute;
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.8),
    rgba(59, 130, 246, 0.1)
  );
  z-index: 2;
}

.top-left .connection-line {
  transform: rotate(45deg) translate(50px, 0);
  right: -40px;
}

.top-right .connection-line {
  transform: rotate(-45deg) translate(-50px, 0);
  left: -40px;
}

.bottom-left .connection-line {
  transform: rotate(-45deg) translate(50px, 0);
  right: -40px;
}

.bottom-right .connection-line {
  transform: rotate(45deg) translate(-50px, 0);
  left: -40px;
}

.data-flow-particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.dashboard-metrics {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  background-color: rgba(8, 8, 8, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.metric {
  text-align: center;
}

.metric-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.metric-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Service Cards auf mobilen Geräten */
/* Service Cards für mobile Geräte */
@media (max-width: 991px) {
  #services {
    padding: 60px 0;
  }

  #services .container {
    padding: 0 10px;
  }

  .service-cards {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .service-card {
    width: 100%;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background-color: rgba(15, 23, 42, 0.5);
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-align: center;
    color: var(--electric-blue);
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 0 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    hyphens: auto;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto;
    padding: 0 5px;
    color: var(--text-secondary);
    width: 100%;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .service-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
  }

  /* Korrektur für Dienstleistungen Überschrift */
  #services h2 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    text-align: center;
    color: var(--text-primary);
    font-weight: 700;
  }
}

/* Mobile & Desktop Anzeigesteuerung */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.partners h2 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.8rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  /* Umschalten zwischen Desktop und Mobile Ansicht */
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .mobile-partner-grid {
    display: grid !important;
  }

  .value-cards {
    flex-direction: column;
    max-width: 500px;
    margin: 3rem auto 0;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .one-liner {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: rgba(15, 23, 42, 0.95);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: 0.3s;
    padding-top: calc(var(--header-height) + 20px);
    justify-content: flex-start;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
    display: flex !important;
  }

  .nav-item {
    margin: 1.2rem 0;
    width: 100%;
    display: block;
  }

  .nav-link,
  .nav-contact {
    display: block;
    font-size: 1.3rem;
    padding: 1rem;
    color: var(--text-primary) !important;
    font-weight: 600;
    border-radius: 8px;
    background-color: rgba(30, 41, 59, 0.4);
    width: 80%;
    margin: 0 auto;
    transition: all 0.3s ease;
  }

  .nav-link:hover,
  .nav-contact:hover {
    background-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--electric-blue) !important;
  }

  /* Ensure visibility of menu items */
  .nav-menu.active .nav-item {
    opacity: 1;
    visibility: visible;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .one-liner {
    font-size: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .one-liner {
    font-size: 1rem;
  }

  .demo-tabs {
    flex-direction: column;
    align-items: center;
  }

  .demo-tab {
    width: 100%;
    max-width: 250px;
  }

  .partner-logos {
    gap: 1.5rem;
  }

  .partner-logos img {
    height: 30px;
  }

  .footer-bottom {
    gap: 1rem;
  }

  .footer-links,
  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}
