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

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f7f7f8;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --border-card: #e5e5ea;
  --border-hover: rgba(220, 38, 38, 0.4);
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #999999;
  --accent-1: #dc2626;
  --accent-2: #991b1b;
  --gradient-main: linear-gradient(135deg, #dc2626, #991b1b);
  --gradient-subtle: linear-gradient(135deg, rgba(220, 38, 38, 0.04), rgba(153, 27, 27, 0.02));
  --gradient-mesh: radial-gradient(at 20% 80%, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
                   radial-gradient(at 80% 20%, rgba(153, 27, 27, 0.03) 0%, transparent 50%),
                   radial-gradient(at 50% 50%, rgba(239, 68, 68, 0.02) 0%, transparent 50%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --max-width: 1200px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

body {
  font-family: var(--font-stack);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

::selection {
  background: rgba(220, 38, 38, 0.15);
  color: var(--text-primary);
}

/* ===== Dot Grid Background ===== */
.dot-bg {
  position: relative;
}

.dot-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #d4d4d8 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ===== Utility ===== */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-stack);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 2px 12px rgba(220, 38, 38, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 4px 24px rgba(220, 38, 38, 0.35);
}

.btn-outline {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-card);
}

.btn-outline:hover {
  border-color: var(--border-hover);
  background: rgba(220, 38, 38, 0.03);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-1);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent-1);
  border-radius: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-label::before { display: none; }
.section-header .section-subtitle { margin: 0 auto; }

section {
  padding: 6rem 0;
  position: relative;
}

/* ===== SVG Icons ===== */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ===== Header / Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo-accent {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.logo-light {
  font-weight: 300;
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 450;
  transition: color var(--transition-fast);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
}

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

.nav-links a.active:not(.btn) { background: var(--bg-secondary); }

.nav-links .btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.active { opacity: 1; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 5rem;
  background: var(--bg-secondary);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 580px;
  flex-shrink: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.12);
  font-size: 0.8rem;
  color: var(--accent-1);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-tag span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-1);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}

.hero-content p {
  font-size: 1.12rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 460px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Hero Contact Hint */
.hero-contact-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.hero-contact-hint .icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--text-muted);
}

.hero-contact-hint a {
  color: var(--accent-1);
  transition: color var(--transition-fast);
}

.hero-contact-hint a:hover {
  color: var(--accent-2);
}

/* Hero Illustration */
.hero-visual {
  position: relative;
  width: 440px;
  height: 400px;
  flex-shrink: 0;
}

.hero-visual-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  transform: perspective(800px) rotateY(-8deg) rotateX(4deg);
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-md);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: hero-float 4s ease-in-out infinite;
}

.hero-card:nth-child(1) { animation-delay: 0s; }
.hero-card:nth-child(2) { animation-delay: 0.3s; }
.hero-card:nth-child(3) { animation-delay: 0.6s; }
.hero-card:nth-child(4) { animation-delay: 0.15s; }
.hero-card:nth-child(5) { animation-delay: 0.45s; grid-column: span 1; background: var(--gradient-main); border-color: transparent; }
.hero-card:nth-child(5) .icon { color: #fff; }
.hero-card:nth-child(5) .hero-card-label { color: rgba(255,255,255,0.8); }
.hero-card:nth-child(6) { animation-delay: 0.75s; }
.hero-card:nth-child(7) { animation-delay: 0.2s; }
.hero-card:nth-child(8) { animation-delay: 0.5s; }
.hero-card:nth-child(9) { animation-delay: 0.8s; }

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

.hero-card .icon {
  width: 22px;
  height: 22px;
  color: var(--accent-1);
}

.hero-card-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

/* ===== Cards ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-1);
}

.card-icon .icon {
  width: 22px;
  height: 22px;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

/* ===== USP ===== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.usp-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.usp-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-1);
}

.usp-icon .icon {
  width: 20px;
  height: 20px;
}

.usp-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.usp-item p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===== Tech Logos ===== */
.tech-logos {
  padding: 3rem 0;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
  background: var(--bg-secondary);
}

.tech-logos-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.tech-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.tech-logo:hover { color: var(--text-secondary); }

.tech-logo .icon {
  width: 20px;
  height: 20px;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-stars .icon {
  width: 16px;
  height: 16px;
  fill: #facc15;
  stroke: #facc15;
}

.testimonial p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== CTA Banner ===== */
.cta-banner {
  text-align: center;
  padding: 4.5rem 2rem;
  border-radius: var(--radius-xl);
  background: var(--gradient-main);
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.12), transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--accent-1);
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* ===== Service Detail ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}

.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }

.service-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(220, 38, 38, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-1);
}

.service-detail-icon .icon {
  width: 26px;
  height: 26px;
}

.service-detail h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.service-detail p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.service-detail ul li {
  color: var(--text-secondary);
  padding: 0.35rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.92rem;
}

.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gradient-main);
}

/* Service Visuals — CSS illustrations */
.service-visual {
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
}

.service-visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.sv-browser {
  width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.sv-browser-bar {
  display: flex;
  gap: 4px;
  padding: 8px 10px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-card);
}

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

.sv-browser-dot:nth-child(1) { background: #ef4444; }
.sv-browser-dot:nth-child(2) { background: #facc15; }
.sv-browser-dot:nth-child(3) { background: #22c55e; }

.sv-browser-content {
  padding: 12px;
}

.sv-line {
  height: 6px;
  border-radius: 3px;
  background: var(--border-card);
  margin-bottom: 6px;
}

.sv-line:first-child {
  width: 60%;
  background: var(--gradient-main);
  height: 8px;
}

.sv-line:nth-child(2) { width: 100%; }
.sv-line:nth-child(3) { width: 80%; }
.sv-line:nth-child(4) { width: 50%; }

.sv-dashboard {
  width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 16px;
}

.sv-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding-top: 10px;
}

.sv-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--border-card);
  transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.sv-bar:nth-child(1) { height: 40%; }
.sv-bar:nth-child(2) { height: 65%; }
.sv-bar:nth-child(3) { height: 45%; background: var(--gradient-main); }
.sv-bar:nth-child(4) { height: 80%; }
.sv-bar:nth-child(5) { height: 55%; background: var(--gradient-main); }
.sv-bar:nth-child(6) { height: 90%; }
.sv-bar:nth-child(7) { height: 70%; background: var(--gradient-main); }

.sv-shield {
  width: 80px;
  height: 80px;
  position: relative;
}

.sv-shield .icon {
  width: 80px;
  height: 80px;
  color: var(--accent-1);
  opacity: 0.15;
}

.sv-shield-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-1);
}

.sv-shield-check .icon {
  width: 32px;
  height: 32px;
  opacity: 1;
}

.sv-search {
  width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 12px;
}

.sv-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg-secondary);
  border-radius: 6px;
  margin-bottom: 10px;
}

.sv-search-bar .icon {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.sv-search-text {
  height: 4px;
  width: 60%;
  background: var(--border-card);
  border-radius: 2px;
}

.sv-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.sv-result-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-1);
  flex-shrink: 0;
}

.sv-result-lines {
  flex: 1;
}

.sv-result-line {
  height: 4px;
  border-radius: 2px;
  background: var(--border-card);
  margin-bottom: 4px;
}

.sv-result-line:first-child { width: 80%; }
.sv-result-line:last-child { width: 50%; }

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-card), var(--accent-1), var(--border-card), transparent);
  border-radius: 1px;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.process-number {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}

.process-step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ===== Über uns ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-intro h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.about-intro p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.trust-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

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

/* Counter animation */
.trust-number[data-target] {
  transition: all 0.3s;
}

.trust-item p {
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* ===== Kontakt ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.contact-detail:hover { background: var(--bg-secondary); }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(220, 38, 38, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-1);
}

.contact-detail-icon .icon {
  width: 20px;
  height: 20px;
}

.contact-detail strong {
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-detail span {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: var(--font-stack);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  background: var(--bg-primary);
}

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

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

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #16a34a;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #dc2626;
}

/* ===== Legal Pages ===== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.legal-content h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 2rem; letter-spacing: -0.03em; }
.legal-content h2 { font-size: 1.25rem; font-weight: 600; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-content h3 { font-size: 1.05rem; font-weight: 600; margin-top: 1.5rem; margin-bottom: 0.5rem; }

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.8;
}

.legal-content a { color: var(--accent-1); transition: color var(--transition-fast); }
.legal-content a:hover { color: var(--accent-2); }

.legal-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }

.legal-content ul li { padding-left: 0.5rem; position: relative; }
.legal-content ul li::before { content: '—'; position: absolute; left: -1.25rem; color: var(--text-muted); }

/* ===== Page Header ===== */
.page-header {
  padding-top: 9rem;
  padding-bottom: 3rem;
  text-align: center;
  position: relative;
  background: var(--bg-secondary);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}

.page-header h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.04em; position: relative; }
.page-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 520px; margin: 0 auto; position: relative; }
.page-header .section-label { position: relative; }
.page-header .section-label::before { display: none; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border-card);
  padding: 4rem 0 2rem;
  background: var(--bg-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about p { color: var(--text-secondary); font-size: 0.88rem; margin-top: 1rem; max-width: 300px; line-height: 1.7; }

.footer h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 1px; }

.footer-links a { display: block; color: var(--text-secondary); font-size: 0.88rem; padding: 0.3rem 0; transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--accent-1); }

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

.footer-legal a { color: var(--text-muted); margin-left: 1.5rem; transition: color var(--transition-fast); }
.footer-legal a:hover { color: var(--accent-1); }

/* ===== WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: 1.25rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-card);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; flex: 1; }
.cookie-text a { color: var(--accent-1); text-decoration: underline; text-underline-offset: 2px; }

.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-actions .btn { padding: 0.55rem 1.25rem; font-size: 0.82rem; }

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-main);
  z-index: 1001;
  transition: width 0.1s linear;
  transform-origin: left;
}

/* ===== Beratungs-Popup ===== */
.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.popup-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  z-index: 10000;
  width: min(520px, 92vw);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(220, 38, 38, 0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.popup.visible {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-card);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: 1.1rem;
  line-height: 1;
}

.popup-close:hover {
  background: rgba(220, 38, 38, 0.06);
  border-color: var(--border-hover);
  color: var(--accent-1);
}

.popup-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(220, 38, 38, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-1);
}

.popup-icon .icon {
  width: 24px;
  height: 24px;
}

.popup h2 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.popup p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.popup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.popup-actions .btn {
  justify-content: center;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
}

.popup-hint {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .popup {
    padding: 1.75rem 1.5rem;
  }

  .popup-actions {
    grid-template-columns: 1fr;
  }
}

/* ===== Splash / Intro Animation ===== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Logo wrapper */
.splash-logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 0;
  user-select: none;
  opacity: 0;
  animation: splash-fade-in 0.6s ease forwards;
}

/* Individual letter spans */
.splash-letter {
  display: inline-block;
  font-family: var(--font-stack);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* "Lurox" letters — gradient red */
.splash-letter--accent {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* "Media" letters — clean white */
.splash-letter--light {
  color: rgba(255, 255, 255, 0.85);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

/* Space between Lurox and Media */
.splash-space {
  display: inline-block;
  width: 0.25em;
}

@keyframes splash-fade-in {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* Thin red underline that draws from left to right */
.splash-line {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gradient-main);
  border-radius: 1px;
  animation: splash-line-draw 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes splash-line-draw {
  from { width: 0; }
  to   { width: 100%; }
}

/* Exit transition — simple fade out */
.splash--exit {
  animation: splash-exit 0.5s ease forwards;
}

@keyframes splash-exit {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* While splash is visible: lock body scroll */
body.splash-open {
  overflow: hidden;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ===== Prozess (Startseite) ===== */
.process-steps-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 1.5rem 2rem;
}

.process-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background-clip: padding-box;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
  flex-shrink: 0;
}

.process-step-home:hover .process-step-number {
  border-color: var(--accent-1);
  background: rgba(220, 38, 38, 0.06);
  color: var(--accent-1);
}

.process-step-connector {
  position: absolute;
  top: 31px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--border-card), rgba(220, 38, 38, 0.3));
}

.process-step-content {
  margin-top: 1.25rem;
}

.process-step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.process-step-content p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.blog-card-category {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  background: rgba(220, 38, 38, 0.07);
  color: var(--accent-1);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: fit-content;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0;
  flex-grow: 1;
}

.blog-card-excerpt {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  flex-grow: 2;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-card);
  flex-wrap: wrap;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card-date .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.blog-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ===== Preispakete ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.15), var(--shadow-md);
  transform: translateY(-6px);
}

.pricing-card--featured:hover {
  transform: translateY(-9px);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.2), var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.pricing-price {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-price span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-left: 0.15rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient-main);
}

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

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item.open {
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-stack);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-1);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  border-radius: 1px;
  transition: all var(--transition);
}

.faq-icon::before {
  width: 10px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 10px;
}

.faq-item.open .faq-icon {
  border-color: var(--accent-1);
  background: rgba(220, 38, 38, 0.06);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
  background: var(--accent-1);
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { width: 340px; height: 300px; }
  .hero-content h1 { font-size: 3rem; }
  .section-title { font-size: 2rem; }

  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail:nth-child(even) { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .trust-items { grid-template-columns: repeat(3, 1fr); }
  .process-steps-home { grid-template-columns: repeat(2, 1fr); }
  .process-step-connector { display: none; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .pricing-card--featured { transform: translateY(0); }
  .pricing-card--featured:hover { transform: translateY(-3px); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: var(--bg-primary); flex-direction: column;
    padding: 5rem 2rem 2rem; gap: 0.5rem;
    transition: right var(--transition);
    border-left: 1px solid var(--border-card);
    z-index: 1000;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; padding: 0.75rem 1rem; width: 100%; }
  .nav-links .btn { margin-left: 0; margin-top: 0.5rem; justify-content: center; }
  .nav-overlay.active { display: block; }
  .hamburger { display: flex; }

  .hero-content h1 { font-size: 2.4rem; }
  .hero-content p { font-size: 1rem; }
  .hero-visual { width: 280px; height: 250px; }

  section { padding: 4rem 0; }
  .section-title { font-size: 1.75rem; }
  .page-header { padding-top: 7rem; }
  .page-header h1 { font-size: 2.2rem; }
  .service-visual { height: 200px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .trust-items { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal a { margin-left: 0; margin-right: 1.5rem; }
  .cta-banner { padding: 3rem 1.5rem; }
  .cta-banner h2 { font-size: 1.6rem; }
  .cookie-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; }
  .whatsapp-tooltip { display: none; }
  .tech-logos-inner { gap: 1.5rem; }
  .process-steps-home { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { transform: translateY(0); }
  .pricing-card--featured:hover { transform: translateY(-3px); }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-visual { width: 240px; height: 210px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps-home { grid-template-columns: 1fr; }
}

/* ===== Projekt-Konfigurator ===== */
.configurator-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-card);
}

.configurator {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin: 0 auto;
}

/* Fortschrittsanzeige */
.cfg-progress {
  margin-bottom: 2.5rem;
  text-align: center;
}

.cfg-progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0.75rem;
}

.cfg-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.cfg-progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-card);
  background: var(--bg-secondary);
  transition: all var(--transition);
  position: relative;
}

.cfg-progress-dot::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: transparent;
  transition: background var(--transition);
}

.cfg-progress-step.active .cfg-progress-dot,
.cfg-progress-step.done .cfg-progress-dot {
  border-color: var(--accent-1);
  background: rgba(220, 38, 38, 0.06);
}

.cfg-progress-step.active .cfg-progress-dot::after,
.cfg-progress-step.done .cfg-progress-dot::after {
  background: var(--accent-1);
}

.cfg-progress-step span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.cfg-progress-step.active span,
.cfg-progress-step.done span {
  color: var(--accent-1);
}

.cfg-progress-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--border-card);
  border-radius: 1px;
  margin: 0 0.5rem;
  margin-bottom: 1.4rem;
  position: relative;
  overflow: hidden;
}

.cfg-progress-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gradient-main);
  border-radius: 1px;
  transition: width var(--transition-slow);
}

.cfg-progress-line.done::after {
  width: 100%;
}

.cfg-progress-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Schritte */
.cfg-step {
  display: none;
}

.cfg-step.active {
  display: block;
  animation: cfg-step-in var(--transition) both;
}

.cfg-step.active.back {
  animation: cfg-step-in-back var(--transition) both;
}

@keyframes cfg-step-in {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes cfg-step-in-back {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cfg-step-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* Auswahlkarten */
.cfg-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.cfg-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-card);
  background: var(--bg-secondary);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
  font-family: var(--font-stack);
  width: 100%;
}

.cfg-card:hover {
  border-color: var(--border-hover);
  background: rgba(220, 38, 38, 0.02);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cfg-card.selected {
  border-color: var(--accent-1);
  background: rgba(220, 38, 38, 0.04);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.15), var(--shadow-sm);
}

.cfg-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(220, 38, 38, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-1);
  flex-shrink: 0;
  transition: background var(--transition);
}

.cfg-card.selected .cfg-card-icon {
  background: rgba(220, 38, 38, 0.14);
}

.cfg-card-icon .icon {
  width: 18px;
  height: 18px;
}

.cfg-card strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.cfg-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Navigation */
.cfg-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-card);
}

/* Zusammenfassung */
.cfg-summary {
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  background: rgba(220, 38, 38, 0.03);
  margin-bottom: 1.75rem;
  animation: cfg-step-in var(--transition) both;
}

.cfg-summary-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 0.75rem;
}

.cfg-summary-title .icon {
  width: 16px;
  height: 16px;
  stroke: var(--accent-1);
  flex-shrink: 0;
}

.cfg-summary-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cfg-summary-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.15);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-2);
}

.cfg-summary-tag-label {
  color: var(--text-muted);
  font-weight: 400;
  margin-right: 0.15rem;
}

@media (max-width: 768px) {
  .configurator { padding: 1.75rem 1.25rem; }
  .cfg-cards { grid-template-columns: 1fr; }
  .cfg-progress-line { max-width: 48px; }
}

@media (max-width: 480px) {
  .configurator { padding: 1.5rem 1rem; }
  .cfg-progress-line { max-width: 28px; }
  .cfg-nav { flex-direction: column-reverse; }
  .cfg-nav .btn { width: 100%; justify-content: center; }
}
