/* Credit-Pakete Sektion (angelehnt an Pixyport-Design) */
.credits-section {
  background: #f7f7f7;
  padding: 80px 0;
}

.credits-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #e6952c;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.credits-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e6952c;
  display: inline-block;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .credits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .credits-grid {
    grid-template-columns: 1fr;
  }
}

.credit-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.credit-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #14213d;
}

.credit-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 24px;
  min-height: 63px;
}

.credit-price {
  display: inline-block;
  background: #14213d;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 999px;
}

.credits-note {
  text-align: center;
  margin-top: 32px;
  color: #6b7280;
  font-size: 14px;
}

.addon-section {
  padding: 64px 0;
}

.addon-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #14213d;
  color: #fff;
  border-radius: 16px;
  padding: 32px 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.addon-card-text h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
}

.addon-card-text p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
  max-width: 560px;
}

.addon-card-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.addon-price {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}