  /* Credit-Pakete Sektion (angelehnt an Pixyport-Design) */
  .credits-section {
    padding: 96px 0 80px;
  }

  .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) {
    .credit-card {
      background: #fff;
      border: 1px solid #ececec;
      border-radius: 16px;
      padding: 32px 24px;
      text-align: center;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    }
  }

  h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #14213d;
  }

  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;
  }

  .credit-price {
    display: inline-block;
    background: #14213d;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 24px;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .credit-price:hover {
    background: #e6952c;
    color: #fff;
  }