#reviews {
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #e0f3ec;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#reviews.visible {
  opacity: 1;
  transform: translateY(0);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-header h2 {
  font-size: 2.5rem;
  color: #427bf6;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.reviews-header p {
  color: #021242;
  margin-top: 8px;
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 36px;
}

/* Karten */
.review-card {
  background: linear-gradient(180deg, #168eff26, #e4f4ff6e);
  border: 1px solid #023ddf22;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  transition: transform .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}

/* Leichte Versätze */
.review-card:nth-child(2n) {
  transform: translateY(8px);
}
.review-card:nth-child(3n) {
  transform: translateY(-6px);
}
.review-card:nth-child(4n) {
  transform: translateY(4px);
}
.review-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: #2d9ffc;
}

/* Header & Avatar */
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #00000022;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.review-tag {
  background: #45aaf246;
  color: #4b7bec;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 2px;
}

.review-header h3 {
  margin: 0;
  font-size: 1rem;
  color: #2f2e2e;
}

/* Sterne */
.star-rating i {
  margin-right: 2px;
  font-size: 1rem;
  color: #4b7bec;
}
.star-rating i.fa-regular {
  color: #45aaf2;
}

/* Text */
.review-card p {
  font-style: italic;
  color: #262626;
  font-size: .95rem;
}
