/* ===== HERO SECTION STYLES ===== */
/* Clean Design based on Leistungen Page */

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Header */
.hero-header {
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #4a5568;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Three-Column Highlights */
.hero-highlights {
  margin: 4rem 0;
  padding: 0 1rem;
}

.highlight-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.highlight-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.highlight-text {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.highlight-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
}

.highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: #10b981;
  font-weight: 600;
  font-size: 0.875rem;
}

.highlight-item .btn {
  margin-top: auto;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.highlight-item .btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: #ffffff;
  border: none;
}

.highlight-item .btn-primary:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  transform: translateY(-2px);
}

/* Call-to-Action Section */
.hero-cta {
  text-align: center;
  padding: 3rem 1rem;
  background: rgba(248, 250, 252, 0.5);
  border-radius: 16px;
  margin: 3rem 0;
}

.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #4a5568;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: #ffffff;
  border: none;
}

.cta-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  transform: translateY(-2px);
}

.cta-buttons .btn-outline-primary {
  background: #ffffff;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.cta-buttons .btn-outline-primary:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Trust Signals */
.trust-signals {
  padding: 2rem 1rem 0 1rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.3s ease;
}

.trust-item:hover {
  background: #ffffff;
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}

.trust-item i {
  font-size: 1.125rem;
}

.trust-item .fw-bold {
  font-weight: 700;
  color: #1a202c;
}

.trust-item small {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet and below */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-header {
    margin-bottom: 2rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
  }

  .hero-highlights {
    margin: 2rem 0;
  }

  .highlight-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .highlight-title {
    font-size: 1.25rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    min-width: 280px;
    max-width: 100%;
  }

  .trust-signals .row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .trust-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-header,
  .hero-highlights,
  .hero-cta,
  .trust-signals {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .highlight-item {
    padding: 1.25rem;
  }

  .hero-cta {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }

  .cta-buttons .btn {
    min-width: 100%;
    padding: 0.875rem 1.5rem;
  }

  .trust-item {
    padding: 0.75rem;
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }

  .trust-item i {
    margin-bottom: 0.25rem;
    margin-right: 0 !important;
  }
}

/* Print styles */
@media print {
  .hero-section {
    padding: 1rem 0;
    background: #ffffff;
    page-break-inside: avoid;
  }

  .highlight-item {
    box-shadow: none;
    border: 1px solid #e2e8f0;
    page-break-inside: avoid;
  }

  .hero-cta {
    background: #ffffff;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .highlight-item,
  .trust-item,
  .cta-buttons .btn {
    transition: none;
  }

  .highlight-item:hover,
  .trust-item:hover,
  .cta-buttons .btn:hover {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .hero-section {
    background: #ffffff;
  }

  .highlight-item {
    border-color: #000000;
  }

  .hero-title,
  .highlight-title,
  .cta-title {
    color: #000000;
  }

  .hero-subtitle,
  .highlight-text,
  .cta-text {
    color: #333333;
  }
}