/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #06060a;
  --bg-card: #0d0d12;
  --bg-card-hover: #131318;
  --border: #16161d;
  --border-light: #222230;
  --text: #f0f0f5;
  --text-muted: #8888a0;
  --text-dim: #55556a;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-glow: rgba(99, 102, 241, 0.12);
  --accent-glow-strong: rgba(99, 102, 241, 0.25);
  --gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
  --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6);
  --gradient-text: linear-gradient(135deg, #818cf8, #c084fc);
  --gradient-warm: linear-gradient(135deg, #6366f1, #ec4899);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-lg: 0 25px 80px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.15);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: left, top;
}

/* ===== PARTICLE CANVAS ===== */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-logo {
  margin-bottom: 32px;
}

.preloader-K {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--gradient);
  border-radius: 18px;
  font-weight: 900;
  font-size: 2rem;
  color: white;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 var(--accent-glow-strong); }
  50% { transform: scale(1.08); box-shadow: 0 0 40px var(--accent-glow-strong); }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
  animation: preloaderFill 1.8s ease-out forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 12px 28px;
  box-shadow: 0 0 30px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 0 50px var(--accent-glow-strong), 0 0 100px rgba(99,102,241,0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 12px 28px;
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--accent);
  background: var(--accent-glow);
}

.btn-lg {
  font-size: 1rem;
  padding: 16px 36px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(6, 6, 10, 0.8);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

.logo-text {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}

.logo-text .logo-highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text .logo-white {
  color: var(--text);
}

.logo:hover .logo-text {
  filter: drop-shadow(0 0 10px var(--accent-glow));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.85rem;
  padding: 10px 24px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  margin-left: 8px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 10px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.active {
  background: var(--accent);
  color: white;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
}

/* Floating gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(99, 102, 241, 0.12);
  top: -150px;
  left: -100px;
  animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.08);
  top: 100px;
  right: -200px;
  animation: orbFloat2 25s ease-in-out infinite;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(236, 72, 153, 0.06);
  bottom: -100px;
  left: 30%;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 80px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, 60px) scale(1.05); }
  66% { transform: translate(40px, -50px) scale(0.9); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -70px) scale(1.15); }
  66% { transform: translate(-60px, 30px) scale(0.92); }
}

.hero-glow {
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.1), transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-line {
  display: block;
}

.typed-cursor {
  animation: cursorBlink 0.8s ease-in-out infinite;
  font-weight: 300;
  color: var(--accent-light);
}

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-plus {
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 3px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-scale { transform: scale(0.9); }

.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== SECTION COMMON ===== */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
  line-height: 1.15;
}

/* ===== ABOUT ===== */
.about {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-right p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
}

.feature-chip:hover {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.feature-chip svg {
  color: var(--accent-light);
  flex-shrink: 0;
}

/* ===== FOUNDER ===== */
.founder {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.founder-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}

.founder-image-col {
  display: flex;
  justify-content: center;
}

.founder-image-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: visible;
}

.founder-image-wrapper img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  border: 3px solid var(--border-light);
  transition: var(--transition);
}

.founder-image-wrapper:hover img {
  border-color: var(--accent);
  transform: scale(1.03);
}

.founder-image-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(99, 102, 241, 0.25);
  animation: founderRingSpin 30s linear infinite;
  z-index: 1;
}

@keyframes founderRingSpin {
  to { transform: rotate(360deg); }
}

.founder-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent-glow-strong), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}

.founder-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1.15;
}

.founder-role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  padding: 6px 16px;
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-full);
  background: var(--accent-glow);
}

.founder-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 540px;
}

.founder-links {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .founder-image-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  .founder-image-wrapper img {
    width: 220px;
    height: 220px;
  }

  .founder-image-glow {
    width: 260px;
    height: 260px;
  }

  .founder-text p {
    max-width: 100%;
  }

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

/* ===== SERVICES ===== */
.services {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.service-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.service-card.featured {
  border-color: rgba(99, 102, 241, 0.2);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.03), var(--bg-card));
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}

/* Service Image */
.service-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg-card) 100%);
  pointer-events: none;
}

.service-body {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

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

.service-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.service-card:hover .service-list li {
  color: var(--text);
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transition: var(--transition-fast);
}

.service-card:hover .service-list li::before {
  box-shadow: 0 0 8px var(--accent-glow-strong);
}

.service-footer { margin-top: auto; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link:hover {
  gap: 14px;
  color: white;
}

/* ===== HIGHLIGHT ===== */
.highlight {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.highlight-image { position: relative; }

.highlight-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
}

.highlight-image-wrapper img {
  width: 100%;
  display: block;
  border-radius: var(--radius-xl);
}

.highlight-image-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 160px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.2), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.highlight-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ade80;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.highlight-content {
  display: flex;
  flex-direction: column;
}

.highlight-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.highlight-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.highlight-content > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.highlight-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.highlight-feature:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateX(6px);
  box-shadow: -4px 0 20px var(--accent-glow);
}

.highlight-feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 10px;
  color: var(--accent-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.highlight-feature:hover .highlight-feature-icon {
  background: var(--accent-glow-strong);
  box-shadow: 0 0 20px var(--accent-glow);
}

.highlight-feature strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.highlight-feature span {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ===== PROCESS ===== */
.process {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 36px 20px;
}

.step-dot {
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 auto 28px;
  position: relative;
  box-shadow: 0 0 25px var(--accent-glow-strong);
  transition: var(--transition);
}

.process-step:hover .step-dot {
  transform: scale(1.3);
  box-shadow: 0 0 40px var(--accent-glow-strong);
}

.step-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 50%;
  transition: var(--transition);
}

.process-step:hover .step-dot::after {
  width: 40px;
  height: 40px;
  border-color: rgba(99, 102, 241, 0.4);
}

.step-line {
  position: absolute;
  top: 54px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--border));
  opacity: 0.3;
}

.process-step:last-child .step-line { display: none; }

.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* ===== CTA SECTION ===== */
.cta-section { padding: 40px 0; }

.cta-card {
  position: relative;
  text-align: center;
  padding: 100px 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.12), transparent 65%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  position: relative;
}

.cta-card p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 44px;
  position: relative;
}

.cta-card .btn { position: relative; }

/* ===== CONTACT ===== */
.contact {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 14px;
  color: var(--accent-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-detail:hover .contact-icon {
  background: var(--accent-glow-strong);
  transform: scale(1.05);
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span:not(.contact-label) {
  color: var(--text);
  font-weight: 500;
}

.contact-detail a:hover { color: var(--accent-light); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow), 0 0 30px var(--accent-glow);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888a0' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 72px;
  margin-bottom: 56px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: var(--transition);
}

.footer-socials a:hover {
  color: white;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--accent-glow-strong);
}

/* ===== TILT CARD ===== */
.tilt-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* ===== DATA-AOS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .step-line { display: none; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.82rem; }
  .nav-cta { font-size: 0.78rem; padding: 8px 16px; }
}

@media (max-width: 868px) {
  .cursor-glow { display: none; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .lang-toggle { margin-left: auto; margin-right: 12px; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 6, 10, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .scroll-indicator { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-line { display: none; }
  .highlight-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-card { padding: 56px 24px; }

  .service-image { height: 180px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-sub { font-size: 1rem; }
  .section-title { font-size: 1.8rem; }
  .service-body { padding: 24px; }
  .footer-links { grid-template-columns: 1fr; }
}

/* ===== COOKIE BANNER ===== */

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 140px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 4rem;
  font-family: Georgia, serif;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(99, 102, 241, 0.25);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: normal;
  border: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient);
  z-index: 10001;
  transition: none;
  pointer-events: none;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--accent-glow-strong);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 24px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  pointer-events: all;
}
.cookie-inner {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(15, 15, 25, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.4), 0 0 80px rgba(99, 102, 241, 0.06);
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}
.cookie-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-light);
}
.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.cookie-text a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}
.cookie-text a:hover {
  color: var(--text);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cookie-decline {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text);
}
.btn-cookie-accept {
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 16px;
  }
  .cookie-actions {
    justify-content: stretch;
  }
  .cookie-actions .btn-cookie-decline,
  .cookie-actions .btn-cookie-accept {
    flex: 1;
    text-align: center;
  }
}

/* Cross-Link Cards */
.sp-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sp-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

/* ===== Service Pages (shared) ===== */
.service-page { padding: 160px 0 0; }
.service-hero { text-align: center; margin-bottom: 80px; }
.service-hero .service-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; border-radius: 100px; background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2); color: var(--accent-light); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 24px; }
.service-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 20px; }
.service-hero .hero-desc { color: var(--text-muted); font-size: 1.15rem; line-height: 1.7; max-width: 640px; margin: 0 auto 40px; }
.service-hero .hero-img { border-radius: 20px; overflow: hidden; max-width: 900px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.06); }
.service-hero .hero-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.sp-section { padding: 80px 0; }
.sp-section:nth-child(even) { background: rgba(255,255,255,0.01); }
.sp-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.sp-section p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; max-width: 720px; }
.sp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.sp-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; transition: var(--transition); }
.sp-card:hover { border-color: rgba(99,102,241,0.3); transform: translateY(-4px); }
.sp-card .sp-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(99,102,241,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--accent-light); }
.sp-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.sp-card p { font-size: 0.92rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 0; }
.sp-process { counter-reset: process; }
.sp-process-item { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 40px; }
.sp-process-num { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; color: #fff; }
.sp-process-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.sp-process-content p { font-size: 0.92rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 0; }
.sp-cta { text-align: center; padding: 100px 0; }
.sp-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.sp-cta p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.sp-cta-form { max-width: 520px; margin: 0 auto; text-align: left; }
.sp-cta-form .form-group { margin-bottom: 18px; }
.sp-cta-form label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.sp-cta-form input, .sp-cta-form textarea, .sp-cta-form select { width: 100%; padding: 12px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-size: 0.95rem; transition: var(--transition); font-family: inherit; }
.sp-cta-form input:focus, .sp-cta-form textarea:focus, .sp-cta-form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.sp-cta-form input::placeholder, .sp-cta-form textarea::placeholder { color: var(--text-dim); }
.sp-cta-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
.sp-cta-form select option { background: #1a1a2e; color: var(--text); }
.sp-cta-form textarea { resize: vertical; min-height: 100px; }
.sp-cta-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sp-faq { max-width: 720px; margin: 40px auto 0; }
.sp-faq details { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 0; margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.sp-faq details[open] { border-color: rgba(99,102,241,0.3); }
.sp-faq summary { padding: 20px 24px; font-weight: 600; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.sp-faq summary::-webkit-details-marker { display: none; }
.sp-faq summary::after { content: '+'; font-size: 1.4rem; color: var(--accent-light); transition: var(--transition); }
.sp-faq details[open] summary::after { content: '\u2212'; }
.sp-faq .faq-answer { padding: 0 24px 20px; color: var(--text-dim); font-size: 0.92rem; line-height: 1.7; }

/* Chip grid (website-entwicklung form) */
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-grid label { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50px; font-size: 0.88rem; font-weight: 500; color: var(--text-muted); cursor: pointer; transition: all 0.25s ease; user-select: none; -webkit-tap-highlight-color: transparent; }
.chip-grid label:hover { border-color: rgba(99,102,241,0.4); color: var(--text); }
.chip-grid input[type="checkbox"] { display: none; }
.chip-grid input[type="checkbox"]:checked + .chip-icon { background: var(--accent); border-color: var(--accent); }
.chip-grid input[type="checkbox"]:checked + .chip-icon svg { opacity: 1; transform: scale(1); }
.chip-grid input[type="checkbox"]:checked ~ .chip-label { color: var(--text); }
.chip-grid label:has(input:checked) { border-color: var(--accent); background: rgba(99,102,241,0.08); box-shadow: 0 0 0 1px rgba(99,102,241,0.15); }
.chip-icon { width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; flex-shrink: 0; }
.chip-icon svg { width: 12px; height: 12px; opacity: 0; transform: scale(0.5); transition: all 0.2s ease; }
.chip-label { line-height: 1.3; }

/* Compare cards (ki-chatbots) */
.sp-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.sp-compare-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.sp-compare-card.highlight { border-color: rgba(99,102,241,0.4); background: rgba(99,102,241,0.05); }
.sp-compare-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 16px; }
.sp-compare-card ul { list-style: none; padding: 0; }
.sp-compare-card ul li { padding: 8px 0; color: var(--text-dim); font-size: 0.92rem; display: flex; align-items: center; gap: 10px; }
.sp-compare-card ul li svg { flex-shrink: 0; }

/* Stats (seo-sichtbarkeit) */
.sp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; text-align: center; }
.sp-stat h3 { font-size: 2.4rem; font-weight: 800; background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.sp-stat p { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 0; }

/* Use cases (ki-automatisierungen) */
.sp-use-cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 40px; }
.sp-use-case { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; display: flex; gap: 16px; align-items: flex-start; transition: var(--transition); }
.sp-use-case:hover { border-color: rgba(99,102,241,0.3); }
.sp-use-case .use-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: rgba(99,102,241,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent-light); font-size: 1.2rem; }
.sp-use-case h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.sp-use-case p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 0; }

/* GastroPilot-specific */
.gp-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.gp-logo-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.3rem; color: #fff; }
.gp-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.gp-logo-sub { font-size: 0.75rem; color: var(--text-dim); font-weight: 500; display: block; }
.gp-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 100px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #22c55e; font-size: 0.8rem; font-weight: 600; margin-bottom: 32px; }
.gp-badge .live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: livePulse 2s infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.gp-problems { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 32px; }
.gp-problem { display: flex; gap: 14px; align-items: flex-start; padding: 20px; border-radius: 12px; background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.12); }
.gp-problem svg { flex-shrink: 0; margin-top: 2px; }
.gp-problem strong { display: block; font-size: 0.95rem; margin-bottom: 4px; color: var(--text); }
.gp-problem span { font-size: 0.88rem; color: var(--text-dim); line-height: 1.6; }
.gp-workflow { display: flex; flex-direction: column; gap: 0; margin-top: 40px; max-width: 700px; }
.gp-workflow-step { display: flex; gap: 20px; align-items: flex-start; position: relative; padding-bottom: 40px; }
.gp-workflow-step:last-child { padding-bottom: 0; }
.gp-workflow-step::before { content: ''; position: absolute; left: 23px; top: 52px; bottom: 0; width: 2px; background: rgba(99,102,241,0.15); }
.gp-workflow-step:last-child::before { display: none; }
.gp-workflow-num { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: #fff; z-index: 1; }
.gp-workflow-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.gp-workflow-content p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 0; }
.gp-who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 32px; }
.gp-who-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-align: center; transition: var(--transition); }
.gp-who-card:hover { border-color: rgba(99,102,241,0.3); }
.gp-who-card .gp-who-emoji { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.gp-who-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.gp-who-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; margin-bottom: 0; }

/* Service page responsive */
@media (max-width: 768px) {
  .service-hero .hero-img img { height: 240px; }
  .sp-process-item { flex-direction: column; gap: 12px; }
  .sp-compare { grid-template-columns: 1fr; }
  .sp-stats { grid-template-columns: 1fr; gap: 16px; }
  .gp-workflow-step { gap: 14px; }
}
@media (max-width: 600px) {
  .sp-cta-form .form-row { grid-template-columns: 1fr; }
}
