/* === DESIGN SYSTEM === */
:root {
  --c-green: #107c10;
  --c-red: #d13438;
  --c-yellow: #ffb900;
  --c-blue: #00a4ef;
  --c-purple: #6264A7;
  --c-gray: #9ca3af;
  --c-brand: #6264A7;
}

[data-theme="light"] {
  --bg-body: #f5f5f5;
  --bg-surface: #ffffff;
  --bg-subtle: #f0f0f0;
  --text-main: #1a1a1a;
  --text-muted: #666666;
  --text-light: #999999;
  --border-color: #e0e0e0;
  --border-dark: #1a1a1a;
  --header-bg: rgba(255,255,255,0.95);
}

[data-theme="dark"] {
  --bg-body: #121212;
  --bg-surface: #1e1e1e;
  --bg-subtle: #2d2d2d;
  --text-main: #e0e0e0;
  --text-muted: #aaaaaa;
  --text-light: #888888;
  --border-color: #333333;
  --border-dark: #555555;
  --header-bg: rgba(18,18,18,0.95);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section[id] { scroll-margin-top: 80px; }

/* === HEADER === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo img {
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-right .btn {
  height: 44px;
  padding: 0 20px;
}

/* Login Link - dezent */
.login-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s;
  padding: 8px 0;
}

.login-link:hover {
  color: var(--text-main);
}

/* Theme Toggle - dezent, im Header-Fluss integriert */
.theme-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  opacity: 0.4;
  flex-shrink: 0;
}

.theme-toggle:hover {
  opacity: 0.7;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sun, .icon-moon { display: none; }
[data-theme="light"] .icon-moon { display: block; }
[data-theme="dark"] .icon-sun { display: block; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: opacity 0.2s, background 0.2s;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.btn-large {
  padding: 16px 32px;
  font-size: 15px;
}

.btn-primary {
  background: var(--c-brand);
  color: #fff;
}

.btn-primary:hover {
  background: #5254a3;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

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

.btn-white {
  background: #ffffff;
  color: #1a1a1a;
}

.btn-white:hover {
  opacity: 0.9;
}

/* === TRUST BAR === */
.trust-bar {
  margin-top: 64px;
  background: var(--bg-surface);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-color);
}

.trust-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-bar-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--c-green);
  fill: none;
  stroke-width: 2.5;
}

/* === HERO === */
.hero {
  padding: 80px 0 100px;
  background: var(--bg-body);
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-badge .ms-logo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 14px;
  height: 14px;
  animation: msLogoPulse 2s ease-in-out infinite;
}

.hero-badge .ms-logo span {
  width: 6px;
  height: 6px;
}

.hero-badge .ms-logo span:nth-child(1) { background: #f25022; }
.hero-badge .ms-logo span:nth-child(2) { background: #7fba00; }
.hero-badge .ms-logo span:nth-child(3) { background: #00a4ef; }
.hero-badge .ms-logo span:nth-child(4) { background: #ffb900; }

@keyframes msLogoPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.hero-text {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.btn-micro {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--c-green);
  fill: none;
  stroke-width: 2;
}

/* === SCREENSHOT === */
.preview-stage {
  max-width: 1100px;
  margin: 80px auto 0;
  padding: 0 24px;
  position: relative;
}

.preview-stage::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(98, 100, 167, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

[data-theme="dark"] .preview-stage::before {
  background: radial-gradient(ellipse at center, rgba(98, 100, 167, 0.25) 0%, transparent 70%);
}

.browser-frame {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .browser-frame {
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Fade-Effekt entfernt */

.browser-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-color);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot:nth-child(1) { background: #ff5f57; }
.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.browser-urlbar {
  flex: 1;
  margin-left: 12px;
  padding: 6px 12px;
  background: var(--bg-body);
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

/* === DASHBOARD PREVIEW WITH CTA === */
.browser-content {
  position: relative;
  line-height: 0;
  /* Aspect ratio: 1604x886 = 1.81:1 */
  aspect-ratio: 1604 / 886;
  overflow: hidden;
}

/* Dashboard Preview Container - abgedunkelt für CTA-Fokus */
.dashboard-preview {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-subtle);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Abdunkelungs-Overlay über dem Dashboard-Inhalt */
.dashboard-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
  transition: background 0.3s ease;
}

[data-theme="dark"] .dashboard-preview::before {
  background: rgba(0, 0, 0, 0.5);
}

/* Bei Hover wird der Hintergrund etwas heller */
.preview-cta-overlay:hover ~ .dashboard-preview::before,
.dashboard-preview:has(.preview-cta-overlay:hover)::before {
  background: rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .preview-cta-overlay:hover ~ .dashboard-preview::before,
[data-theme="dark"] .dashboard-preview:has(.preview-cta-overlay:hover)::before {
  background: rgba(0, 0, 0, 0.4);
}

/* Preview Header - deutlich sichtbarer */
.preview-header {
  height: 36px;
  background: var(--border-dark);
  border-radius: 4px;
  opacity: 0.12;
}

[data-theme="dark"] .preview-header {
  background: #888;
  opacity: 0.25;
}

/* Preview Stats Bar - besser sichtbar */
.preview-stats-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}

[data-theme="dark"] .preview-stats-bar {
  background: rgba(255, 255, 255, 0.03);
}

.preview-stat {
  width: 90px;
  height: 28px;
  background: var(--border-dark);
  border-radius: 6px;
  opacity: 0.15;
}

[data-theme="dark"] .preview-stat {
  background: #999;
  opacity: 0.2;
}

/* Preview Toolbar - besser sichtbar */
.preview-toolbar {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}

[data-theme="dark"] .preview-toolbar {
  background: rgba(255, 255, 255, 0.02);
}

.preview-search {
  width: 220px;
  height: 34px;
  background: var(--border-dark);
  border-radius: 4px;
  opacity: 0.12;
}

[data-theme="dark"] .preview-search {
  background: #888;
  opacity: 0.2;
}

.preview-filters {
  display: flex;
  gap: 10px;
}

.preview-filter {
  width: 110px;
  height: 34px;
  background: var(--border-dark);
  border-radius: 4px;
  opacity: 0.1;
}

[data-theme="dark"] .preview-filter {
  background: #888;
  opacity: 0.15;
}

/* Preview Cards Grid */
.preview-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 10px;
}

.preview-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .preview-card {
  opacity: 0.5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.preview-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--border-dark);
  opacity: 0.2;
}

[data-theme="dark"] .preview-card-avatar {
  background: #777;
  opacity: 0.35;
}

.preview-card-name {
  width: 75%;
  height: 12px;
  background: var(--border-dark);
  border-radius: 2px;
  opacity: 0.18;
}

[data-theme="dark"] .preview-card-name {
  background: #888;
  opacity: 0.3;
}

.preview-card-title {
  width: 55%;
  height: 8px;
  background: var(--border-dark);
  border-radius: 2px;
  opacity: 0.12;
}

[data-theme="dark"] .preview-card-title {
  background: #888;
  opacity: 0.2;
}

.preview-card-status {
  width: 64px;
  height: 18px;
  background: var(--border-dark);
  border-radius: 9px;
  opacity: 0.1;
  margin-top: 6px;
}

[data-theme="dark"] .preview-card-status {
  background: #888;
  opacity: 0.15;
}

/* CTA Overlay - über dem abgedunkelten Dashboard */
.preview-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  z-index: 2;
}

/* CTA Card - hebt sich vom dunklen Hintergrund ab */
.preview-cta-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

[data-theme="dark"] .preview-cta-content {
  background: var(--bg-surface);
  border-color: var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.preview-cta-overlay:hover .preview-cta-content {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  border-color: rgba(98, 100, 167, 0.4);
}

[data-theme="dark"] .preview-cta-overlay:hover .preview-cta-content {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  border-color: rgba(139, 142, 221, 0.5);
}

/* Play Icon Wrapper - dezenter Kreis */
.preview-cta-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

[data-theme="dark"] .preview-cta-icon-wrap {
  background: rgba(255, 255, 255, 0.08);
}

.preview-cta-overlay:hover .preview-cta-icon-wrap {
  background: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .preview-cta-overlay:hover .preview-cta-icon-wrap {
  background: rgba(255, 255, 255, 0.12);
}

.preview-cta-icon {
  width: 18px;
  height: 18px;
  fill: var(--text-muted);
  stroke: none;
  margin-left: 2px;
  transition: fill 0.2s ease;
}

[data-theme="dark"] .preview-cta-icon {
  fill: var(--text-muted);
}

.preview-cta-overlay:hover .preview-cta-icon {
  fill: var(--text-main);
}

/* Text Wrapper */
.preview-cta-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.preview-cta-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-main);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.preview-cta-hint {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.3;
}

/* Responsive Dashboard Preview */
@media (max-width: 900px) {
  .preview-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .preview-card:nth-child(n+5) {
    display: none;
  }
  
  .preview-stat:nth-child(n+4) {
    display: none;
  }
}

@media (max-width: 600px) {
  .dashboard-preview {
    padding: 12px;
    gap: 8px;
  }
  
  .preview-header {
    height: 28px;
  }
  
  .preview-stats-bar {
    gap: 6px;
    padding: 6px 8px;
    margin: 0 -4px;
  }
  
  .preview-stat {
    width: 55px;
    height: 22px;
  }
  
  .preview-toolbar {
    padding: 6px 8px;
    margin: 0 -4px;
  }
  
  .preview-search {
    width: 130px;
    height: 28px;
  }
  
  .preview-filters {
    display: none;
  }
  
  .preview-cards {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .preview-card {
    padding: 12px;
    gap: 6px;
  }
  
  .preview-card:nth-child(n+5) {
    display: none;
  }
  
  .preview-card-avatar {
    width: 30px;
    height: 30px;
  }
  
  .preview-card-name {
    height: 9px;
  }
  
  .preview-card-title {
    height: 6px;
  }
  
  .preview-card-status {
    width: 44px;
    height: 14px;
  }
  
  .preview-cta-content {
    padding: 16px 22px;
    gap: 12px;
    border-radius: 12px;
  }

  .preview-cta-icon-wrap {
    width: 38px;
    height: 38px;
  }

  .preview-cta-icon {
    width: 16px;
    height: 16px;
  }

  .preview-cta-text {
    font-size: 14px;
  }

  .preview-cta-hint {
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .preview-cards {
    grid-template-columns: 1fr;
  }
  
  .preview-card:nth-child(n+3) {
    display: none;
  }
  
  .preview-stat:nth-child(n+3) {
    display: none;
  }
  
  .preview-cta-content {
    padding: 14px 18px;
    gap: 10px;
    border-radius: 10px;
  }

  .preview-cta-icon-wrap {
    width: 32px;
    height: 32px;
  }

  .preview-cta-icon {
    width: 14px;
    height: 14px;
  }

  .preview-cta-text {
    font-size: 13px;
  }

  .preview-cta-hint {
    font-size: 10px;
  }
}

.screenshot-callouts {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.callout-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
}

.callout-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--c-brand);
  fill: none;
  stroke-width: 2;
}

/* === SECTIONS === */
.section {
  padding: 100px 0;
}

.section-surface {
  background: var(--bg-body);
}

.section-subtle {
  background: var(--bg-surface);
}

.sec-head {
  text-align: center;
  margin-bottom: 64px;
}

.tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 14px;
  background: rgba(98, 100, 167, 0.1);
  border: 1px solid rgba(98, 100, 167, 0.2);
  color: var(--c-brand);
  margin-bottom: 32px;
}

[data-theme="dark"] .tag {
  background: rgba(98, 100, 167, 0.15);
  border-color: rgba(98, 100, 167, 0.3);
}

.sec-head h2 {
  font-size: clamp(32px, 4vw, 44px);
  color: var(--text-main);
  margin-bottom: 16px;
}

.sec-head p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Reduzierter Abstand für Features-Sektion */
#features .sec-head {
  margin-bottom: 40px;
}

/* === COMPARE CARDS === */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.compare-card {
  padding: 40px;
  padding-top: 56px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
}

.compare-card.c-good {
  border: 2px solid var(--c-brand);
}

.recommend-badge {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--c-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--c-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cc-list {
  list-style: none;
  flex: 1;
}

.cc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-main);
}

.cc-head svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.c-bad .cc-head svg {
  stroke: var(--text-light);
}

.c-good .cc-head svg {
  stroke: var(--c-green);
}

.cc-list li {
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  align-items: flex-start;
}

.cc-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.c-bad .cc-list svg {
  stroke: var(--text-light);
}

.c-good .cc-list svg {
  stroke: var(--c-green);
}

.c-good .cc-list li {
  color: var(--text-main);
}

/* === SIMPLE FEATURES === */
.simple-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.simple-feature {
  display: flex;
  gap: 28px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.simple-feature:last-child {
  border-bottom: none;
}

.sf-number {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--c-brand);
  flex-shrink: 0;
  width: 48px;
}

.sf-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.sf-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === QUICKSTART BANNER === */
.quickstart-banner {
  background: var(--c-brand);
  padding: 28px 0;
}

.quickstart-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.quickstart-icon {
  font-size: 28px;
}

.quickstart-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quickstart-text strong {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.quickstart-text span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.quickstart-banner .btn-white {
  background: #fff;
  color: var(--c-brand);
  font-weight: 600;
}

.quickstart-banner .btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* === PRICING === */
.enterprise-split {
  padding: 100px 0;
  background: var(--bg-body);
}

.ent-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.ent-pricing-side {
  display: flex;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pricing-badge {
  display: inline-block;
  background: var(--c-brand);
  color: #fff;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popular-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-target {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-currency {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
}

.price-value {
  font-family: 'Manrope', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
  margin-left: 6px;
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-main);
}

.pricing-features svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-green);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.pricing-cta-area {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.pricing-cta {
  width: 100%;
}

.pricing-hint {
  font-size: 13px;
  color: var(--text-muted);
}

/* White Label Side */
.ent-whitelabel-side {
  display: flex;
}

.whitelabel-content {
  background: var(--text-main);
  padding: 40px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.15);
}

[data-theme="dark"] .whitelabel-content {
  background: #2a2a35;
  border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .whitelabel-content h2 {
  color: #ffffff;
}

[data-theme="dark"] .wl-target {
  color: rgba(255,255,255,0.6);
}

[data-theme="dark"] .wl-subtitle {
  color: rgba(255,255,255,0.7);
}

[data-theme="dark"] .wl-text h4 {
  color: #ffffff;
}

[data-theme="dark"] .wl-text p {
  color: rgba(255,255,255,0.6);
}

[data-theme="dark"] .wl-icon {
  background: rgba(255,255,255,0.1);
}

[data-theme="dark"] .wl-icon svg {
  stroke: #ffffff;
}

.wl-badge {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  align-self: flex-start;
}

[data-theme="dark"] .wl-badge {
  color: var(--text-main);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.whitelabel-content h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

[data-theme="dark"] .whitelabel-content h2 {
  color: var(--text-main);
}

.wl-target {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.wl-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.6;
}

.wl-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wl-feature {
  display: flex;
  gap: 14px;
}

.wl-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wl-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.wl-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.wl-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.wl-cta-area {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.wl-hint {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

[data-theme="dark"] .wl-hint {
  color: rgba(255,255,255,0.5);
}

.wl-cta {
  width: 100%;
}

/* === CTA === */
.cta {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
}

.cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.cta p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
footer {
  padding: 32px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--text-muted);
}

.f-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.f-brand {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--text-main);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-brand img {
  width: 20px;
  height: 20px;
}

.f-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.f-links a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.f-links a.f-highlight {
  color: var(--c-brand);
  font-weight: 600;
}

.f-links a.f-highlight:hover {
  color: #5254a3;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.cookie-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
}

.cookie-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-main);
  font-size: 15px;
}

.cookie-text p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--c-brand);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
}

.cookie-btn-primary {
  background: var(--c-brand);
  color: #fff;
}

.cookie-btn-primary:hover {
  background: #5254a3;
}

.cookie-btn-secondary {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.cookie-btn-secondary:hover {
  border-color: var(--text-main);
}

/* === LEGAL PAGES (Impressum, Datenschutz) === */
.legal-main {
  padding: 120px 0 80px;
  min-height: calc(100vh - 200px);
}

.legal-main .container {
  max-width: 800px;
}

.page-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.page-header p {
  color: var(--text-muted);
  font-size: 15px;
}

.content-section {
  margin-bottom: 40px;
}

.content-section h2 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.content-section h3 {
  font-size: 16px;
  margin-bottom: 12px;
  margin-top: 24px;
  color: var(--text-main);
  font-weight: 700;
}

.content-section p {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.content-section a {
  color: var(--c-brand);
  text-decoration: none;
}

.content-section a:hover {
  text-decoration: underline;
}

.contact-block {
  background: var(--bg-subtle);
  padding: 24px;
  margin-bottom: 40px;
}

.contact-block strong {
  display: block;
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.contact-block p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.8;
}

.contact-block a {
  color: var(--c-brand);
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .compare-card.c-good {
    padding-top: 56px;
  }
}

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

  .ent-split-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Header: Login und Theme-Toggle ausblenden auf Tablet/Mobile */
  .login-link {
    display: none;
  }

  .theme-toggle {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .section {
    padding: 60px 0;
  }

  .simple-feature {
    flex-direction: column;
    gap: 16px;
  }

  .sf-number {
    width: auto;
  }

  .quickstart-inner {
    text-align: center;
  }

  .f-grid {
    flex-direction: column;
    text-align: center;
  }

  .f-links {
    justify-content: center;
  }

  /* Cookie Banner Mobile */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
  }

  /* Header Mobile: Kompakt */
  .header-right {
    gap: 8px;
  }

  .header-right .btn {
    padding: 0 14px;
    font-size: 13px;
  }

  /* Legal Pages Mobile */
  .page-header h1 {
    font-size: 26px;
  }

  .legal-main .f-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Pricing Cards auf schmalen Screens */
  .pricing-card {
    padding: 24px 20px;
  }

  .whitelabel-content {
    padding: 24px 20px;
  }

  .price-value {
    font-size: 48px;
  }

  .pricing-badge {
    padding: 8px 12px;
    font-size: 11px;
  }

  .wl-badge {
    padding: 8px 12px;
    font-size: 11px;
  }

  .enterprise-split {
    padding: 60px 0;
  }

  .ent-split-grid {
    gap: 24px;
  }
}

@media (max-width: 400px) {
  /* Header: Logo kürzen, Button kompakter */
  .logo {
    font-size: 12px;
    gap: 6px;
  }

  .logo img {
    width: 20px;
    height: 20px;
  }

  .header-right .btn {
    padding: 0 12px;
    font-size: 12px;
    height: 38px;
  }

  /* Container weniger Padding */
  .container {
    padding: 0 12px;
  }

  /* Pricing noch kompakter */
  .pricing-card {
    padding: 20px 16px;
  }

  .whitelabel-content {
    padding: 20px 16px;
  }

  .price-value {
    font-size: 42px;
  }

  .price-currency {
    font-size: 22px;
  }

  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .wl-features {
    gap: 16px;
  }

  .wl-icon {
    width: 36px;
    height: 36px;
  }

  .wl-icon svg {
    width: 18px;
    height: 18px;
  }

  /* Callouts unter Screenshot */
  .screenshot-callouts {
    gap: 8px;
  }

  .callout-item {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 350px) {
  /* Ultra-schmale Screens */
  
  /* Logo kürzen - nur "TD" anzeigen */
  .logo-text {
    font-size: 0;
  }

  .logo-text::before {
    content: "TD";
    font-size: 12px;
    font-weight: 800;
  }

  .header-right .btn {
    padding: 0 10px;
    font-size: 11px;
  }

  .pricing-card,
  .whitelabel-content {
    padding: 16px 12px;
  }

  .price-value {
    font-size: 36px;
  }
}