/* Unser Angebot im Überblick Section Styles */

/* Section Products */
.section-products {
  background: #0d2f51;
  color: #e8f1fb;
  padding: 100px 0;
  position: relative;
}

.section-products .section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-products .section-head h2 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-products .gradient-text {
  background: linear-gradient(135deg, #fdc300 0%, #ffdb4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-products .section-head p {
  color: #bed3ea;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Glass Card Style */
.feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glass-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.08);
}

.feature::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(253, 195, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(253, 195, 0, 0.3);
  box-shadow: 0 10px 40px rgba(253, 195, 0, 0.2);
}

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

/* Feature Icon */
.feature .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: grayscale(0);
}

/* Feature Content */
.feature h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.feature p {
  font-size: 1rem;
  line-height: 1.6;
  color: #bed3ea;
  margin: 0;
}

/* Wave Transitions */
.wave-transition {
  position: relative;
  height: 120px;
  overflow: hidden;
  background: transparent;
}

.wave-transition svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wave-transition.white-to-blue svg path {
  fill: #0d2f51;
}

.wave-transition.blue-to-white svg path {
  fill: #ffffff;
}

.wave-transition.blue-to-cyan svg path {
  fill: var(--brand-cyan, #00bcd4);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature {
  animation: fadeInUp 0.6s ease backwards;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
.feature:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .section-products {
    padding: 60px 0;
  }

  .section-products .section-head h2 {
    font-size: 2rem;
  }

  .section-products .section-head p {
    font-size: 1.1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }

  .feature {
    padding: 25px;
  }

  .feature .icon {
    font-size: 2.5rem;
  }

  .feature h3 {
    font-size: 1.125rem;
  }

  .feature p {
    font-size: 0.95rem;
  }

  .wave-transition {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .section-products .section-head h2 {
    font-size: 1.75rem;
  }

  .section-products .section-head p {
    font-size: 1rem;
  }

  .feature {
    padding: 20px;
  }

  .feature .icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .wave-transition {
    height: 60px;
  }
}