/* ───────────────────────────────────────────────
   Simplix IT – Design System 2.0
   High-impact, animation-first landing page
─────────────────────────────────────────────── */

:root {
  --bg:         #050810;
  --bg2:        #080c14;
  --cyan:       #00f2ff;
  --cyan-dim:   rgba(0,242,255,0.15);
  --cyan-glow:  rgba(0,242,255,0.4);
  --purple:     #7c3aed;
  --purple-dim: rgba(124,58,237,0.2);
  --surface:    rgba(255,255,255,0.04);
  --surface-2:  rgba(255,255,255,0.07);
  --border:     rgba(255,255,255,0.08);
  --border-2:   rgba(255,255,255,0.14);
  --text:       #f0f4ff;
  --muted:      #6b7280;
  --ease:       cubic-bezier(0.16,1,0.3,1);
}

/* ── Light Mode ── */
html.light {
  --bg:         #f0f4ff;
  --bg2:        #e8eef8;
  --cyan:       #1d6fe8;
  --cyan-dim:   rgba(29,111,232,0.1);
  --cyan-glow:  rgba(29,111,232,0.3);
  --purple:     #7c3aed;
  --purple-dim: rgba(124,58,237,0.1);
  --surface:    rgba(255,255,255,0.7);
  --surface-2:  rgba(255,255,255,0.9);
  --border:     rgba(0,0,0,0.08);
  --border-2:   rgba(0,0,0,0.14);
  --text:       #0f172a;
  --muted:      #64748b;
}

html.light body { background: var(--bg); color: var(--text); }

html.light #bgCanvas { opacity: 0.15; }
html.light .noise { opacity: 0.1; }
html.light .hero-bg-grid {
  background-image:
    linear-gradient(rgba(29,111,232,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,111,232,0.07) 1px, transparent 1px);
}

html.light #navbar.scrolled {
  background: rgba(240,244,255,0.9);
  border-bottom: 1px solid var(--border);
}
html.light .mobile-menu {
  background: rgba(240,244,255,0.97);
}

html.light .glass-card {
  background: rgba(255,255,255,0.8);
  border-color: var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

html.light .service-card {
  background: rgba(255,255,255,0.75);
  border-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

html.light .step {
  background: rgba(255,255,255,0.75);
  border-color: var(--border);
}

html.light .hero-stats {
  background: rgba(255,255,255,0.7);
  border-color: var(--border);
}

html.light .marquee-wrap {
  background: rgba(255,255,255,0.5);
}

html.light .form-field input,
html.light .form-field textarea {
  background: rgba(255,255,255,0.9);
  border-color: var(--border);
  color: var(--text);
}

html.light .compare-row.header { background: rgba(0,0,0,0.03); }
html.light .compare-row:hover  { background: rgba(0,0,0,0.02); }

html.light footer { border-color: var(--border); }

/* Light mode card shimmer */
html.light .service-card::after,
html.light .step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(29,111,232,0.06) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: cardShimmer 3s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes cardShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Stagger shimmer delays */
html.light .service-card:nth-child(2)::after { animation-delay: -0.75s; }
html.light .service-card:nth-child(3)::after { animation-delay: -1.5s; }
html.light .service-card:nth-child(4)::after { animation-delay: -2.25s; }
html.light .step:nth-child(2)::after         { animation-delay: -1s; }
html.light .step:nth-child(3)::after         { animation-delay: -2s; }

/* Light mode section-tag */
html.light .section-tag {
  background: rgba(29,111,232,0.1);
  border-color: rgba(29,111,232,0.25);
}

/* Stat number glow in light */
html.light .stat-num,
html.light .stat-unit { color: var(--cyan); }

/* Pulse dot stays green */
html.light .pulse-dot { background: #16a34a; }

/* Hero badge */
html.light .hero-badge {
  background: rgba(255,255,255,0.8);
  border-color: rgba(29,111,232,0.2);
  color: #475569;
}

/* scroll line */
html.light .scroll-line {
  background: linear-gradient(to bottom, var(--cyan), transparent);
}

/* marquee text */
html.light .marquee-track span { color: #94a3b8; }
html.light .marquee-track .dot { color: var(--cyan); }

/* canvas opacity boost in light */
html.light #bgCanvas { opacity: 0.9; }

html.light .app-visual.cyan-grad {
  background: linear-gradient(135deg, rgba(29,111,232,0.1), rgba(29,111,232,0.03));
}
html.light .app-visual.purple-grad {
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(124,58,237,0.03));
}

html.light .cursor-ring { border-color: rgba(29,111,232,0.5); }
html.light .cursor-dot  { background: var(--cyan); }

html.light .logo-main,
html.light .logo-sub,
html.light .logo-divider { color: var(--cyan); }

/* sun/moon icon visibility */
html.light .icon-moon { display: none; }
html:not(.light) .icon-sun { display: none; }

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a { text-decoration: none; color: inherit; }

/* ── Canvas BG ── */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ── Noise ── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
}

/* ── Custom Cursor ── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  transition: width .2s, height .2s, background .2s;
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,242,255,0.5);
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s;
}

.cursor-dot.hovered { width: 8px; height: 8px; background: #fff; }
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--cyan); }

/* ── Container ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Reveal animations ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-up.active { opacity: 1; transform: translateY(0); }

/* ── Gradient text ── */
.gradient-shift {
  background: linear-gradient(135deg, var(--cyan) 0%, #a78bfa 50%, var(--cyan) 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 4s linear infinite;
}

@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.outline-text {
  -webkit-text-stroke: 2px rgba(255,255,255,0.25);
  color: transparent;
}

.text-glow {
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
}

/* ── Glass Card ── */
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--sx,50%) var(--sy,50%), rgba(0,242,255,0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

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

/* ── Section Helpers ── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,242,255,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
  background: var(--cyan);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: none;
  cursor: none;
  transition: box-shadow 0.4s var(--ease), background 0.3s;
  box-shadow: 0 0 24px var(--cyan-glow), inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover { box-shadow: 0 0 50px var(--cyan-glow); }
.btn-primary:hover::after { opacity: 1; }

.btn-primary.full { width: 100%; justify-content: center; padding: 1.2rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 1rem 2rem;
  border: 1px solid var(--border-2);
  color: var(--text);
  font-weight: 600;
  border-radius: 999px;
  transition: border-color 0.3s, background 0.3s;
}

.btn-outline:hover {
  border-color: var(--cyan);
  background: var(--cyan-dim);
}

/* ─────────────────── NAVBAR ─────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s, backdrop-filter 0.5s, border 0.5s, padding 0.5s;
  padding: 0;
}

#navbar.scrolled {
  background: rgba(5,8,16,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #fff;
}
.logo span { color: var(--cyan); }

/* CSS Logo */
.logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  line-height: 1;
}

.logo-main {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #2e7cf6;
  text-transform: uppercase;
}

.logo-divider {
  color: #2e7cf6;
  font-weight: 300;
  margin: 0 4px;
  opacity: 0.7;
}

.logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2e7cf6;
  opacity: 0.8;
  align-self: center;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--cyan);
  transition: width 0.4s var(--ease);
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.4rem;
  background: var(--cyan);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 999px;
  transition: box-shadow 0.3s;
  box-shadow: 0 0 20px var(--cyan-glow);
}

.nav-cta:hover { box-shadow: 0 0 40px var(--cyan-glow); }

/* Theme Toggle */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--surface);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: var(--cyan-dim);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: rgba(5,8,16,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}

.mobile-menu.open { display: flex; }

.mob-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s;
}

.mob-link:hover { color: #fff; }

.mob-cta {
  padding: 0.9rem 2.5rem;
  background: var(--cyan);
  color: #000;
  font-weight: 800;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ─────────────────── HERO ─────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10rem 2rem 4rem;
  position: relative;
  z-index: 2;
  text-align: center;
  overflow: hidden;
}

/* Grid lines */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,242,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,242,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.hero-line { display: block; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 3rem;
}

#typewriter::after {
  content: '|';
  animation: blink 1s infinite;
  color: var(--cyan);
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 5rem;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  padding: 1.5rem 3rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-unit {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.stat-num, .stat-unit { display: inline; }

.stat > span:nth-child(1), .stat > span:nth-child(2) {
  /* make num+unit inline */
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat .num-row {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-2);
  flex-shrink: 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
}

/* ── Stat display fix ── */
.hero-stats .stat {
  flex-direction: column;
  align-items: center;
}

/* ─────────────────── MARQUEE ─────────────────── */
.marquee-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  background: var(--surface);
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-track .dot { color: var(--cyan); }

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

/* ─────────────────── LEISTUNGEN ─────────────────── */
.section-leistungen {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
}

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

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--sx,50%) var(--sy,50%), rgba(0,242,255,0.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover { border-color: var(--border-2); transform: translateY(-6px); }
.service-card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,242,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg { width: 24px; height: 24px; stroke: var(--cyan); }

.card-num {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  user-select: none;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

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

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,242,255,0.2);
  padding: 4px 12px;
  border-radius: 999px;
}

@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
}

/* ─────────────────── WHY ─────────────────── */
.section-why {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
  background: linear-gradient(to bottom, transparent, rgba(0,242,255,0.02) 50%, transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-left h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.why-left > p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,242,255,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--cyan);
  font-weight: 800;
  margin-top: 2px;
}

.why-point strong {
  display: block;
  font-weight: 700;
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.why-point span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Compare table */
.compare-card {
  padding: 0;
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  transition: background 0.2s;
}

.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: var(--surface-2); }

.compare-row.header {
  background: var(--surface-2);
  padding: 0.75rem 1.5rem;
}

.col-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.col-label.me { color: var(--cyan); }
.col-label.other { color: var(--muted); }

.check, .cross {
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
}

.check { color: var(--cyan); }
.cross { color: #ef4444; }

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

/* ─────────────────── PROZESS ─────────────────── */
.section-prozess {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
}

.steps {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.step:hover { border-color: var(--border-2); transform: translateY(-4px); }

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.05em;
  opacity: 0.7;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.step-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--border-2);
  z-index: 1;
}

.step-arrow.last { color: var(--cyan); }

@media (max-width: 768px) {
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
}

/* ─────────────────── KONTAKT ─────────────────── */
.section-kontakt {
  position: relative;
  z-index: 2;
  padding: 8rem 0 10rem;
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  padding: 4rem;
  align-items: start;
}

.kontakt-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.kontakt-left > p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.kontakt-info { margin-top: 1.5rem; }

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.3s;
}

.info-link:hover { opacity: 0.75; }

/* Form */
.kontakt-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.5rem; }

.form-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1.25rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); }

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  background: var(--surface-2);
}

@media (max-width: 900px) {
  .kontakt-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─────────────────── FOOTER ─────────────────── */
footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-sub {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

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

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-links a:hover { color: #fff; }

/* ─────────────────── PROJEKTE / APPS ─────────────────── */
.section-projekte {
  position: relative;
  z-index: 2;
  padding: 8rem 0;
}

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

.app-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.app-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.app-visual.cyan-grad {
  background: linear-gradient(135deg, rgba(0,242,255,0.08), rgba(0,242,255,0.02));
  border-bottom: 1px solid var(--border);
}

.app-visual.purple-grad {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(124,58,237,0.02));
  border-bottom: 1px solid var(--border);
}

.app-icon {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: iconFloat 4s ease-in-out infinite;
}

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

.app-body { padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.app-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.app-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.app-badge.cyan {
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0,242,255,0.25);
}

.app-badge.purple {
  color: #a78bfa;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
}

.app-body > p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex: 1;
}

.btn-app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,242,255,0.25);
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 12px;
  transition: background 0.3s, box-shadow 0.3s;
  width: fit-content;
  margin-top: 0.5rem;
}

.btn-app:hover {
  background: rgba(0,242,255,0.2);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.btn-app.purple {
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.25);
  color: #a78bfa;
}

.btn-app.purple:hover {
  background: rgba(124,58,237,0.22);
  box-shadow: 0 0 20px rgba(124,58,237,0.3);
}

@media (max-width: 640px) {
  .apps-grid { grid-template-columns: 1fr; }
}

/* Remove unused outline-text – replaced with gradient-shift */
.outline-text { display: none; }

/* ─────────────────── RESPONSIVE ─────────────────── */
@media (max-width: 640px) {
  .hero-stats {
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
  }
  .stat-divider { width: 80px; height: 1px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-inner { padding: 1.25rem 1.25rem; }
  .container { padding: 0 1.25rem; }
}
