.page--zahlung {
  --pay-green: #2e4f20;
  --pay-ink: #1e2a20;
  --pay-muted: #4f6153;
  --pay-line: #dbe6da;
  --pay-soft: #f3f7f1;
  padding: 50px 0 60px;
}

.payment-page__container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.payment-page__header {
  margin-bottom: 26px;
  text-align: center;
}

.payment-page__title {
  margin: 0 0 10px;
  color: var(--pay-green);
  font-size: clamp(1.85rem, 1.4rem + 1.2vw, 2.35rem);
  line-height: 1.2;
}

.payment-page__intro {
  margin: 0 auto;
  max-width: 66ch;
  color: var(--pay-muted);
  line-height: 1.75;
}

.payment-grid {
  display: grid;
  gap: 8px;
  background: linear-gradient(180deg, #fff, #fbfdf9);
  border-radius: 18px;
  padding: 8px 0;
}

.payment-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 20px 6px;
}

.payment-card + .payment-card {
  border-top: 1px solid var(--pay-line);
}

.payment-card p {
  margin: 0 0 12px;
  line-height: 1.75;
  color: var(--pay-ink);
}

.payment-card p:last-child {
  margin-bottom: 0;
}

.payment-card__logo-wrap {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.payment-card__logo {
  width: min(100%, 260px);
  max-height: 52px;
  object-fit: contain;
}

.payment-card__title {
  margin: 0 0 10px;
  text-align: left;
  color: var(--pay-green);
  font-size: clamp(1.18rem, 1.03rem + 0.42vw, 1.38rem);
  line-height: 1.25;
}

.payment-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.payment-card li {
  margin-bottom: 9px;
  line-height: 1.72;
  color: var(--pay-ink);
}

.payment-card li:last-child {
  margin-bottom: 0;
}

.payment-card strong {
  color: var(--pay-green);
}

.payment-card--fade {
  opacity: 0;
  transform: translateY(12px);
  animation: payment-fade-up 0.45s ease forwards;
}

.payment-card--fade:nth-child(2) { animation-delay: 60ms; }
.payment-card--fade:nth-child(3) { animation-delay: 110ms; }
.payment-card--fade:nth-child(4) { animation-delay: 160ms; }
.payment-card--fade:nth-child(5) { animation-delay: 210ms; }

@keyframes payment-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .page--zahlung {
    padding: 50px 0 50px;
  }

  .payment-page__container {
    width: min(1200px, calc(100% - 24px));
  }
}

@media (max-width: 640px) {
  .payment-page__title {
    font-size: clamp(1.55rem, 1.3rem + 1vw, 1.95rem);
  }

  .payment-card {
    padding: 16px 2px;
  }

  .payment-card__logo {
    max-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .payment-card--fade {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
