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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2d3748;
  background: #ffffff;
  line-height: 1.6;
}

.gradient-header {
  background: linear-gradient(135deg, #ff6b9d 0%, #c471ed 100%);
  padding: 80px 0;
  color: white;
}

.gradient-cta {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.navbar {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #5b21b6;
}

.navbar-brand:hover {
  color: #7c3aed;
}

.nav-link {
  color: #4b5563;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #5b21b6;
}

.card {
  border-radius: 16px;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background: white;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-img-top {
  height: 240px;
  object-fit: cover;
  background: #f9fafb;
}

.btn-primary {
  background: #5b21b6;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(91, 33, 182, 0.3);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.shelf-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #fef3c7;
  color: #92400e;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 8px;
}

.lot-marker {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #84cc16;
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
}

.zone-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.zone-badge.alltag {
  background: #fef3c7;
  color: #92400e;
}

.zone-badge.training {
  background: #dbeafe;
  color: #1e40af;
}

.zone-badge.pause {
  background: #d1fae5;
  color: #065f46;
}

.zone-badge.routine {
  background: #e9d5ff;
  color: #6b21a8;
}

.kpi-widget {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.kpi-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #5b21b6;
  line-height: 1;
}

.kpi-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 8px;
}

.basket-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 2px solid #e5e7eb;
  transition: border-color 0.3s ease;
}

.basket-card:hover {
  border-color: #5b21b6;
}

.basket-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.zone-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.zone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #ff6b9d 0%, #c471ed 100%);
}

.step-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  height: 100%;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-tag {
  font-size: 1.75rem;
  font-weight: 700;
  color: #5b21b6;
  margin: 12px 0;
}

.product-description {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.log-entry {
  background: #f9fafb;
  border-left: 4px solid #5b21b6;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 0 8px 8px 0;
}

.log-time {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 4px;
}

.log-text {
  color: #4b5563;
  font-size: 0.95rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 16px;
}

.faq-question {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.faq-answer {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer {
  background: #1f2937;
  color: #9ca3af;
  padding: 48px 0 24px;
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.legal-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.legal-content h2 {
  color: #1f2937;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.legal-content h3 {
  color: #374151;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.legal-content p, .legal-content li {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  padding: 24px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.comparison-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.comparison-table table {
  width: 100%;
  margin: 0;
}

.comparison-table th {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 16px;
  font-weight: 600;
}

.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  color: #4b5563;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 24px;
}

.system-rule {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border-left: 4px solid #5b21b6;
}

.system-rule h4 {
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 8px;
}

.system-rule p {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .gradient-header {
    padding: 60px 0;
  }
  
  .kpi-number {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}
