/* ============================================
   GLÜCK'S IT — KDE Plasma Edition
   ============================================ */

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

/* Button-Reset: Buttons die wie Icons/Kacheln aussehen sollen verhalten sich wie divs */
button.desktop-icon,
button.kickoff-app,
button.mobile-app {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
button.desktop-icon:focus-visible,
a.desktop-icon:focus-visible,
button.kickoff-app:focus-visible,
a.kickoff-app:focus-visible,
button.mobile-app:focus-visible,
a.mobile-app:focus-visible {
  outline: 2px solid var(--kde-blue);
  outline-offset: 2px;
}
:root {
  --bg: #1B1E20;
  --panel: #2A2E32;
  --panel-2: #31363B;
  --panel-3: #3B4046;
  --border: #4D5359;
  --text: #EFF0F1;
  --text-dim: #BDC3C7;
  --text-muted: #7F8C8D;
  --kde-blue: #3DAEE9;
  --kde-blue-dark: #1D99F3;
  --green: #27AE60;
  --green-bright: #2ECC71;
  --yellow: #F1C40F;
  --red: #DA4453;
  --orange: #F39C12;
  --purple: #9B59B6;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', 'Noto Sans', system-ui, sans-serif;
  font-size: 13px;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  user-select: none;
  background: var(--bg);
}

/* Skip-Link: Tab drücken → Link springt zum Inhalt */
.skip-link {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: var(--kde-blue);
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Für Suchmaschinen & Screenreader sichtbar, visuell versteckt */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   DESKTOP VIEW (KDE PLASMA)
============================================ */
.desktop-view {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.wallpaper {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(61, 174, 233, 0.4), transparent 50%),
    radial-gradient(ellipse at 75% 80%, rgba(46, 204, 113, 0.35), transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(29, 153, 243, 0.2), transparent 70%),
    linear-gradient(135deg, #0F1419 0%, #1B2735 50%, #0D1B2A 100%);
  overflow: hidden;
}
.wallpaper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/></svg>");
}
.wallpaper-clover {
  position: absolute;
  width: 55vmin;
  height: auto;
  bottom: 8vmin;
  right: 6vmin;
  opacity: 0.08;
  transform: rotate(-15deg);
  pointer-events: none;
  object-fit: contain;
}

/* PLASMOID WIDGETS */
.plasmoid {
  position: absolute;
  background: rgba(42, 46, 50, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--text);
}
.plasmoid-clock {
  top: 24px;
  right: 24px;
  text-align: center;
  min-width: 240px;
}
.plasmoid-clock .time {
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.plasmoid-clock .date {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 6px;
  text-transform: capitalize;
}

.plasmoid-info {
  top: 200px;
  right: 24px;
  width: 270px;
}
.plasmoid-info h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-bright);
  margin-bottom: 12px;
  font-weight: 600;
}
.plasmoid-info .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
}
.plasmoid-info .row:last-child { border-bottom: none; }
.plasmoid-info .row .label { color: var(--text-dim); }
.plasmoid-info .row .val { font-weight: 600; }
.plasmoid-info .row .val.green { color: var(--green-bright); }
.plasmoid-info .row .val.red { color: #E74C3C; }
.plasmoid-link {
  color: var(--kde-blue);
  text-decoration: none;
}
.plasmoid-link:hover { text-decoration: underline; }

/* ============================================
   APP ICON COLORS — gilt für alle Kontexte
   (Desktop, Kickoff, Mobile-Launcher, Mobile-Dock)
============================================ */
.app-welcome    { background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%) !important; }
.app-fernwartung{ background: #fff !important; padding: 8px !important; }
.app-fernwartung img { width: 100% !important; height: 100% !important; object-fit: contain; }
.app-legal      { background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%) !important; color: #fff; font-weight: 700; font-family: Georgia, serif; }
.app-retail   { background: linear-gradient(135deg, #F39C12 0%, #E67E22 100%) !important; color: #fff; }
.app-erpnext  { background: #067EFB !important; padding: 0 !important; overflow: hidden; }
.app-erpnext img { width: 100% !important; height: 100% !important; object-fit: cover; }
.app-hardware { background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%) !important; color: #fff; }
.app-netzwerk { background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%) !important; color: #fff; }
.app-code     { background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%) !important; color: #fff; }
.app-terminal { background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%) !important; color: var(--green-bright); border-color: rgba(46, 204, 113, 0.3) !important; }
.app-contact  { background: linear-gradient(135deg, #F1C40F 0%, #F39C12 100%) !important; color: #2A2E32; }
.app-facebook { background: #1877F2 !important; padding: 10px !important; }
.app-instagram{ background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%) !important; padding: 10px !important; }
.app-linkedin { background: #0A66C2 !important; padding: 10px !important; }
.app-facebook img, .app-instagram img, .app-linkedin img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.app-welcome img { filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }

.term-icon {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.85em;
  letter-spacing: -0.05em;
  color: var(--green-bright);
  text-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
}

/* ============================================
   DESKTOP ICONS
============================================ */
.desktop-icons {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 5;
}
.desktop-social {
  position: absolute;
  top: 24px;
  left: 124px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 5;
}
.desktop-social .desktop-icon {
  text-decoration: none;
  display: block;
}
.desktop-icon {
  width: 88px;
  padding: 10px 6px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.desktop-icon:hover { background: rgba(61, 174, 233, 0.2); }
.desktop-icon-img {
  width: 48px;
  height: 48px;
  margin: 0 auto 6px;
  background: linear-gradient(135deg, var(--panel-2), var(--panel));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
}
.desktop-icon-img img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.desktop-icon-label {
  color: var(--text);
  font-size: 12px;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* WINDOW BASE */
.window {
  position: absolute;
  background: var(--panel);
  border-radius: 8px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 8px 24px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  display: none;
  flex-direction: column;
  color: var(--text);
}
.window.minimized { display: none !important; }
.window.inactive { opacity: 0.85; }

.window-titlebar {
  height: 36px;
  background: var(--panel-2);
  border-bottom: 1px solid rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  padding: 0 8px 0 14px;
  cursor: grab;
  flex-shrink: 0;
  gap: 10px;
}
.window.inactive .window-titlebar { background: var(--panel); }
.window-titlebar:active { cursor: grabbing; }
.window-titlebar img.icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.window-title-text {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.window.inactive .window-title-text { color: var(--text-muted); }

.window-controls { display: flex; gap: 6px; }
.window-controls .ctrl {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
}
.window-controls .ctrl:hover { background: rgba(255,255,255,0.15); color: var(--text); }
.window-controls .close:hover { background: var(--red); color: white; }

.window-body {
  flex: 1;
  overflow: auto;
  background: var(--panel);
}
.window-body::-webkit-scrollbar { width: 10px; }
.window-body::-webkit-scrollbar-track { background: transparent; }
.window-body::-webkit-scrollbar-thumb { background: var(--panel-3); border-radius: 5px; }

/* WELCOME WINDOW */
.window.welcome {
  width: 600px;
  height: 600px;
  top: 30px;
  left: 240px;
  z-index: 12;
}
.welcome .window-body { padding: 0; }
.welcome-hero {
  padding: 30px 36px;
  background: linear-gradient(135deg, rgba(61, 174, 233, 0.18), rgba(46, 204, 113, 0.1));
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: center;
}
.welcome-hero img { width: 72px; height: 72px; }
.welcome-hero h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.welcome-hero h2 span { color: var(--kde-blue); }
.welcome-eyebrow {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted) !important;
  font-weight: 600;
  margin-bottom: 4px !important;
}
.welcome-hero p { color: var(--text-dim); font-size: 13px; margin-top: 6px; }
.welcome-hero p em { font-style: italic; color: var(--green-bright); }

.welcome-content { padding: 24px 36px 30px; }
.welcome-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.welcome-content h3 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--kde-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.welcome-content > p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 12px;
}
.welcome-content > p strong { color: var(--text); }
.welcome-content blockquote {
  padding: 14px 18px;
  background: var(--panel-2);
  border-left: 3px solid var(--kde-blue);
  font-style: italic;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 12px;
  border-radius: 4px;
}

.welcome-list {
  list-style: none;
  margin-bottom: 16px;
}
.welcome-list li {
  padding: 12px 16px;
  background: var(--panel-2);
  border-left: 3px solid var(--kde-blue);
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
}
.welcome-list li strong {
  color: var(--kde-blue);
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.welcome-buttons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.welcome-quick {
  margin: 0 36px;
  margin-top: -2px;
  margin-bottom: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

/* BUTTONS */
.btn-kde {
  padding: 10px 20px;
  background: var(--panel-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-kde:hover { background: var(--panel-3); border-color: var(--kde-blue); }
.btn-kde.primary {
  background: var(--kde-blue);
  border-color: var(--kde-blue);
  color: white;
}
.btn-kde.primary:hover { background: var(--kde-blue-dark); }
.btn-kde.big { padding: 14px 28px; font-size: 14px; }

/* ERPNEXT WINDOW */
.window.erpnext {
  width: 480px;
  height: 580px;
  top: 80px;
  left: 280px;
  z-index: 10;
}
.erpnext .window-body { padding: 0; }
.erpnext-banner {
  background: linear-gradient(135deg, var(--kde-blue), var(--kde-blue-dark));
  color: white;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.erpnext-banner::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(241, 196, 15, 0.3), transparent 60%);
  border-radius: 50%;
}
.erpnext-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
}
.erpnext-banner h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  position: relative;
}
.erpnext-banner p { font-size: 13px; opacity: 0.95; position: relative; max-width: 90%; }
.erpnext-banner p strong { color: var(--yellow); }

.erpnext-intro {
  padding: 20px 24px 6px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.erpnext-intro p strong { color: var(--text); }
.erpnext-features { padding: 14px 24px 20px; }
.erpnext-features h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.erpnext-features ul { list-style: none; }
.erpnext-features li {
  padding: 11px 12px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  transition: background 0.15s;
}
.erpnext-features li:hover { background: var(--panel-2); }
.erpnext-features li::before { content: '✓ '; color: var(--green-bright); margin-right: 6px; font-weight: 700; }
.erpnext-features li small {
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.window-section-cta {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
  background: var(--panel-2);
}
.window-section-cta p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.5;
}
.window-section-cta p strong { color: var(--text); }

/* RETAIL WINDOW (das große Ding) */
.window.retail {
  width: 720px;
  height: 640px;
  top: 50px;
  left: 260px;
  z-index: 11;
}
.retail .window-body { padding: 0; }

.retail-hero {
  background:
    linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(61, 174, 233, 0.15)),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.retail-hero::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.2), transparent 60%);
  border-radius: 50%;
}
.retail-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(46, 204, 113, 0.2);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: var(--green-bright);
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
}
.retail-hero h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
}
.retail-hero h2 em {
  font-style: italic;
  color: var(--green-bright);
  font-weight: 700;
}
.retail-hero > p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 90%;
  position: relative;
}
.retail-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green);
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.retail-hero-cta:hover {
  background: var(--yellow);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.retail-section {
  padding: 36px 40px;
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kde-blue);
  font-weight: 700;
  margin-bottom: 8px;
}
.retail-section h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.1;
}
.section-sub {
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 24px;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.solution-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  transition: all 0.2s;
  position: relative;
}
.solution-card:hover {
  border-color: var(--kde-blue);
  transform: translateY(-2px);
}
.solution-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--green-bright);
  font-weight: 700;
  margin-bottom: 8px;
}
.solution-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.solution-card > p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 14px;
}
.solution-card > p strong { color: var(--text); }
.solution-card ul {
  list-style: none;
  margin-bottom: 14px;
}
.solution-card ul li {
  padding: 4px 0;
  font-size: 12px;
  color: var(--text-dim);
}
.solution-card ul li::before {
  content: '✓';
  color: var(--green-bright);
  margin-right: 8px;
  font-weight: 700;
}

.more-link {
  display: inline-block;
  font-size: 12px;
  color: var(--kde-blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.more-link:hover { border-bottom-color: var(--kde-blue); }

.edition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.edition-card {
  background: var(--panel-2);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--border);
}
.edition-card.edition-t { border-top: 3px solid var(--kde-blue); }
.edition-card.edition-s { border-top: 3px solid var(--green-bright); }
.edition-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--kde-blue);
  color: white;
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 12px;
}
.edition-card.edition-s .edition-badge { background: var(--green-bright); color: var(--bg); }
.edition-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.edition-card > p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 14px;
}
.edition-card ul {
  list-style: none;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.8;
}

.install-section {
  background: var(--panel-2);
  text-align: center;
}
.install-section p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.install-section p strong { color: var(--text); }

.endless-banner {
  background: linear-gradient(135deg, var(--kde-blue), var(--kde-blue-dark));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: none;
}
.endless-banner h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 8px;
}
.endless-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  max-width: 480px;
}
.endless-banner .btn-kde.primary {
  background: var(--yellow);
  color: var(--bg);
  border-color: var(--yellow);
  flex-shrink: 0;
  font-weight: 700;
}
.endless-banner .btn-kde.primary:hover { background: white; border-color: white; }

/* HARDWARE / NETZWERK / CODE — generic windows */
.window.hardware { width: 500px; height: 600px; top: 90px; left: 240px; z-index: 9; }
.window.netzwerk { width: 500px; height: 620px; top: 130px; left: 290px; z-index: 8; }
.window.code     { width: 480px; height: 580px; top: 170px; left: 340px; z-index: 7; }

.generic-hero {
  padding: 30px 32px;
  background: linear-gradient(135deg, rgba(61, 174, 233, 0.18), rgba(46, 204, 113, 0.1));
  border-bottom: 1px solid var(--border);
}
.code-hero {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(243, 156, 18, 0.12));
}
.netzwerk-hero {
  background: linear-gradient(135deg, rgba(29, 153, 243, 0.25), rgba(46, 204, 113, 0.12));
}
.netzwerk-hero p strong { color: var(--kde-blue); }

.ubiquiti-badge {
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--panel-2);
  border-left: 3px solid var(--kde-blue);
  border-radius: 4px;
}
.ubiquiti-badge strong {
  display: block;
  font-size: 13px;
  color: var(--kde-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.ubiquiti-badge p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.generic-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-weight: 600;
}
.generic-hero h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 10px;
}
.generic-hero p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
  max-width: 90%;
}
.generic-content {
  padding: 22px 28px 28px;
}
.generic-content h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 600;
}

.feature-list {
  list-style: none;
}
.feature-list li {
  padding: 11px 14px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  transition: background 0.15s;
}
.feature-list li:hover { background: var(--panel-2); }
.feature-list li::before { content: '✓ '; color: var(--green-bright); margin-right: 6px; font-weight: 700; }
.feature-list li small {
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
.tech-card {
  padding: 14px 16px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.tech-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--kde-blue);
  margin-bottom: 2px;
}
.tech-desc {
  font-size: 11px;
  color: var(--text-muted);
}

/* TERMINAL */
.window.terminal {
  width: 520px;
  height: 460px;
  top: 250px;
  left: 380px;
  z-index: 8;
}
.terminal .window-body {
  background: #0F0F0F;
  color: #E6E6E6;
  padding: 16px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.7;
}
.term-line { display: flex; gap: 8px; }
.term-prompt { color: var(--green-bright); flex-shrink: 0; }
.term-comment { color: #555; }
.term-string { color: var(--orange); }
.term-key { color: #FF6E9F; }
.term-out { color: #BBB; }
.term-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--green-bright);
  vertical-align: middle;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* CONTACT */
.window.contact {
  width: 460px;
  height: 640px;
  top: 60px;
  left: 50%;
  margin-left: -230px;
  z-index: 13;
}
.contact .window-body { padding: 28px 32px; }
.contact h2 {
  font-size: 28px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.contact h2 span { color: var(--kde-blue); font-style: italic; }
.contact > .window-body > p {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 20px;
}

.contact-info {
  background: var(--panel-2);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.5;
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  min-width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}
.contact-info-row a { color: var(--kde-blue); text-decoration: none; }
.contact-info-row a:hover { text-decoration: underline; }

.hours-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
}
.hours-table td {
  padding: 3px 0;
  color: var(--text-dim);
}
.hours-table td:first-child { color: var(--text); font-weight: 500; }
.hours-table td:last-child {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  color: var(--green-bright);
}
.hours-table tr.closed td:last-child { color: var(--text-muted); font-style: italic; }
.social-links { display: flex; flex-wrap: wrap; gap: 6px 8px; margin-top: 4px; }
.social-links a {
  padding: 4px 10px;
  background: var(--panel-3);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.social-links a:hover { background: var(--kde-blue); color: white; text-decoration: none; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: block;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--kde-blue); }
.contact-form textarea { resize: none; height: 80px; }
.contact-form button {
  margin-top: 4px;
  padding: 12px;
  background: var(--kde-blue);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
.contact-form button:hover { background: var(--kde-blue-dark); }
.contact-form button:disabled { opacity: 0.6; cursor: wait; }

/* Honeypot — für Menschen unsichtbar, für Bots erreichbar */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Form-Status-Anzeige */
.form-status {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.4;
  display: none;
}
.form-status.sending {
  display: block;
  background: var(--panel-2);
  border-left: 3px solid var(--kde-blue);
  color: var(--text-dim);
}
.form-status.success {
  display: block;
  background: rgba(46, 204, 113, 0.12);
  border-left: 3px solid var(--green-bright);
  color: var(--green-bright);
}
.form-status.error {
  display: block;
  background: rgba(218, 68, 83, 0.12);
  border-left: 3px solid var(--red);
  color: #FF7A8E;
}

/* QUICK ACTIONS — Anrufen / E-Mail Buttons */
.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.quick-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.15s;
}
.quick-btn:hover {
  background: var(--kde-blue);
  border-color: var(--kde-blue);
  color: white;
  transform: translateY(-2px);
}
.qb-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.qb-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.qb-text strong { font-size: 13px; font-weight: 700; }
.qb-text small {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.quick-btn:hover .qb-text small { color: rgba(255,255,255,0.85); }

/* LEGAL FOOTER */
.legal-footer {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
}
.legal-footer button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
}
.legal-footer button:hover { color: var(--kde-blue); text-decoration: underline; }
.legal-footer span { color: var(--text-muted); }

/* LEGAL WINDOWS (Impressum, Datenschutz) */
.window.legal {
  width: 580px;
  height: 620px;
  top: 70px;
  left: 50%;
  margin-left: -290px;
  z-index: 14;
}
.window.legal .window-body { padding: 30px 38px; line-height: 1.6; }
.window.legal h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.window.legal .legal-intro {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 24px;
  font-style: italic;
}
.window.legal h3 {
  font-size: 15px;
  color: var(--kde-blue);
  margin-top: 26px;
  margin-bottom: 10px;
  font-weight: 700;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.window.legal h4 {
  font-size: 13px;
  color: var(--text);
  margin-top: 18px;
  margin-bottom: 6px;
  font-weight: 700;
}
.window.legal h5 {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
  margin-bottom: 4px;
  font-weight: 600;
}
.window.legal .legal-caps {
  font-variant: small-caps;
  font-size: 12px !important;
  background: rgba(61, 174, 233, 0.06);
  padding: 10px 12px;
  border-left: 2px solid var(--kde-blue);
  border-radius: 3px;
}
.window.legal address {
  font-style: normal;
  font-size: 14px;
  color: var(--text-dim);
}
.window.legal address strong { color: var(--text); }
.window.legal p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.window.legal p em {
  color: var(--orange);
  font-style: normal;
  background: rgba(243, 156, 18, 0.1);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 12px;
}
.window.legal a { color: var(--kde-blue); text-decoration: none; }
.window.legal a:hover { text-decoration: underline; }
.legal-list { list-style: none; margin: 8px 0; }
.legal-list li {
  padding: 5px 0;
  font-size: 13px;
  color: var(--text-dim);
}
.legal-list li::before { content: '✓ '; color: var(--green-bright); }
.legal-note {
  margin-top: 24px;
  padding: 12px 14px;
  background: rgba(243, 156, 18, 0.1);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  font-size: 12px !important;
  color: var(--orange) !important;
}

/* FERNWARTUNG WINDOW */
.window.fernwartung {
  width: 540px;
  height: 660px;
  top: 50px;
  left: 50%;
  margin-left: -270px;
  z-index: 13;
}
.window.fernwartung .window-body { padding: 0; }

.fw-hero {
  padding: 32px 36px;
  background: linear-gradient(135deg, #FF6B35 0%, #D62828 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.fw-hero::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 60%);
  border-radius: 50%;
}
.fw-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}
.fw-hero h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
  position: relative;
}
.fw-hero h2 em { font-style: italic; color: #FFD93C; }
.fw-hero p {
  font-size: 14px;
  line-height: 1.55;
  position: relative;
  max-width: 90%;
}
.fw-hero p strong { color: #FFD93C; }

.fw-downloads { padding: 24px 28px; }
.fw-downloads h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 14px;
}
.fw-download {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 8px;
  transition: all 0.15s;
}
.fw-download:hover {
  background: var(--panel-3);
  border-color: var(--kde-blue);
  transform: translateX(2px);
}
.fw-icon {
  font-size: 24px;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}
.fw-info { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
.fw-info strong { font-size: 14px; font-weight: 600; }
.fw-info small {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 2px;
}
.fw-arrow {
  font-size: 18px;
  color: var(--kde-blue);
  font-weight: 700;
}
.fw-windows .fw-icon  { color: #00ADEF; }
.fw-mac .fw-icon      { font-size: 28px; }
.fw-linux .fw-icon    { font-size: 22px; }
.fw-android .fw-icon  { color: #3DDC84; }
.fw-apple img         { width: 26px; height: 26px; display: block; margin: 0 auto; filter: invert(1); }
.ic-apple img         { width: 22px; height: 22px; display: block; margin: 0 auto; filter: invert(1); }

.fw-help {
  margin: 0 28px 28px;
  padding: 16px 18px;
  background: var(--panel-2);
  border-left: 3px solid var(--green-bright);
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.fw-help strong { display: block; color: var(--text); margin-bottom: 4px; }
.fw-help a { color: var(--kde-blue); text-decoration: none; font-weight: 600; }
.fw-help a:hover { text-decoration: underline; }

/* PANEL (BOTTOM) */
.panel {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 44px;
  background: rgba(27, 30, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 6px;
  z-index: 1000;
}
.kickoff-btn {
  height: 36px;
  padding: 0 14px;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.kickoff-btn:hover, .kickoff-btn.open { background: rgba(61, 174, 233, 0.25); }
.kickoff-btn img { width: 22px; height: 22px; }

.panel-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  margin: 0 4px;
}

.task-manager {
  flex: 1;
  display: flex;
  gap: 4px;
  overflow: hidden;
}
.task {
  height: 36px;
  padding: 0 14px;
  background: transparent;
  border: none;
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.15s;
  min-width: 130px;
  max-width: 180px;
  border-bottom: 2px solid transparent;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.task:hover { background: rgba(255,255,255,0.06); }
.task.active {
  background: rgba(61, 174, 233, 0.18);
  border-bottom-color: var(--kde-blue);
}
.task img { width: 16px; height: 16px; flex-shrink: 0; }
.task-text { overflow: hidden; text-overflow: ellipsis; }

.panel-legal {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px 0 8px;
  font-size: 10px;
  color: var(--text-muted);
}
.panel-legal button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 10px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.panel-legal button:hover {
  color: var(--kde-blue);
  background: rgba(61, 174, 233, 0.1);
}

.systray {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
  border-left: 1px solid rgba(255,255,255,0.08);
  color: var(--text-dim);
  font-size: 12px;
}
.systray-icon { font-size: 14px; cursor: pointer; }
.systray-icon:hover { color: var(--text); }
.systray-clock {
  text-align: right;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.systray-clock .time { font-weight: 600; color: var(--text); font-size: 13px; }
.systray-clock .date { font-size: 10px; color: var(--text-muted); }

/* KICKOFF MENU */
.kickoff {
  position: fixed;
  bottom: 50px;
  left: 8px;
  width: 480px;
  height: 540px;
  background: rgba(42, 46, 50, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: none;
  flex-direction: column;
  z-index: 1001;
  overflow: hidden;
}
.kickoff.open { display: flex; }
.kickoff-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}
.kickoff-header img { width: 48px; height: 48px; border-radius: 50%; background: var(--panel-2); padding: 8px; }
.kickoff-header .name { font-weight: 700; font-size: 15px; }
.kickoff-header .role { font-size: 11px; color: var(--text-muted); }

.kickoff-search {
  margin: 12px 16px;
  padding: 10px 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-dim);
  font-size: 12px;
}
.kickoff-search::before { content: '🔍 '; opacity: 0.5; }

.kickoff-apps {
  flex: 1;
  overflow-y: auto;
  padding: 8px 12px;
}
.kickoff-section h5 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 8px 8px 4px;
  font-weight: 600;
}
.kickoff-app {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}
.kickoff-app:hover { background: rgba(61, 174, 233, 0.2); }
a.kickoff-app { text-decoration: none; color: inherit; }
.kickoff-app .icon {
  width: 32px; height: 32px;
  background: var(--panel);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.kickoff-app .icon img { width: 22px; height: 22px; }
.kickoff-app .desc { font-size: 11px; color: var(--text-muted); }

.kickoff-footer {
  padding: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
}
.kickoff-footer button {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: inherit;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}
.kickoff-footer button:hover { background: var(--panel-3); color: var(--text); }

/* ============================================
   MOBILE VIEW (PLASMA MOBILE)
============================================ */
.mobile-view { display: none; }

@media (max-width: 900px) {
  html, body { overflow: auto; }
  .desktop-view { display: none; }
  .mobile-view {
    display: block;
    width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background:
      radial-gradient(ellipse at 20% 20%, rgba(61, 174, 233, 0.5), transparent 50%),
      radial-gradient(ellipse at 80% 80%, rgba(46, 204, 113, 0.4), transparent 55%),
      linear-gradient(135deg, #0F1419 0%, #1B2735 60%, #0D1B2A 100%);
  }
  .mobile-view::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/></svg>");
    pointer-events: none;
  }
  .mobile-clover {
    position: fixed;
    width: 110vw;
    height: auto;
    bottom: 8vh;
    right: -25vw;
    opacity: 0.18;
    transform: rotate(-12deg);
    pointer-events: none;
    object-fit: contain;
  }

  .mobile-status {
    position: relative;
    height: 32px;
    padding: 8px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 13px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    z-index: 5;
  }
  .mobile-status .right { display: flex; gap: 6px; align-items: center; font-size: 12px; }

  .mobile-launcher {
    position: relative;
    min-height: calc(100vh - 32px);
    padding: 16px 20px 120px;
    display: flex;
    flex-direction: column;
    z-index: 5;
  }

  .mobile-clock-widget {
    color: white;
    margin-bottom: 24px;
    padding: 8px 4px;
  }
  .mobile-clock-widget .time {
    font-size: 64px;
    font-weight: 200;
    line-height: 1;
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
  }
  .mobile-clock-widget .date {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    text-transform: capitalize;
  }

  .mobile-widget {
    background: rgba(42, 46, 50, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 24px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .mobile-widget img { width: 44px; height: 44px; flex-shrink: 0; }
  .mobile-widget .label {
    font-size: 11px;
    color: var(--green-bright);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }
  .mobile-widget .title { font-size: 15px; font-weight: 700; margin-top: 2px; }
  .mobile-widget .sub {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .mobile-widget .dot {
    width: 7px; height: 7px;
    background: var(--green-bright);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--green-bright);
    animation: pulse 2s infinite;
  }
  .mobile-widget .dot.closed {
    background: #E74C3C;
    box-shadow: 0 0 6px #E74C3C;
  }
  @keyframes pulse { 50% { opacity: 0.5; } }

  .mobile-app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 8px;
    flex: 1;
    align-content: start;
  }
  .mobile-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    color: inherit;
  }
  .mobile-app:active .mobile-app-icon { transform: scale(0.92); }
  .mobile-app-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--panel-2), var(--panel));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.1s;
  }
  .mobile-app-icon img { width: 36px; height: 36px; }
  .mobile-app-label {
    color: white;
    font-size: 11px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
    font-weight: 500;
  }

  .mobile-page-indicator {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
  }
  .mobile-page-indicator .dot {
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
  }
  .mobile-page-indicator .dot.active { background: white; width: 22px; border-radius: 3px; }

  .m-widget-link {
    color: var(--kde-blue);
    text-decoration: none;
    font-weight: 600;
  }
  .m-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
  }
  .m-legal-links button {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.65);
    font-family: inherit;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 4px 6px;
    -webkit-tap-highlight-color: transparent;
  }
  .m-legal-links button:active { color: var(--kde-blue); }

  .mobile-dock {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(42, 46, 50, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 14px 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
  }
  .mobile-dock .mobile-app-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 22px;
  }
  .mobile-dock .mobile-app-icon img { width: 32px; height: 32px; }

  .mobile-app-screen {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 200;
    display: none;
    flex-direction: column;
    animation: mobile-slide-up 0.3s ease-out;
  }
  .mobile-app-screen.open { display: flex; }
  @keyframes mobile-slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  .mobile-app-header {
    padding: 24px 16px 14px;
    background: var(--panel);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  .mobile-app-header .back {
    width: 36px; height: 36px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-app-header .back:hover { background: var(--panel-2); }
  .mobile-app-header .title { font-size: 15px; font-weight: 600; flex: 1; }
  .mobile-app-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px 40px;
  }

  /* Welcome */
  .m-welcome img { width: 80px; height: 80px; margin-bottom: 16px; }
  .m-welcome h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .m-welcome h2 span { color: var(--kde-blue); }
  .m-welcome > p { font-size: 15px; color: var(--text-dim); line-height: 1.6; margin-bottom: 16px; }
  .m-welcome > p strong { color: var(--text); }
  .m-welcome ul { list-style: none; }
  .m-welcome li {
    padding: 14px 16px;
    background: var(--panel-2);
    border-left: 3px solid var(--kde-blue);
    border-radius: 6px;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-dim);
  }
  .m-welcome li strong { display: block; color: var(--kde-blue); margin-bottom: 4px; font-size: 14px; }
  .m-cta-row { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
  .m-btn {
    padding: 14px;
    background: var(--kde-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
    text-align: center;
    display: block;
  }
  .m-btn.ghost { background: var(--panel-2); border: 1px solid var(--border); }

  /* Mobile Retail */
  .m-retail-banner {
    background: linear-gradient(135deg, var(--green), var(--green-bright));
    margin: -24px -20px 20px;
    padding: 30px 20px;
    color: white;
  }
  .m-retail-banner .tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    font-weight: 600;
  }
  .m-retail-banner h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .m-retail-banner h2 em { font-style: italic; }
  .m-retail-banner p { font-size: 14px; opacity: 0.95; }
  .m-retail-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.95);
    color: var(--green);
    border-radius: 100px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
  }

  .m-section-title {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 14px;
  }
  .m-solution-card {
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 12px;
    border-left: 3px solid var(--green-bright);
  }
  .m-solution-card .num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--green-bright);
    font-weight: 700;
    margin-bottom: 4px;
  }
  .m-solution-card h4 { font-size: 18px; margin-bottom: 8px; }
  .m-solution-card p { font-size: 13px; color: var(--text-dim); line-height: 1.5; margin-bottom: 12px; }
  .m-edition {
    background: var(--panel-2);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 12px;
  }
  .m-edition .badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--kde-blue);
    color: white;
    border-radius: 100px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .m-edition strong { display: block; font-size: 14px; margin-bottom: 8px; }
  .m-edition ul {
    list-style: none;
    font-size: 12px;
    color: var(--text-dim);
  }
  .m-edition ul li { padding: 3px 0; }
  .m-edition ul li::before { content: '✓ '; color: var(--green-bright); }

  .m-install {
    background: var(--panel-2);
    padding: 16px;
    border-radius: 10px;
    border-left: 3px solid var(--yellow);
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 12px 0;
  }
  .m-install strong { color: var(--text); }

  /* Mobile Netzwerk */
  .m-netzwerk-banner {
    background: linear-gradient(135deg, var(--kde-blue), var(--kde-blue-dark));
    margin: -24px -20px 20px;
    padding: 30px 20px;
    color: white;
  }
  .m-netzwerk-banner .tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    font-weight: 600;
  }
  .m-netzwerk-banner h2 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .m-netzwerk-banner p { font-size: 14px; opacity: 0.95; }
  .m-netzwerk-banner p strong { color: var(--yellow); }

  /* Mobile ERPNext */
  .m-erpnext-banner {
    background: linear-gradient(135deg, var(--kde-blue), var(--kde-blue-dark));
    margin: -24px -20px 20px;
    padding: 30px 20px;
    color: white;
  }
  .m-erpnext-banner .tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    font-weight: 600;
  }
  .m-erpnext-banner h2 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .m-erpnext-banner p { font-size: 14px; opacity: 0.9; }
  .m-erpnext-banner p em { font-style: italic; color: var(--yellow); }
  .m-pricing-note {
    margin-top: 20px;
    padding: 14px 16px;
    background: var(--panel-2);
    border-left: 3px solid var(--kde-blue);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.55;
  }
  .m-pricing-note strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
    font-size: 14px;
  }

  .mobile-app-content h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 600;
  }

  .m-feature-list { list-style: none; }
  .m-feature-list li {
    padding: 14px 16px;
    background: var(--panel-2);
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .m-feature-list li::before { content: '✓'; color: var(--green-bright); margin-right: 10px; font-weight: 700; }
  .m-feature-list li small { color: var(--text-muted); font-family: 'JetBrains Mono', monospace; font-size: 11px; margin-left: auto; }

  /* Mobile contact */
  .m-contact-info {
    background: var(--panel-2);
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.6;
  }
  .m-contact-info > div { padding: 8px 0; border-bottom: 1px solid var(--border); }
  .m-contact-info > div:last-child { border-bottom: none; }
  .m-contact-info strong { color: var(--kde-blue); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
  .m-contact-info a { color: var(--kde-blue); text-decoration: none; }

  .m-contact-form { display: flex; flex-direction: column; gap: 12px; }
  .m-contact-form label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: -8px;
  }
  .m-contact-form input, .m-contact-form textarea {
    padding: 14px 16px;
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
  }
  .m-contact-form textarea { resize: none; height: 100px; }

  .m-terminal {
    background: #000;
    border-radius: 10px;
    padding: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    line-height: 1.7;
    overflow-x: auto;
  }
  .m-terminal .prompt { color: var(--green-bright); }
  .m-terminal .key { color: #FF6E9F; }
  .m-terminal .val { color: var(--orange); }
  .m-terminal .out { color: #BBB; }

  /* Mobile Fernwartung */
  .m-fw-banner {
    background: linear-gradient(135deg, #FF6B35 0%, #D62828 100%);
    margin: -24px -20px 20px;
    padding: 30px 20px;
    color: white;
  }
  .m-fw-banner .tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.25);
    border-radius: 100px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    font-weight: 700;
  }
  .m-fw-banner h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
  }
  .m-fw-banner h2 em { font-style: italic; color: #FFD93C; }
  .m-fw-banner p { font-size: 14px; opacity: 0.95; }

  .m-fw-list { display: flex; flex-direction: column; gap: 8px; }
  .m-fw-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
  }
  .m-fw-item .ic { font-size: 24px; width: 32px; text-align: center; flex-shrink: 0; }
  .m-fw-item .tx { flex: 1; display: flex; flex-direction: column; line-height: 1.3; }
  .m-fw-item .tx strong { font-size: 14px; font-weight: 600; }
  .m-fw-item .tx small {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    margin-top: 2px;
  }
  .m-fw-item .ar { color: var(--kde-blue); font-size: 18px; font-weight: 700; }

  /* Mobile Legal */
  .legal-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .legal-content .legal-intro {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 22px;
  }
  .legal-content h3 {
    font-size: 15px;
    color: var(--kde-blue);
    margin-top: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border);
  }
  .legal-content h4 {
    font-size: 13px !important;
    color: var(--text) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-top: 16px;
    margin-bottom: 6px;
    font-weight: 700;
  }
  .legal-content h5 {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 12px;
    margin-bottom: 4px;
    font-weight: 600;
  }
  .legal-content .legal-caps {
    font-variant: small-caps;
    font-size: 12px !important;
    background: rgba(61, 174, 233, 0.08);
    padding: 10px 12px;
    border-left: 2px solid var(--kde-blue);
    border-radius: 3px;
  }
  .legal-content address {
    font-style: normal;
    font-size: 14px;
    color: var(--text-dim);
  }
  .legal-content address strong { color: var(--text); }
  .legal-content p {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 8px;
    line-height: 1.6;
  }
  .legal-content p em {
    color: var(--orange);
    font-style: normal;
    background: rgba(243, 156, 18, 0.1);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 12px;
  }
  .legal-content a { color: var(--kde-blue); text-decoration: none; }
  .legal-content .legal-list { list-style: none; }
  .legal-content .legal-list li { padding: 5px 0; font-size: 13px; color: var(--text-dim); }
  .legal-content .legal-list li::before { content: '✓ '; color: var(--green-bright); }
  .legal-content .legal-note {
    margin-top: 24px;
    padding: 12px 14px;
    background: rgba(243, 156, 18, 0.1);
    border-left: 3px solid var(--orange);
    border-radius: 4px;
    font-size: 12px !important;
    color: var(--orange) !important;
  }

  /* Mobile legal-footer in contact */
  .legal-footer {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
  }
  .legal-footer button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 8px;
  }
  .legal-footer span { color: var(--text-muted); }
}
