:root {
  color-scheme: dark;
  --bg: #030305;
  --bg-alt: #0a0a0f;
  --text-main: #ffffff;
  --text-muted: #9ba1a6;
  --border: rgba(255, 255, 255, 0.08);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --accent: #00d2ff;
  --accent-glow: rgba(0, 210, 255, 0.4);
}

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

body {
  background: radial-gradient(circle at top center, #131520 0%, var(--bg) 40%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 0%, #a0a5aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 30px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 150px 0;
  border-bottom: 1px solid var(--border);
}

.section-header {
  margin-bottom: 80px;
  max-width: 800px;
}

/* Header */
.top-announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #1a1a2e 0%, #2d1b2e 50%, #1a1a2e 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-main);
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 101;
    letter-spacing: 0.02em;
    min-height: 45px; /* Mindesthöhe garantieren */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 900px) {
    .top-announcement-bar {
      font-size: 0.75rem;
      padding: 8px 15px; /* Etwas mehr Seitenabstand */
      min-height: 50px; /* Auf dem Handy etwas höher für 2 Zeilen */
    }
  }

.top-announcement-bar .highlight {
  color: #ff3366;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 51, 102, 0.4);
}

.site-header {
  position: fixed;
  top: 60px; /* Offset for announcement bar + spacing */
  left: 50%;
  transform: translateX(-50%);
  width: 95%; /* Etwas breiter für mehr Platz */
  max-width: 1400px; /* Breiterer Container für die Navigation */
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
    .site-header {
      top: 60px; /* Mehr Abstand nach oben auf dem Handy, damit es nicht in die Bar rutscht */
      width: 95%;
      padding: 12px 20px;
    }
  }

/* --- Preloader (Elektro-Effekt) --- */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-svg {
  width: 400px;
  height: auto;
  overflow: visible;
}
.power-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: shootPower 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  filter: drop-shadow(0 0 10px var(--accent-glow));
}
.preloader-text {
  font-size: 70px;
  font-family: var(--font-sans);
  font-weight: 900;
  fill: transparent;
  stroke: rgba(255,255,255,0.1);
  stroke-width: 1px;
  animation: pulseLogo 1.5s 1.2s forwards;
}
@keyframes shootPower {
  0% { stroke-dashoffset: 1000; }
  100% { stroke-dashoffset: 0; }
}
@keyframes pulseLogo {
  0% { fill: transparent; stroke: rgba(255,255,255,0.1); }
  30% { fill: var(--text-main); stroke: var(--accent); filter: drop-shadow(0 0 20px var(--accent)); }
  100% { fill: transparent; stroke: var(--accent); filter: drop-shadow(0 0 0px transparent); }
}

/* Nav Logo SVG (Endlos Animation) */
.nav-logo-svg {
  width: 180px;
  height: auto;
  display: flex;
  align-items: center;
  position: relative;
  background: transparent;
  overflow: visible;
}
.power-line-loop {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: shootPowerNav 3s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}
.nav-preloader-text {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 60px;
  fill: transparent;
  stroke: var(--accent);
  stroke-width: 1.5px;
  animation: pulseLogoNav 3s infinite;
}
@keyframes shootPowerNav {
  0% { stroke-dashoffset: 1200; }
  50%, 100% { stroke-dashoffset: 0; }
}
@keyframes pulseLogoNav {
  0%, 100% { fill: transparent; stroke: rgba(255,255,255,0.2); filter: drop-shadow(0 0 0px transparent); }
  30% { fill: transparent; stroke: var(--accent); filter: drop-shadow(0 0 12px var(--accent)); }
}

.brand {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text-main);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 5px;
}

.nav-links {
  display: flex;
  gap: 15px; /* Noch weniger Abstand, da viele Links vorhanden sind */
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 10px;
  }
  .nav-links a {
    font-size: 0.8rem;
  }
}

@media (max-width: 900px) {
  .mobile-nav-toggle {
    display: block;
    z-index: 102;
  }

  .nav-links {
    display: none; /* hidden by default on mobile */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 101;
  }

  .nav-links.active {
    display: flex;
  }
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-alt);
  min-width: 260px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  padding: 10px 0;
  z-index: 200;
  border-radius: 4px;
}

.nav-dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-main);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 8px;
}

.btn-primary {
  background: var(--text-main);
  color: var(--bg);
  box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--text-main);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  max-width: 1100px;
}

.hero-desc {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  max-width: 700px;
  margin: 40px 0;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-demo-screen {
  position: relative;
  height: 100%;
  padding: 14px;
  background:
    radial-gradient(circle at top right, rgba(0, 210, 255, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(9, 11, 18, 0.98) 0%, rgba(4, 5, 8, 1) 100%);
}

.hero-demo-topline {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.hero-demo-pill-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: heroPulse 1.6s ease-in-out infinite;
}

.hero-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 0.9fr);
  gap: 14px;
}

.hero-demo-panel {
  min-height: 204px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.hero-panel-title {
  margin-bottom: 12px;
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-chat-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-bubble {
  max-width: 94%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.45;
  animation: heroMessageFloat 5s ease-in-out infinite;
}

.hero-bubble-ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #eef3f7;
}

.hero-bubble-user {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.22), rgba(176, 38, 255, 0.28));
  border: 1px solid rgba(0, 210, 255, 0.24);
  color: #fff;
  box-shadow: 0 0 24px rgba(0, 210, 255, 0.12);
}

.hero-bubble-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: max-content;
  color: var(--text-main);
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero-typewriter::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.95em;
  margin-left: 3px;
  background: currentColor;
  vertical-align: -1px;
  animation: heroCaretBlink 0.8s steps(1) infinite;
}

.hero-demo-panel-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-stat-card {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.74rem;
}

.hero-stat-card strong {
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-stat-card-accent {
  background: linear-gradient(135deg, rgba(0, 210, 255, 0.09), rgba(176, 38, 255, 0.14));
  border-color: rgba(0, 210, 255, 0.18);
}

.hero-demo-glow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent), 0 0 50px rgba(0, 210, 255, 0.35);
  animation: heroOrbPulse 3s ease-in-out infinite;
}

.hero-phone-ui {
  height: 100%;
  padding: 36px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    radial-gradient(circle at top center, rgba(176, 38, 255, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(10, 10, 18, 0.98) 0%, rgba(4, 4, 8, 1) 100%);
}

.hero-phone-header {
  margin-bottom: 8px;
}

.hero-phone-header span {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-phone-header strong {
  display: block;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 600;
}

.hero-phone-card {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  animation: heroCardRise 4.6s ease-in-out infinite;
}

.hero-phone-card small,
.hero-phone-card span {
  display: block;
  color: var(--text-muted);
  font-size: 0.68rem;
}

.hero-phone-card strong {
  display: block;
  margin: 6px 0;
  color: var(--text-main);
  font-size: 0.87rem;
  line-height: 1.35;
}

.hero-phone-card-primary {
  background: linear-gradient(135deg, rgba(176, 38, 255, 0.22), rgba(0, 210, 255, 0.14));
  border-color: rgba(176, 38, 255, 0.25);
}

.hero-phone-card-delay-1 {
  animation-delay: 0.8s;
}

.hero-phone-card-delay-2 {
  animation-delay: 1.6s;
}

.hero-phone-cta {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #b026ff, #7f21ff);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 0 18px rgba(176, 38, 255, 0.32);
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

@keyframes heroCaretBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes heroMessageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes heroOrbPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes heroCardRise {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* Partner Ticker */
.partner-ticker-wrapper {
  overflow: hidden;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0)),
    radial-gradient(circle at center, rgba(0, 210, 255, 0.05), transparent 65%);
  display: flex;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partner-ticker {
  display: flex;
  gap: 80px;
  animation: ticker 30s linear infinite;
  align-items: center;
}

.partner-logo {
  height: 30px;
  opacity: 0.78;
  filter: saturate(1.05) brightness(0.95);
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}

.partner-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: saturate(1.25) brightness(1.08);
}

.partner-logo.brand-google {
  filter: saturate(1.12) brightness(0.98) drop-shadow(0 0 10px rgba(66, 133, 244, 0.18));
}

.partner-logo.brand-microsoft {
  filter: saturate(1.08) brightness(0.96) drop-shadow(0 0 10px rgba(127, 186, 0, 0.14));
}

.partner-logo.brand-meta {
  filter: saturate(1.1) brightness(0.98) drop-shadow(0 0 12px rgba(8, 102, 255, 0.18));
}

.partner-logo.brand-shopify {
  filter: saturate(1.1) brightness(0.98) drop-shadow(0 0 12px rgba(149, 191, 71, 0.18));
}

.partner-logo.brand-strato {
  filter: saturate(1.05) brightness(0.98) drop-shadow(0 0 12px rgba(255, 77, 77, 0.14));
}

.partner-logo.brand-google:hover,
.partner-logo.brand-microsoft:hover,
.partner-logo.brand-meta:hover,
.partner-logo.brand-shopify:hover,
.partner-logo.brand-strato:hover {
  opacity: 1;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Forms & Quiz */
.input-group {
  margin-bottom: 20px;
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.input-group input {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
  font-family: inherit;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-color: var(--text-main);
  outline: none;
}

.quiz-container {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-option {
  display: block;
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  font-size: 1rem;
}

.quiz-option:hover, .quiz-option.selected {
  border-color: var(--text-main);
  color: var(--text-main);
  background: rgba(255,255,255,0.05);
  transform: translateX(5px);
}

.quiz-question {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--text-main);
}

.form-row input {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-main);
  margin-bottom: 15px;
}

.form-row input:focus {
  border-color: var(--text-main);
  outline: none;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Cards */
.minimal-card {
  padding: 40px;
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.minimal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.minimal-card h3 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.minimal-card ul {
  list-style: none;
  margin-top: 30px;
  flex-grow: 1;
}

.minimal-card ul li {
  padding: 15px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
}

/* Price Card Specific */
.price-val {
  font-size: 3rem;
  font-weight: 400;
  margin: 20px 0;
  letter-spacing: -0.05em;
}

.price-val span {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Founder / Reviews */
.portrait-box {
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.portrait-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.portrait-box:hover img {
  filter: grayscale(0%);
}

/* Utility */
.highlight {
  color: var(--text-main);
  font-weight: 500;
}

/* Old Subpage Styles Adaptations */
.seo-content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 5%;
}

.seo-content-section h2 {
  font-size: 2rem;
  margin-top: 60px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.seo-content-section p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.seo-highlight-box {
  background: rgba(255,255,255,0.03);
  border-left: 4px solid var(--text-main);
  padding: 30px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
}

.seo-checklist {
  list-style: none;
  margin: 30px 0;
}

.seo-checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--text-muted);
}

.seo-checklist li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--text-main);
  font-weight: bold;
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  padding: 80px 20px 40px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  text-align: center;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center; /* Zentriert die Listen-Blöcke */
  text-align: center;    /* Zentriert den Text INNERHALB der Blöcke */
}
.footer-grid div {
  display: flex;
  flex-direction: column;
  align-items: center; /* Zwingt die Links in die exakte Mitte */
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: start;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

.footer-grid h4 {
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-main);
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-grid a:hover {
  color: var(--text-main);
}

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

.footer-links li {
  list-style: none;
}

/* =========================================
   AI CHAT WIDGET
   ========================================= */
.ai-chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000; /* Erhöht, damit es über der Navigation liegt */
  font-family: var(--font-sans);
}

.ai-chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ai-chat-toggle:hover {
  transform: scale(1.1);
  border-color: var(--text-main);
}

.ai-chat-tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--text-main);
  color: var(--bg);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.ai-chat-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 24px;
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: var(--text-main) transparent transparent transparent;
}

.ai-chat-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.ai-chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  transform-origin: bottom right;
  transform: scale(0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 400px) {
  .ai-chat-window {
    width: calc(100vw - 40px);
    height: 60vh;
  }
}

.ai-chat-header {
  padding: 15px 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-chat-messages::-webkit-scrollbar {
  width: 6px;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
  animation: msgPop 0.3s ease forwards;
}

@keyframes msgPop {
  0% { opacity: 0; transform: translateY(10px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.ai-message {
  background: rgba(255,255,255,0.05);
  color: var(--text-main);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border);
}

.user-message {
  background: var(--text-main);
  color: var(--bg);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ai-chat-input-area {
  padding: 15px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
}

#ai-chat-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
}

#ai-chat-input::placeholder {
  color: var(--text-muted);
}

#ai-chat-send {
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s;
}

#ai-chat-send:hover {
  background: rgba(255,255,255,0.1);
}

.quick-reply-btn {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.quick-reply-btn:hover {
  border-color: var(--text-main);
  color: var(--text-main);
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px !important;
  width: fit-content;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typing 1s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
/* --- NEW HEADER FIXES --- */
.site-header {
  position: absolute !important;
  top: 60px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 90% !important;
  max-width: 1200px !important;
  padding: 12px 25px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  z-index: 100 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 100px !important;
  box-shadow: none !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  margin-right: auto !important;
}

.nav-links {
  display: flex !important;
  gap: 20px !important;
  align-items: center !important;
  margin-left: auto !important;
}

.nav-links a {
  text-decoration: none !important;
  color: #e0e0e0 !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.nav-links a:hover {
  color: var(--accent) !important;
}

.nav-login-btn {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  padding: 8px 18px !important;
  border-radius: 20px !important;
  color: #fff !important;
}

.nav-login-btn::before,
.nav-login-btn::after,
.nav-login-btn i,
.nav-login-btn svg {
  content: none !important;
  display: none !important;
}

.nav-login-btn:hover {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #000 !important;
}

@media (max-width: 1100px) {
  .nav-links {
    display: none !important; /* Hide links on small screens, show mobile menu */
  }
}

/* Fix for mobile nav to still work when active */
@media (max-width: 1100px) {
  .nav-links:not(.active) {
    display: none !important;
  }
  .nav-links.active {
    display: flex !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    flex-direction: column !important;
    background: rgba(10, 10, 15, 0.95) !important;
    padding: 20px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
  }
}

/* Center the Pakete Section Header */
#pakete .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}



/* --- ABSOLUTE FIX FÜR DIE NAVIGATION --- */
header {
  position: absolute !important;
  top: 0px !important; 
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 95% !important;
  max-width: 1400px !important;
  padding: 15px 30px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  z-index: 9999 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-radius: 100px !important;
  box-shadow: none !important;
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  header {
    top: 0px !important;
    padding: 12px 20px !important;
  }
}


/* MOBILE HERO FIX */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .hero-mockups {
    display: block !important;
    width: min(100%, 360px);
    margin: 10px auto 0;
    transform: scale(0.65);
    transform-origin: top center;
    height: 340px !important;
    overflow: visible;
  }
  .mockup-laptop {
    right: 0 !important;
    width: 500px !important;
    height: 300px !important;
  }
  .mockup-phone {
    left: -8px !important;
    bottom: 0 !important;
    width: 190px !important;
    height: 380px !important;
  }
  .site-header {
     padding: 10px 15px !important;
  }
  .brand svg {
     width: 130px !important;
  }
}
@media (max-width: 500px) {
  .hero-mockups {
    width: min(100%, 300px);
    margin-top: 0;
    transform: scale(0.5);
    height: 255px !important;
  }
  .mockup-laptop {
    width: 480px !important;
    height: 290px !important;
  }
  .mockup-phone {
    left: -18px !important;
    width: 180px !important;
    height: 360px !important;
  }
  header {
    width: 100% !important;
    border-radius: 0 !important;
    top: 0 !important;
  }
}


/* GLOBAL HEADER OVERRIDE FOR PORTAL */
.site-header {
   margin-top: 0 !important;
   top: 0 !important;
}
body {
   padding-top: 80px !important;
}

/* =========================================
   BLOG / KI LEXIKON GRID STYLES
   ========================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border-color: rgba(255, 255, 255, 0.15);
}

.blog-img-wrapper {
  height: 200px;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: var(--text-muted);
}

.blog-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-main);
  line-height: 1.3;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: auto;
}

.blog-read-more:hover {
  opacity: 0.8;
}

/* =========================================
   UPGRADE BANNER
   ========================================= */
.upgrade-banner {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.upgrade-banner-content {
  background: linear-gradient(145deg, rgba(20, 20, 30, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
  border: 1px solid rgba(0, 210, 255, 0.3);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 210, 255, 0.15), inset 0 0 20px rgba(0, 210, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.upgrade-banner-content::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 60%);
  animation: rotateGlow 10s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.upgrade-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid var(--accent);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulseLogo 1.5s infinite;
}

.upgrade-tag {
  color: var(--accent);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(0, 210, 255, 0.8);
}

.upgrade-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.upgrade-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .upgrade-banner-content {
    padding: 30px 20px;
  }
}

/* =========================================
   GLOBAL DEVICE OPTIMIZATION
   ========================================= */
@media (max-width: 1100px) {
  .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .section {
    padding: 120px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .hero-content,
  .hero-copy,
  .page-hero-copy,
  .career-hero-copy {
    max-width: 100% !important;
    text-align: center;
  }

  .hero-copy,
  .page-hero-copy,
  .career-hero-copy,
  .hero-visual {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc,
  .hero-copy p,
  .page-hero-copy p,
  .career-hero-copy p {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }

  .container,
  .page-shell {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .section {
    padding: 88px 0;
  }

  .hero {
    padding-top: 130px;
    min-height: auto;
  }

  .hero-mockups {
    width: 100% !important;
    max-width: 260px;
    height: auto !important;
    margin: 4px auto 0 !important;
    transform: none !important;
    overflow: visible;
  }

  .mockup-laptop {
    display: none !important;
  }

  .mockup-phone {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 220px !important;
    height: 430px !important;
    margin: 0 auto;
    transform: none !important;
    box-shadow: 0 18px 44px rgba(0,0,0,0.55), 0 0 24px rgba(176,38,255,0.16);
  }

  .section-header,
  .section-heading {
    margin-bottom: 40px !important;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
    margin-bottom: 20px;
  }

  h3 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.76rem;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 1rem !important;
    margin: 24px auto 28px !important;
    max-width: 100% !important;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions > * {
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .page-grid,
  .kontakt-grid,
  .pricing-grid,
  .career-benefits-grid,
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .minimal-card {
    padding: 26px;
  }

  .minimal-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }

  .minimal-card ul {
    margin-top: 18px;
  }

  .minimal-card ul li {
    padding: 12px 0;
    font-size: 0.95rem;
  }

  .price-val {
    font-size: 2.35rem;
  }

  .quiz-container,
  .seo-content-section {
    padding: 24px 16px;
  }

  .seo-highlight-box {
    padding: 22px;
  }

  .faq-container,
  .about-image-grid {
    gap: 16px !important;
  }

  .service-card,
  .cta-panel,
  .career-cta-panel {
    width: 100%;
  }

  .glass[style*="padding: 42px"],
  .minimal-card[style*="padding: 60px"],
  .fade-in-up[style*="padding: 60px 40px"] {
    padding: 28px !important;
  }

  .faq-container[style*="max-width: 800px"],
  .cta-panel[style*="max-width: 800px"],
  .hero-copy[style*="max-width: 800px"],
  .container[style*="max-width: 900px"],
  .container[style*="max-width: 1000px"],
  article[style*="max-width: 800px"] {
    max-width: 100% !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .footer-grid div {
    align-items: center !important;
  }

  .site-footer {
    padding: 64px 16px 32px;
  }

  .blog-grid,
  .upgrade-banner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ai-chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .ai-chat-window {
    width: min(360px, calc(100vw - 28px));
    height: min(68vh, 520px);
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 16px) !important;
    padding: 10px 14px !important;
  }

  .brand svg,
  .nav-logo-svg {
    width: 120px !important;
  }

  .partner-ticker-wrapper {
    padding: 24px 0;
  }

  .partner-ticker {
    gap: 42px;
  }

  .partner-logo {
    height: 22px;
  }

  .ai-chat-tooltip {
    white-space: normal;
    max-width: 220px;
    text-align: center;
  }

  .hero-demo-topline {
    flex-wrap: wrap;
  }

  .hero-demo-pill {
    width: max-content;
  }

  .hero-mockups {
    max-width: 236px;
  }

  .mockup-phone {
    width: 210px !important;
    height: 410px !important;
  }

  .ai-chat-window {
    right: 0;
    width: calc(100vw - 28px);
    height: 65vh;
  }
}

@media (max-width: 400px) {
  .container,
  .page-shell {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .section {
    padding: 76px 0;
  }

  .minimal-card {
    padding: 20px;
  }

  .hero-mockups {
    max-width: 220px;
  }

  .mockup-phone {
    width: 196px !important;
    height: 388px !important;
  }

  .btn {
    padding: 13px 16px;
  }

  .ai-chat-widget {
    right: 10px;
    bottom: 10px;
  }

  .ai-chat-window {
    width: calc(100vw - 20px);
    height: 62vh;
  }
}
